smithers-orchestrator 0.1.4 → 0.1.5

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smithers-orchestrator",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
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,22 @@
25
25
  "types": "./dist/components/index.d.ts",
26
26
  "import": "./dist/components/index.js"
27
27
  },
28
+ "./components/*": {
29
+ "types": "./dist/components/*.d.ts",
30
+ "import": "./dist/components/*.js"
31
+ },
28
32
  "./orchestrator": {
29
33
  "types": "./dist/orchestrator/components/index.d.ts",
30
34
  "import": "./dist/orchestrator/components/index.js"
31
35
  },
36
+ "./orchestrator/*": {
37
+ "types": "./dist/orchestrator/components/*.d.ts",
38
+ "import": "./dist/orchestrator/components/*.js"
39
+ },
40
+ "./db": {
41
+ "types": "./dist/orchestrator/db/index.d.ts",
42
+ "import": "./dist/orchestrator/db/index.js"
43
+ },
32
44
  "./debug": {
33
45
  "types": "./dist/debug/index.d.ts",
34
46
  "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/components/SmithersProvider'
8
- import { Orchestration } from 'smithers-orchestrator/components/Orchestration'
9
- import { Claude } from 'smithers-orchestrator/components/Claude'
10
- import { Phase } from 'smithers-orchestrator/components/Phase'
11
- import { Step } from 'smithers-orchestrator/components/Step'
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