@shardworks/nexus 0.1.199 → 0.1.201
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 +31 -0
- package/dist/program.d.ts +0 -9
- package/dist/program.d.ts.map +1 -1
- package/dist/program.js +55 -1
- package/dist/program.js.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -60,6 +60,18 @@ Zod param schemas are converted to Commander flags:
|
|
|
60
60
|
| `z.union([z.enum([…]), z.array(…)])` | `--param <value>` (repeatable, collects into array) |
|
|
61
61
|
| camelCase key | `--kebab-case` flag |
|
|
62
62
|
|
|
63
|
+
### Positional ID Convention
|
|
64
|
+
|
|
65
|
+
Tools with exactly one required string parameter named `id` or ending with `Id` automatically accept that parameter as a positional argument in addition to the `--id` flag:
|
|
66
|
+
|
|
67
|
+
```sh
|
|
68
|
+
# These are equivalent:
|
|
69
|
+
nsg click show c-abc123
|
|
70
|
+
nsg click show --id c-abc123
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
The flag takes precedence if both are provided. This convention applies automatically to any matching tool — no metadata changes needed.
|
|
74
|
+
|
|
63
75
|
### Guild Root Resolution
|
|
64
76
|
|
|
65
77
|
The CLI resolves the guild root in priority order:
|
|
@@ -196,6 +208,25 @@ Rig and crawl commands come from the `spider` plugin.
|
|
|
196
208
|
| `nsg crawl one` | spider | Execute one step of the Spider's crawl loop |
|
|
197
209
|
| `nsg crawl continual` | spider | Run the Spider's crawl loop continuously |
|
|
198
210
|
|
|
211
|
+
### Clicks
|
|
212
|
+
|
|
213
|
+
Click (task tracking) commands come from the `ratchet` plugin.
|
|
214
|
+
|
|
215
|
+
| Command | Source | Description |
|
|
216
|
+
|---|---|---|
|
|
217
|
+
| `nsg click create` | ratchet | Create a new click |
|
|
218
|
+
| `nsg click show` | ratchet | Show full detail for a click including links, parent, and children context |
|
|
219
|
+
| `nsg click list` | ratchet | List clicks with optional filters (status, parentId, rootId) |
|
|
220
|
+
| `nsg click tree` | ratchet | Display click hierarchy as a visual tree with status indicators |
|
|
221
|
+
| `nsg click park` | ratchet | Park a live click |
|
|
222
|
+
| `nsg click resume` | ratchet | Resume a parked click |
|
|
223
|
+
| `nsg click conclude` | ratchet | Conclude a click |
|
|
224
|
+
| `nsg click drop` | ratchet | Drop a click |
|
|
225
|
+
| `nsg click reparent` | ratchet | Move a click to a new parent or root |
|
|
226
|
+
| `nsg click link` | ratchet | Create a typed link between clicks |
|
|
227
|
+
| `nsg click unlink` | ratchet | Remove a link |
|
|
228
|
+
| `nsg click extract` | ratchet | Extract a click tree as markdown or JSON |
|
|
229
|
+
|
|
199
230
|
### Introspection
|
|
200
231
|
|
|
201
232
|
Introspection commands come from the `tools` plugin (Instrumentarium).
|
package/dist/program.d.ts
CHANGED
|
@@ -18,15 +18,6 @@
|
|
|
18
18
|
*/
|
|
19
19
|
import { Command } from 'commander';
|
|
20
20
|
import type { ToolDefinition } from '@shardworks/tools-apparatus';
|
|
21
|
-
/**
|
|
22
|
-
* Build a Commander command from a ToolDefinition.
|
|
23
|
-
*
|
|
24
|
-
* Generates options from the Zod param shape. Commander converts kebab-case
|
|
25
|
-
* flags back to camelCase in opts(), matching the tool's schema keys directly.
|
|
26
|
-
*
|
|
27
|
-
* The action handler validates params through the tool's Zod schema before
|
|
28
|
-
* calling the handler — Zod error messages are surfaced cleanly.
|
|
29
|
-
*/
|
|
30
21
|
export declare function buildToolCommand(commandName: string, toolDef: ToolDefinition): Command;
|
|
31
22
|
export declare function main(): Promise<void>;
|
|
32
23
|
//# sourceMappingURL=program.d.ts.map
|
package/dist/program.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"program.d.ts","sourceRoot":"","sources":["../src/program.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAGH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAGpC,OAAO,KAAK,EAAE,cAAc,EAAsB,MAAM,6BAA6B,CAAC;
|
|
1
|
+
{"version":3,"file":"program.d.ts","sourceRoot":"","sources":["../src/program.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAGH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAGpC,OAAO,KAAK,EAAE,cAAc,EAAsB,MAAM,6BAA6B,CAAC;AA6CtF,wBAAgB,gBAAgB,CAC9B,WAAW,EAAE,MAAM,EACnB,OAAO,EAAE,cAAc,GACtB,OAAO,CAwET;AA6CD,wBAAsB,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC,CA+D1C"}
|
package/dist/program.js
CHANGED
|
@@ -32,9 +32,39 @@ import { toFlag, isBooleanSchema, isRepeatableSchema, findGroupPrefixes, coerceC
|
|
|
32
32
|
* The action handler validates params through the tool's Zod schema before
|
|
33
33
|
* calling the handler — Zod error messages are surfaced cleanly.
|
|
34
34
|
*/
|
|
35
|
+
/**
|
|
36
|
+
* Detect whether a Zod schema is a required string type (not optional, not defaulted).
|
|
37
|
+
*/
|
|
38
|
+
function isRequiredStringSchema(schema) {
|
|
39
|
+
return !schema.isOptional() && schema.safeParse('test').success && !schema.safeParse(42).success;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Detect if a tool has exactly one required string param named 'id' or ending
|
|
43
|
+
* with 'Id'. Returns the param key if found, undefined otherwise.
|
|
44
|
+
*
|
|
45
|
+
* Convention: when detected, the CLI registers this param as an optional
|
|
46
|
+
* positional argument so `nsg click show <id>` works alongside `--id <id>`.
|
|
47
|
+
*/
|
|
48
|
+
function detectPositionalId(shape) {
|
|
49
|
+
const requiredStringKeys = [];
|
|
50
|
+
for (const [key, schema] of Object.entries(shape)) {
|
|
51
|
+
if (isRequiredStringSchema(schema)) {
|
|
52
|
+
requiredStringKeys.push(key);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
// Must be exactly one required string param
|
|
56
|
+
if (requiredStringKeys.length !== 1)
|
|
57
|
+
return undefined;
|
|
58
|
+
const key = requiredStringKeys[0];
|
|
59
|
+
// Must be named 'id' or end with 'Id'
|
|
60
|
+
if (key === 'id' || key.endsWith('Id'))
|
|
61
|
+
return key;
|
|
62
|
+
return undefined;
|
|
63
|
+
}
|
|
35
64
|
export function buildToolCommand(commandName, toolDef) {
|
|
36
65
|
const cmd = new Command(commandName).description(toolDef.description);
|
|
37
66
|
const shape = toolDef.params.shape;
|
|
67
|
+
const positionalKey = detectPositionalId(shape);
|
|
38
68
|
for (const [key, schema] of Object.entries(shape)) {
|
|
39
69
|
const flag = toFlag(key);
|
|
40
70
|
const description = schema.description ?? key;
|
|
@@ -47,6 +77,11 @@ export function buildToolCommand(commandName, toolDef) {
|
|
|
47
77
|
// Always optional — a required array param doesn't make sense for CLI.
|
|
48
78
|
cmd.option(`${flag} <value>`, description, (value, prev) => [...prev, value], []);
|
|
49
79
|
}
|
|
80
|
+
else if (key === positionalKey) {
|
|
81
|
+
// Positional ID convention: register both as optional flag AND positional.
|
|
82
|
+
// The flag is optional because the positional can supply the value.
|
|
83
|
+
cmd.option(`${flag} <value>`, description);
|
|
84
|
+
}
|
|
50
85
|
else if (schema.isOptional()) {
|
|
51
86
|
cmd.option(`${flag} <value>`, description);
|
|
52
87
|
}
|
|
@@ -54,8 +89,27 @@ export function buildToolCommand(commandName, toolDef) {
|
|
|
54
89
|
cmd.requiredOption(`${flag} <value>`, description);
|
|
55
90
|
}
|
|
56
91
|
}
|
|
57
|
-
|
|
92
|
+
// Add positional argument for the ID param (optional, since --flag still works)
|
|
93
|
+
if (positionalKey) {
|
|
94
|
+
cmd.argument(`[${positionalKey}]`, shape[positionalKey].description ?? positionalKey);
|
|
95
|
+
}
|
|
96
|
+
cmd.action(async (...args) => {
|
|
58
97
|
try {
|
|
98
|
+
// Commander passes positional args before opts. With one optional positional:
|
|
99
|
+
// action(positionalValue, opts, cmd) or action(opts, cmd) if no positional defined
|
|
100
|
+
let opts;
|
|
101
|
+
let positionalValue;
|
|
102
|
+
if (positionalKey) {
|
|
103
|
+
positionalValue = args[0];
|
|
104
|
+
opts = args[1];
|
|
105
|
+
}
|
|
106
|
+
else {
|
|
107
|
+
opts = args[0];
|
|
108
|
+
}
|
|
109
|
+
// Merge positional into opts — flag takes precedence over positional
|
|
110
|
+
if (positionalKey && positionalValue && opts[positionalKey] === undefined) {
|
|
111
|
+
opts[positionalKey] = positionalValue;
|
|
112
|
+
}
|
|
59
113
|
const coerced = coerceCliOpts(shape, opts);
|
|
60
114
|
const validated = toolDef.params.parse(coerced);
|
|
61
115
|
const result = await toolDef.handler(validated);
|
package/dist/program.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"program.js","sourceRoot":"","sources":["../src/program.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAEH,OAAO,IAAI,MAAM,WAAW,CAAC;AAC7B,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAC;AAE9D,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,MAAM,EAAE,eAAe,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,aAAa,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAI/H;;;;;;;;GAQG;AACH,MAAM,UAAU,gBAAgB,CAC9B,WAAmB,EACnB,OAAuB;IAEvB,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,WAAW,CAAC,CAAC,WAAW,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;IAEtE,MAAM,KAAK,GAAG,OAAO,CAAC,MAAM,CAAC,KAAiB,CAAC;IAC/C,KAAK,MAAM,CAAC,GAAG,EAAE,MAAM,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC;QAClD,MAAM,IAAI,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;QACzB,MAAM,WAAW,GAAG,MAAM,CAAC,WAAW,IAAI,GAAG,CAAC;QAE9C,IAAI,eAAe,CAAC,MAAM,CAAC,EAAE,CAAC;YAC5B,gEAAgE;YAChE,GAAG,CAAC,MAAM,CAAC,IAAI,EAAE,WAAW,CAAC,CAAC;QAChC,CAAC;aAAM,IAAI,kBAAkB,CAAC,MAAM,CAAC,EAAE,CAAC;YACtC,sEAAsE;YACtE,uEAAuE;YACvE,GAAG,CAAC,MAAM,CACR,GAAG,IAAI,UAAU,EACjB,WAAW,EACX,CAAC,KAAa,EAAE,IAAc,EAAE,EAAE,CAAC,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC,EACnD,EAAc,CACf,CAAC;QACJ,CAAC;aAAM,IAAI,MAAM,CAAC,UAAU,EAAE,EAAE,CAAC;YAC/B,GAAG,CAAC,MAAM,CAAC,GAAG,IAAI,UAAU,EAAE,WAAW,CAAC,CAAC;QAC7C,CAAC;aAAM,CAAC;YACN,GAAG,CAAC,cAAc,CAAC,GAAG,IAAI,UAAU,EAAE,WAAW,CAAC,CAAC;QACrD,CAAC;IACH,CAAC;IAED,GAAG,CAAC,MAAM,CAAC,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"program.js","sourceRoot":"","sources":["../src/program.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shardworks/nexus",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.201",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"commander": "14.0.3",
|
|
23
23
|
"zod": "4.3.6",
|
|
24
|
-
"@shardworks/
|
|
25
|
-
"@shardworks/
|
|
26
|
-
"@shardworks/nexus-
|
|
24
|
+
"@shardworks/nexus-core": "0.1.201",
|
|
25
|
+
"@shardworks/tools-apparatus": "0.1.201",
|
|
26
|
+
"@shardworks/nexus-arbor": "0.1.201"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/node": "25.5.0"
|