@treeseed/cli 0.8.2 → 0.8.4

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 CHANGED
@@ -17,7 +17,7 @@ Install the CLI with its runtime dependencies:
17
17
  npm install @treeseed/cli @treeseed/core @treeseed/sdk
18
18
  ```
19
19
 
20
- `@treeseed/cli` is a thin installable wrapper over `@treeseed/sdk` workflow and operations interfaces plus the `@treeseed/core` runtime namespaces. `treeseed dev` and `treeseed agents ...` resolve and delegate to the tenant-installed or sibling-workspace `@treeseed/core` runtime. In normal consumer installs, npm resolves the runtime dependencies automatically.
20
+ `@treeseed/cli` is a thin installable wrapper over `@treeseed/sdk` workflow and operations interfaces plus the Treeseed runtime packages. `treeseed dev` resolves the tenant-installed or sibling-workspace `@treeseed/core` web runtime, while `treeseed agents ...` delegates to `@treeseed/agent`. In normal consumer installs, npm resolves the runtime dependencies automatically.
21
21
 
22
22
  Workflow guarantees:
23
23
 
@@ -1494,7 +1494,7 @@ const CLI_ONLY_OPERATION_SPECS = [
1494
1494
  aliases: [],
1495
1495
  group: "Utilities",
1496
1496
  summary: "Run the Treeseed agent runtime namespace.",
1497
- description: "Delegate to the integrated `@treeseed/core` agent runtime namespace and forward the remaining subcommand arguments.",
1497
+ description: "Delegate to the `@treeseed/agent` runtime namespace and forward the remaining subcommand arguments.",
1498
1498
  provider: "default",
1499
1499
  related: ["status", "config"],
1500
1500
  usage: "treeseed agents <command>",
@@ -1502,13 +1502,13 @@ const CLI_ONLY_OPERATION_SPECS = [
1502
1502
  examples: ["treeseed agents --help"],
1503
1503
  help: {
1504
1504
  longSummary: [
1505
- "Agents is the CLI entrypoint into the integrated Treeseed agent runtime namespace. It forwards the remaining subcommand arguments to the runtime owned by `@treeseed/core`."
1505
+ "Agents is the CLI entrypoint into the Treeseed agent runtime namespace. It forwards the remaining subcommand arguments to the runtime owned by `@treeseed/agent`."
1506
1506
  ],
1507
1507
  whenToUse: [
1508
1508
  "Use this when the thing you want is inside the agent runtime namespace rather than the main Treeseed command set."
1509
1509
  ],
1510
1510
  beforeYouRun: [
1511
- "Make sure the integrated `@treeseed/core` runtime is installed and available because this command delegates rather than handling the work locally."
1511
+ "Make sure the `@treeseed/agent` runtime is installed and available because this command delegates rather than handling the work locally."
1512
1512
  ],
1513
1513
  outcomes: [
1514
1514
  "Passes control to the agent runtime and forwards the remaining arguments unchanged."
@@ -1527,7 +1527,7 @@ const CLI_ONLY_OPERATION_SPECS = [
1527
1527
  ]
1528
1528
  },
1529
1529
  notes: [
1530
- "Delegates to the integrated `@treeseed/core` agent runtime.",
1530
+ "Delegates to the `@treeseed/agent` runtime.",
1531
1531
  "Use `treeseed agents --help` to list supported agent subcommands."
1532
1532
  ],
1533
1533
  helpVisible: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@treeseed/cli",
3
- "version": "0.8.2",
3
+ "version": "0.8.4",
4
4
  "description": "Operator-facing Treeseed CLI package.",
5
5
  "license": "AGPL-3.0-only",
6
6
  "repository": {
@@ -45,7 +45,7 @@
45
45
  "release:publish": "node ./scripts/run-ts.mjs ./scripts/publish-package.ts"
46
46
  },
47
47
  "dependencies": {
48
- "@treeseed/sdk": "0.8.2",
48
+ "@treeseed/sdk": "0.8.4",
49
49
  "ink": "^7.0.0",
50
50
  "react": "^19.2.5"
51
51
  },