Files
DeepSeek-TUI/extensions/vscode/package.json
CodeWhale Bot 9fcc75d70b chore(release): prepare v0.9.7
Release prep for v0.9.7:
- Bump the workspace, per-crate pins, npm wrapper, and lockfile to 0.9.7.
- Finalize the [0.9.7] CHANGELOG entry: Grok 4.6 as the ordinary catalog
  default, OrcaRouter as a named provider, the session snapshot/recovery
  split, canonical message copy, and the RUSTSEC-2026-0253 lru/ratatui-core
  fix. All factual claims in the entry were checked against the code.
- Document the known parallel-load flake
  exec_persistent_service::failed_exec_kills_pending_service_and_exits_nonzero
  ("service pid file never appeared"); it passes in isolation and is
  unrelated to any v0.9.7 change.
- Regenerate the TUI changelog slice and web/lib/facts.generated.ts.

Gates run on this tree: cargo fmt/check/clippy clean; the full workspace
suite completed with --no-fail-fast and exactly one failure (the documented
flake, passing in isolation); publish-crates.sh dry-run and the npm wrapper
smoke passed; the release binary reports 0.9.7 and `codewhale model resolve
grok` resolves grok-4.6 on provider xai.

Release preparation assisted by CodeWhale, following docs/RELEASE_CHECKLIST.md.
2026-08-12 21:16:03 -07:00

127 lines
3.3 KiB
JSON

{
"name": "codewhale-vscode",
"displayName": "CodeWhale",
"description": "Official CodeWhale VS Code integration scaffold for local runtime attach and terminal launch.",
"version": "0.9.7",
"publisher": "codewhale",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Hmbown/CodeWhale.git",
"directory": "extensions/vscode"
},
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:codewhale.openTerminal",
"onCommand:codewhale.startRuntime",
"onCommand:codewhale.checkRuntime",
"onCommand:codewhale.refreshAgentView",
"onCommand:codewhale.refreshSnapshots",
"onCommand:codewhale.openRuntimeDocs",
"onView:codewhale.runtimeStatus"
],
"main": "./out/extension.js",
"files": [
"out",
"media",
"README.md",
"LICENSE"
],
"contributes": {
"commands": [
{
"command": "codewhale.openTerminal",
"title": "CodeWhale: Open Terminal"
},
{
"command": "codewhale.startRuntime",
"title": "CodeWhale: Start Local Runtime"
},
{
"command": "codewhale.checkRuntime",
"title": "CodeWhale: Check Runtime"
},
{
"command": "codewhale.refreshAgentView",
"title": "CodeWhale: Refresh Agent View"
},
{
"command": "codewhale.refreshSnapshots",
"title": "CodeWhale: Refresh Restore Points"
},
{
"command": "codewhale.openRuntimeDocs",
"title": "CodeWhale: Open Runtime API Docs"
}
],
"configuration": {
"title": "CodeWhale",
"properties": {
"codewhale.commandPath": {
"type": "string",
"default": "codewhale",
"description": "Command or absolute path used to launch CodeWhale."
},
"codewhale.runtimeHost": {
"type": "string",
"default": "127.0.0.1",
"description": "Local host used for CodeWhale runtime attach checks."
},
"codewhale.runtimePort": {
"type": "number",
"default": 7878,
"minimum": 1,
"maximum": 65535,
"description": "Local port used for CodeWhale runtime attach checks."
},
"codewhale.runtimeToken": {
"type": "string",
"default": "",
"description": "Optional bearer token for authenticated runtime endpoints."
},
"codewhale.agentViewRefreshIntervalSeconds": {
"type": "number",
"default": 15,
"minimum": 0,
"maximum": 300,
"description": "Seconds between read-only Agent View refreshes. Set to 0 to disable automatic refresh."
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "codewhale",
"title": "CodeWhale",
"icon": "media/codewhale.svg"
}
]
},
"views": {
"codewhale": [
{
"type": "webview",
"id": "codewhale.runtimeStatus",
"name": "Agent View"
}
]
}
},
"scripts": {
"compile": "tsc -p ./",
"check": "npm run compile",
"package": "vsce package --no-dependencies"
},
"devDependencies": {
"@types/node": "^20.19.27",
"@types/vscode": "^1.90.0",
"@vscode/vsce": "^3.7.0",
"typescript": "^5.9.3"
}
}