@cjhyy/code-shell 0.8.9 → 0.8.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -1
- package/package.json +6 -4
package/README.md
CHANGED
|
@@ -137,10 +137,15 @@ need unavailable providers, credentials, cookies, or an active goal.
|
|
|
137
137
|
- **Shell / execution**: `Bash`, `BashOutput`, `KillShell`, `ListShells`, `PowerShell`, `REPL`, `Sleep`
|
|
138
138
|
- **Web / media / browser**: `browser_observe`, `browser_act`, `browser_navigate`, `WebSearch`, `WebFetch`, `GenerateImage`, `GenerateVideo`
|
|
139
139
|
- **Planning / orchestration**: `AskUserQuestion`, `EnterPlanMode`, `ExitPlanMode`, `ToolSearch`, `TodoWrite`, `Agent`, `AgentCancel`, `DriveAgent`, `DriveClaudeCode`, `CheckQuota`
|
|
140
|
-
- **Automation / integration**: `CronCreate`, `CronDelete`, `CronList`, `Config`, `Skill`, `AddMarketplace`, `MCPTool`, `ListMcpResources`, `ReadMcpResource`, `EditModelCatalog`
|
|
140
|
+
- **Automation / integration**: `CronCreate`, `CronDelete`, `CronList`, `Config`, `Skill`, `AddMarketplace`, `InstallCapability`, `MCPTool`, `ListMcpResources`, `ReadMcpResource`, `EditModelCatalog`
|
|
141
141
|
- **Memory / credentials / goals**: `MemoryList`, `MemoryRead`, `MemorySave`, `MemoryDelete`, `UseCredential`, `InjectCredential`, `complete_goal`, `cancel_goal`
|
|
142
142
|
- **Terminal-coding preset extras**: `EnterWorktree`, `ExitWorktree`, `NotebookEdit`, `LSP`, `Brief`, `Arena`
|
|
143
143
|
|
|
144
|
+
`InstallCapability` lets a conversation list, inspect, install, update, enable, disable, and
|
|
145
|
+
uninstall marketplace plugins, standalone project Skills, and MCP servers. MCP configuration
|
|
146
|
+
supports private-local, shared-project, and user-wide scopes; mutations and external Skill
|
|
147
|
+
repository inspection remain approval-gated.
|
|
148
|
+
|
|
144
149
|
---
|
|
145
150
|
|
|
146
151
|
## Programmatic API
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cjhyy/code-shell",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.11",
|
|
4
4
|
"description": "Code Shell — meta package. Installs @cjhyy/code-shell-core and @cjhyy/code-shell-tui.",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"packageManager": "bun@1.3.11",
|
|
6
7
|
"main": "./dist/index.js",
|
|
7
8
|
"types": "./dist/index.d.ts",
|
|
8
9
|
"exports": {
|
|
@@ -30,7 +31,8 @@
|
|
|
30
31
|
"test:package-release": "bun run scripts/package-release-smoke.ts",
|
|
31
32
|
"test:watch": "bun test --timeout 30000 --watch",
|
|
32
33
|
"bench:render": "bun run bench/render-tail.bench.ts && bun run bench/render-streaming.bench.ts && bun run bench/render-spinner.bench.ts && bun run bench/render-wheel.bench.ts",
|
|
33
|
-
"typecheck": "bun run
|
|
34
|
+
"typecheck": "bun run build && bun run typecheck:workspaces",
|
|
35
|
+
"typecheck:workspaces": "bun run --filter '@cjhyy/code-shell-*' typecheck",
|
|
34
36
|
"lint": "eslint packages/",
|
|
35
37
|
"lint:engine-bypass": "bash scripts/check-no-engine-bypass.sh",
|
|
36
38
|
"lint:workflow-test-paths": "node scripts/check-workflow-test-paths.mjs",
|
|
@@ -38,8 +40,8 @@
|
|
|
38
40
|
"format": "prettier --write 'packages/**/*.ts'"
|
|
39
41
|
},
|
|
40
42
|
"dependencies": {
|
|
41
|
-
"@cjhyy/code-shell-core": "0.8.
|
|
42
|
-
"@cjhyy/code-shell-tui": "0.8.
|
|
43
|
+
"@cjhyy/code-shell-core": "0.8.11",
|
|
44
|
+
"@cjhyy/code-shell-tui": "0.8.11"
|
|
43
45
|
},
|
|
44
46
|
"workspaces": [
|
|
45
47
|
"packages/*"
|