Compare commits

...

1 Commits

Author SHA1 Message Date
Arafatkatze 0005aad3dd fix sdk examples docs and vscode clean build 2026-05-15 18:23:59 -07:00
2 changed files with 2 additions and 10 deletions
-9
View File
@@ -2,15 +2,6 @@
Learn how to build with the Cline SDK through working examples, ordered from simple to complex.
## SDK Skill
If you use a coding agent (Claude Code, Codex, Cline, etc.), install the [Cline SDK skill](https://github.com/cline/sdk-skill) to give your agent context on the SDK's APIs and best practices to help you build with the Cline SDK.
```bash
npx skills add cline/sdk-skill
```
Prompt it to scaffold agents, create custom tools, wire up plugins, configure providers, and more.
## Getting started
All examples live in this directory. Each is a standalone project with its own `package.json` and README. To run any example:
+2 -1
View File
@@ -43,9 +43,10 @@
},
"scripts": {
"build:webview": "cd ./src/webview && bun run build",
"build": "bun run build:webview && bun build ./src/extension.ts ./src/hub-daemon.ts --outdir ./dist --target=node --format=cjs --external=vscode --minify",
"build": "rm -rf dist && bun run build:webview && bun build ./src/extension.ts ./src/hub-daemon.ts --outdir ./dist --target=node --format=cjs --external=vscode --minify",
"watch": "bun build ./src/extension.ts ./src/hub-daemon.ts --outdir ./dist --target=node --format=cjs --external=vscode --minify --watch",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"dev": "bun run watch"
},
"dependencies": {