toolcraft 0.0.94 → 0.0.96

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/composition.json CHANGED
@@ -48,7 +48,7 @@
48
48
  },
49
49
  {
50
50
  "name": "toolcraft",
51
- "version": "0.0.94",
51
+ "version": "0.0.96",
52
52
  "license": "MIT"
53
53
  },
54
54
  {
package/dist/cli.js CHANGED
@@ -339,7 +339,7 @@ function collectFields(schema, casing, globalLongOptionFlags, path = [], inherit
339
339
  longAliases: [...(childSchema.cliAliases ?? [])].map((alias) => alias.startsWith("--") ? alias : `--${alias}`),
340
340
  shortFlag: childSchema.short,
341
341
  schema: childSchema,
342
- description: childSchema.description,
342
+ description: childSchema.cliDescription ?? childSchema.description,
343
343
  optional: runtimeOptional,
344
344
  hasDefault: childSchema.default !== undefined,
345
345
  defaultValue: childSchema.default,
@@ -48,7 +48,7 @@
48
48
  },
49
49
  {
50
50
  "name": "toolcraft",
51
- "version": "0.0.94",
51
+ "version": "0.0.96",
52
52
  "license": "MIT"
53
53
  },
54
54
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "toolcraft",
3
- "version": "0.0.94",
3
+ "version": "0.0.96",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -100,7 +100,7 @@
100
100
  "postpack": "node ../../scripts/manage-bundled-workspace-deps.mjs cleanup . toolcraft-design @poe-code/frontmatter @poe-code/agent-mcp-config @poe-code/agent-human-in-loop @poe-code/task-list @poe-code/agent-defs @poe-code/config-mutations @poe-code/process-runner tiny-mcp-client auth-store"
101
101
  },
102
102
  "dependencies": {
103
- "toolcraft-schema": "0.0.94",
103
+ "toolcraft-schema": "0.0.96",
104
104
  "commander": "^13.1.0",
105
105
  "fast-string-width": "^3.0.2",
106
106
  "fast-wrap-ansi": "^0.2.0",