smithers-orchestrator 0.1.4 → 0.1.6
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/package.json +57 -1
- package/templates/main.tsx.template +11 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "smithers-orchestrator",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Build AI agents with Solid.js - Declarative JSX for Claude orchestration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,10 +25,66 @@
|
|
|
25
25
|
"types": "./dist/components/index.d.ts",
|
|
26
26
|
"import": "./dist/components/index.js"
|
|
27
27
|
},
|
|
28
|
+
"./components/Ralph": {
|
|
29
|
+
"types": "./dist/components/Ralph.d.ts",
|
|
30
|
+
"import": "./dist/components/Ralph.jsx"
|
|
31
|
+
},
|
|
32
|
+
"./components/Review": {
|
|
33
|
+
"types": "./dist/components/Review.d.ts",
|
|
34
|
+
"import": "./dist/components/Review.jsx"
|
|
35
|
+
},
|
|
36
|
+
"./components/Phase": {
|
|
37
|
+
"types": "./dist/components/Phase.d.ts",
|
|
38
|
+
"import": "./dist/components/Phase.jsx"
|
|
39
|
+
},
|
|
40
|
+
"./components/Step": {
|
|
41
|
+
"types": "./dist/components/Step.d.ts",
|
|
42
|
+
"import": "./dist/components/Step.jsx"
|
|
43
|
+
},
|
|
44
|
+
"./components/JJ": {
|
|
45
|
+
"types": "./dist/components/JJ/index.d.ts",
|
|
46
|
+
"import": "./dist/components/JJ/index.js"
|
|
47
|
+
},
|
|
48
|
+
"./components/Git": {
|
|
49
|
+
"types": "./dist/components/Git/index.d.ts",
|
|
50
|
+
"import": "./dist/components/Git/index.js"
|
|
51
|
+
},
|
|
52
|
+
"./components/Hooks": {
|
|
53
|
+
"types": "./dist/components/Hooks/index.d.ts",
|
|
54
|
+
"import": "./dist/components/Hooks/index.js"
|
|
55
|
+
},
|
|
56
|
+
"./components/MCP": {
|
|
57
|
+
"types": "./dist/components/MCP/index.d.ts",
|
|
58
|
+
"import": "./dist/components/MCP/index.js"
|
|
59
|
+
},
|
|
28
60
|
"./orchestrator": {
|
|
29
61
|
"types": "./dist/orchestrator/components/index.d.ts",
|
|
30
62
|
"import": "./dist/orchestrator/components/index.js"
|
|
31
63
|
},
|
|
64
|
+
"./orchestrator/SmithersProvider": {
|
|
65
|
+
"types": "./dist/orchestrator/components/SmithersProvider.d.ts",
|
|
66
|
+
"import": "./dist/orchestrator/components/SmithersProvider.jsx"
|
|
67
|
+
},
|
|
68
|
+
"./orchestrator/Orchestration": {
|
|
69
|
+
"types": "./dist/orchestrator/components/Orchestration.d.ts",
|
|
70
|
+
"import": "./dist/orchestrator/components/Orchestration.jsx"
|
|
71
|
+
},
|
|
72
|
+
"./orchestrator/Claude": {
|
|
73
|
+
"types": "./dist/orchestrator/components/Claude.d.ts",
|
|
74
|
+
"import": "./dist/orchestrator/components/Claude.jsx"
|
|
75
|
+
},
|
|
76
|
+
"./orchestrator/Phase": {
|
|
77
|
+
"types": "./dist/orchestrator/components/Phase.d.ts",
|
|
78
|
+
"import": "./dist/orchestrator/components/Phase.jsx"
|
|
79
|
+
},
|
|
80
|
+
"./orchestrator/Step": {
|
|
81
|
+
"types": "./dist/orchestrator/components/Step.d.ts",
|
|
82
|
+
"import": "./dist/orchestrator/components/Step.jsx"
|
|
83
|
+
},
|
|
84
|
+
"./db": {
|
|
85
|
+
"types": "./dist/orchestrator/db/index.d.ts",
|
|
86
|
+
"import": "./dist/orchestrator/db/index.js"
|
|
87
|
+
},
|
|
32
88
|
"./debug": {
|
|
33
89
|
"types": "./dist/debug/index.d.ts",
|
|
34
90
|
"import": "./dist/debug/index.js"
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
#!/usr/bin/env bun
|
|
2
|
-
import { createSmithersRoot } from 'smithers'
|
|
2
|
+
import { createSmithersRoot } from 'smithers-orchestrator'
|
|
3
3
|
import { createSmithersDB } from 'smithers-orchestrator/db'
|
|
4
|
-
import { Ralph } from 'smithers/components/Ralph'
|
|
4
|
+
import { Ralph } from 'smithers-orchestrator/components/Ralph'
|
|
5
5
|
|
|
6
6
|
// Enhanced components with database integration
|
|
7
|
-
import { SmithersProvider, useSmithers } from 'smithers-orchestrator/
|
|
8
|
-
import { Orchestration } from 'smithers-orchestrator/
|
|
9
|
-
import { Claude } from 'smithers-orchestrator/
|
|
10
|
-
import { Phase } from 'smithers-orchestrator/
|
|
11
|
-
import { Step } from 'smithers-orchestrator/
|
|
7
|
+
import { SmithersProvider, useSmithers } from 'smithers-orchestrator/orchestrator/SmithersProvider'
|
|
8
|
+
import { Orchestration } from 'smithers-orchestrator/orchestrator/Orchestration'
|
|
9
|
+
import { Claude } from 'smithers-orchestrator/orchestrator/Claude'
|
|
10
|
+
import { Phase } from 'smithers-orchestrator/orchestrator/Phase'
|
|
11
|
+
import { Step } from 'smithers-orchestrator/orchestrator/Step'
|
|
12
12
|
|
|
13
13
|
// VCS components
|
|
14
|
-
import { Commit, Snapshot, Describe, Status, Rebase } from 'smithers/components/JJ'
|
|
15
|
-
import { Commit as GitCommit, Notes as GitNotes } from 'smithers/components/Git'
|
|
14
|
+
import { Commit, Snapshot, Describe, Status, Rebase } from 'smithers-orchestrator/components/JJ'
|
|
15
|
+
import { Commit as GitCommit, Notes as GitNotes } from 'smithers-orchestrator/components/Git'
|
|
16
16
|
|
|
17
17
|
// Review and hooks
|
|
18
|
-
import { Review } from 'smithers/components/Review'
|
|
19
|
-
import { PostCommit, OnCIFailure } from 'smithers/components/Hooks'
|
|
18
|
+
import { Review } from 'smithers-orchestrator/components/Review'
|
|
19
|
+
import { PostCommit, OnCIFailure } from 'smithers-orchestrator/components/Hooks'
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
22
|
* Smithers Orchestration Template
|