Files
wehub-resource-sync d68f003000
CI / Change detection (push) Has been cancelled
CI / Version drift (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Workflow RLM cache (push) Has been cancelled
CI / Test (macos-latest) (push) Has been cancelled
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / npm wrapper smoke (push) Has been cancelled
CI / Mobile runtime smoke (push) Has been cancelled
CI / Workflow lint (push) Has been cancelled
CI / Documentation (push) Has been cancelled
Web Frontend / Lint & Type Check (push) Failing after 1s
Auto-close harvested PRs / close (push) Failing after 1s
cargo-deny / cargo-deny (bans licenses sources) (push) Failing after 1s
Security audit / cargo-audit (push) Failing after 1s
Sync to CNB / sync (push) Failing after 1s
cargo-deny / cargo-deny (advisories) (push) Failing after 3s
Web Frontend / Deploy to Cloudflare (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:08:23 +08:00

37 lines
1.2 KiB
Markdown

# CodeWhale for VS Code
Official CodeWhale extension scaffold for local development.
This first slice is intentionally small:
- open CodeWhale in an integrated terminal
- start `codewhale serve --http` in a visible terminal
- check a local runtime through `/health` and `/v1/runtime/info`
- show connection state in the status bar
- show a read-only Agent View with recent runtime thread summaries from
`/v1/threads/summary`
- show recent read-only restore points from `/v1/snapshots`
- refresh the read-only Agent View automatically so branch/workspace metadata
catches up while agents are working
It does not expose the full chat webview, VS Code Agent View chat/editor
integration, inline edit application, marketplace publish workflow, or
retry/undo/snapshot GUI endpoints yet.
## Local Use
```bash
npm install
npm run compile
npm run package
code --install-extension codewhale-vscode-0.8.53.vsix
```
Configure `codewhale.commandPath`, `codewhale.runtimeHost`,
`codewhale.runtimePort`, `codewhale.runtimeToken`, and
`codewhale.agentViewRefreshIntervalSeconds` from VS Code settings.
Set the refresh interval to `0` to disable automatic read-only refreshes.
Keep the runtime on `127.0.0.1` unless you deliberately front it with trusted
local networking controls.