@kb-labs/cli-commands 2.101.0 → 2.103.0

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +22 -22
package/README.md CHANGED
@@ -196,7 +196,7 @@ Commands execute inside the plugin sandbox:
196
196
 
197
197
  ## Diagnostics
198
198
 
199
- Use `kb plugins list` to see all discovered commands with their status:
199
+ Use `kb marketplace plugins list` to see all discovered commands with their status:
200
200
 
201
201
  - Available/unavailable status
202
202
  - Source (workspace/node_modules/builtin)
@@ -222,7 +222,7 @@ pnpm build
222
222
  1. Run `kb plugins scaffold my-plugin` to generate a manifest v2 skeleton.
223
223
  2. Implement your command handler in `src/commands/<name>.ts`.
224
224
  3. Update manifest permissions and metadata as needed.
225
- 4. Build your package and test with `kb plugins list`.
225
+ 4. Build your package and test with `kb marketplace plugins list`.
226
226
 
227
227
  ## Migration from Legacy Commands
228
228
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kb-labs/cli-commands",
3
3
  "description": "Command implementations for KB Labs CLI",
4
- "version": "2.101.0",
4
+ "version": "2.103.0",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",
@@ -34,26 +34,26 @@
34
34
  "semver": "^7.6.3",
35
35
  "yaml": "^2.8.0",
36
36
  "zod": "^3.25.76",
37
- "@kb-labs/cli-runtime": "2.101.0",
38
- "@kb-labs/cli-contracts": "2.101.0",
39
- "@kb-labs/core-resource-broker": "2.101.0",
40
- "@kb-labs/core-discovery": "2.101.0",
41
- "@kb-labs/core-state-broker": "2.101.0",
42
- "@kb-labs/core-sys": "2.101.0",
43
- "@kb-labs/core-registry": "2.101.0",
44
- "@kb-labs/plugin-contracts": "2.101.0",
45
- "@kb-labs/core-platform": "2.101.0",
46
- "@kb-labs/plugin-execution": "2.101.0",
47
- "@kb-labs/workflow-artifacts": "2.101.0",
48
- "@kb-labs/shared-command-kit": "2.101.0",
49
- "@kb-labs/shared-cli-ui": "2.101.0",
50
- "@kb-labs/core-ipc": "2.101.0",
51
- "@kb-labs/workflow-engine": "2.101.0",
52
- "@kb-labs/workflow-contracts": "2.101.0",
53
- "@kb-labs/plugin-runtime": "2.101.0",
54
- "@kb-labs/workflow-runtime": "2.101.0",
55
- "@kb-labs/workflow-constants": "2.101.0",
56
- "@kb-labs/core-runtime": "2.101.0"
37
+ "@kb-labs/cli-runtime": "2.103.0",
38
+ "@kb-labs/core-discovery": "2.103.0",
39
+ "@kb-labs/core-platform": "2.103.0",
40
+ "@kb-labs/core-registry": "2.103.0",
41
+ "@kb-labs/core-resource-broker": "2.103.0",
42
+ "@kb-labs/cli-contracts": "2.103.0",
43
+ "@kb-labs/core-runtime": "2.103.0",
44
+ "@kb-labs/core-sys": "2.103.0",
45
+ "@kb-labs/plugin-contracts": "2.103.0",
46
+ "@kb-labs/plugin-runtime": "2.103.0",
47
+ "@kb-labs/plugin-execution": "2.103.0",
48
+ "@kb-labs/workflow-constants": "2.103.0",
49
+ "@kb-labs/workflow-artifacts": "2.103.0",
50
+ "@kb-labs/shared-command-kit": "2.103.0",
51
+ "@kb-labs/workflow-engine": "2.103.0",
52
+ "@kb-labs/workflow-contracts": "2.103.0",
53
+ "@kb-labs/shared-cli-ui": "2.103.0",
54
+ "@kb-labs/core-state-broker": "2.103.0",
55
+ "@kb-labs/workflow-runtime": "2.103.0",
56
+ "@kb-labs/core-ipc": "2.103.0"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@types/node": "^24.3.3",
@@ -62,7 +62,7 @@
62
62
  "tsup": "^8.5.0",
63
63
  "typescript": "^5.6.3",
64
64
  "vitest": "^3.2.6",
65
- "@kb-labs/devkit": "2.101.0"
65
+ "@kb-labs/devkit": "2.103.0"
66
66
  },
67
67
  "engines": {
68
68
  "node": ">=20.0.0",