@smithers-orchestrator/cli 0.17.0 → 0.19.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.
- package/dist/CliExitCode-dlFKbqup.d.ts +12 -0
- package/dist/HijackCandidate-FxLeKpcZ.d.ts +13 -0
- package/dist/SemanticToolDefinition-C1UT6pZk.d.ts +71 -0
- package/dist/SupervisorOptions-DtiPbGFx.d.ts +27 -0
- package/dist/agent-commands/agentAddWizard.d.ts +18 -0
- package/dist/agent-commands/regenerateAgentsTsIfPresent.d.ts +15 -0
- package/dist/agent-commands/runAgentAdd.d.ts +83 -0
- package/dist/agent-detection.d.ts +27 -0
- package/dist/ask.d.ts +29 -0
- package/dist/chat.d.ts +96 -0
- package/dist/diff.d.ts +64 -0
- package/dist/event-categories.d.ts +26 -0
- package/dist/find-db.d.ts +47 -0
- package/dist/format.d.ts +35 -0
- package/dist/hijack-session.d.ts +25 -0
- package/dist/hijack.d.ts +54 -0
- package/dist/index.d.ts +1 -0
- package/dist/mcp/semantic-server.d.ts +30 -0
- package/dist/mcp/semantic-tools.d.ts +4 -0
- package/dist/mdx-plugin.d.ts +3 -0
- package/dist/node-detail.d.ts +143 -0
- package/dist/output.d.ts +31 -0
- package/dist/resume-detached.d.ts +17 -0
- package/dist/rewind.d.ts +28 -0
- package/dist/scheduler.d.ts +3 -0
- package/dist/smithersRuntime.d.ts +23 -0
- package/dist/supervisor.d.ts +44 -0
- package/dist/tree.d.ts +51 -0
- package/dist/util/errorMessage.d.ts +40 -0
- package/dist/util/exitCodes.d.ts +19 -0
- package/dist/watch.d.ts +44 -0
- package/dist/why-diagnosis.d.ts +56 -0
- package/dist/workflow-pack.d.ts +38 -0
- package/dist/workflows.d.ts +35 -0
- package/package.json +20 -19
- package/src/workflow-pack.js +1158 -20
package/package.json
CHANGED
|
@@ -1,23 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smithers-orchestrator/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.19.0",
|
|
4
4
|
"description": "Smithers command-line interface, TUI, MCP server, and local workflow tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
|
-
"types": "./
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
10
|
"import": "./src/index.js",
|
|
11
11
|
"default": "./src/index.js"
|
|
12
12
|
},
|
|
13
13
|
"./*": {
|
|
14
|
-
"types": "./
|
|
14
|
+
"types": "./dist/*.d.ts",
|
|
15
15
|
"import": "./src/*.js",
|
|
16
16
|
"default": "./src/*.js"
|
|
17
17
|
}
|
|
18
18
|
},
|
|
19
19
|
"files": [
|
|
20
|
-
"src/"
|
|
20
|
+
"src/",
|
|
21
|
+
"dist/"
|
|
21
22
|
],
|
|
22
23
|
"dependencies": {
|
|
23
24
|
"@mdx-js/esbuild": "^3.1.1",
|
|
@@ -33,21 +34,21 @@
|
|
|
33
34
|
"picocolors": "^1.1.1",
|
|
34
35
|
"react": "^19.2.5",
|
|
35
36
|
"zod": "^4.3.6",
|
|
36
|
-
"@smithers-orchestrator/
|
|
37
|
-
"@smithers-orchestrator/
|
|
38
|
-
"@smithers-orchestrator/
|
|
39
|
-
"@smithers-orchestrator/
|
|
40
|
-
"@smithers-orchestrator/
|
|
41
|
-
"@smithers-orchestrator/
|
|
42
|
-
"@smithers-orchestrator/driver": "0.
|
|
43
|
-
"@smithers-orchestrator/errors": "0.
|
|
44
|
-
"@smithers-orchestrator/
|
|
45
|
-
"@smithers-orchestrator/observability": "0.
|
|
46
|
-
"@smithers-orchestrator/
|
|
47
|
-
"@smithers-orchestrator/
|
|
48
|
-
"@smithers-orchestrator/scheduler": "0.
|
|
49
|
-
"@smithers-orchestrator/
|
|
50
|
-
"@smithers-orchestrator/
|
|
37
|
+
"@smithers-orchestrator/components": "0.19.0",
|
|
38
|
+
"@smithers-orchestrator/agents": "0.19.0",
|
|
39
|
+
"@smithers-orchestrator/db": "0.19.0",
|
|
40
|
+
"@smithers-orchestrator/devtools": "0.19.0",
|
|
41
|
+
"@smithers-orchestrator/accounts": "0.19.0",
|
|
42
|
+
"@smithers-orchestrator/engine": "0.19.0",
|
|
43
|
+
"@smithers-orchestrator/driver": "0.19.0",
|
|
44
|
+
"@smithers-orchestrator/errors": "0.19.0",
|
|
45
|
+
"@smithers-orchestrator/memory": "0.19.0",
|
|
46
|
+
"@smithers-orchestrator/observability": "0.19.0",
|
|
47
|
+
"@smithers-orchestrator/openapi": "0.19.0",
|
|
48
|
+
"@smithers-orchestrator/protocol": "0.19.0",
|
|
49
|
+
"@smithers-orchestrator/scheduler": "0.19.0",
|
|
50
|
+
"@smithers-orchestrator/server": "0.19.0",
|
|
51
|
+
"@smithers-orchestrator/time-travel": "0.19.0"
|
|
51
52
|
},
|
|
52
53
|
"devDependencies": {
|
|
53
54
|
"@types/bun": "latest",
|