@automagik/genie 0.260203.43 → 0.260203.135
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 +10 -5
- package/dist/claudio.js +1 -1
- package/dist/genie.js +1 -1
- package/dist/term.js +1 -1
- package/docs/CO-ORCHESTRATION-GUIDE.md +9 -2
- package/package.json +1 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/hooks/postInstall.sh +10 -0
- package/plugin/scripts/genie.cjs +1 -1
- package/plugin/scripts/term.cjs +86 -84
- package/plugin/skills/genie-cli-dev/SKILL.md +8 -5
- package/plugin/skills/work-orchestration/SKILL.md +9 -3
- package/src/lib/version.ts +1 -1
|
@@ -230,6 +230,7 @@ term new test-session # Create session
|
|
|
230
230
|
term window ls test-session # List windows
|
|
231
231
|
term pane ls test-session # List panes
|
|
232
232
|
term split test-session h # Split horizontally
|
|
233
|
+
term info test-session # Session info (windows/panes)
|
|
233
234
|
term rm test-session # Cleanup
|
|
234
235
|
```
|
|
235
236
|
|
|
@@ -261,11 +262,13 @@ The `src/lib/orchestrator/` module automates Claude Code:
|
|
|
261
262
|
|
|
262
263
|
```bash
|
|
263
264
|
term orc start genie # Start Claude with monitoring
|
|
264
|
-
term orc status genie # Check Claude state
|
|
265
|
-
term
|
|
266
|
-
term
|
|
267
|
-
term
|
|
268
|
-
term
|
|
265
|
+
term orc status genie # Check Claude state (detailed)
|
|
266
|
+
term send genie "msg" # Send message with Enter
|
|
267
|
+
term send genie "q" --no-enter # Send raw key
|
|
268
|
+
term watch genie # Watch session events
|
|
269
|
+
term run genie "task" # Fire-and-forget with auto-approve
|
|
270
|
+
term approve <worker> # Approve permission (for workers)
|
|
271
|
+
term answer <worker> 1 # Answer question (for workers)
|
|
269
272
|
```
|
|
270
273
|
|
|
271
274
|
---
|
|
@@ -35,10 +35,11 @@ term create "Fix the thing" && term work next
|
|
|
35
35
|
### 3. Execute
|
|
36
36
|
|
|
37
37
|
The worker spawns Claude in a pane. You can:
|
|
38
|
-
- Watch: `tmux attach -t genie`
|
|
38
|
+
- Watch: `tmux attach -t genie` or `term watch genie`
|
|
39
39
|
- Approve: `term approve <worker>`
|
|
40
40
|
- Answer: `term answer <worker> <choice>`
|
|
41
|
-
- Check: `term orc status genie`
|
|
41
|
+
- Check: `term orc status genie` (Claude state)
|
|
42
|
+
- Send: `term send genie "msg"` (sends with Enter)
|
|
42
43
|
|
|
43
44
|
### 4. Close When Done
|
|
44
45
|
|
|
@@ -95,7 +96,12 @@ term workers # See both
|
|
|
95
96
|
| Split pane | `term split genie h` |
|
|
96
97
|
| Approve | `term approve <worker>` |
|
|
97
98
|
| Answer | `term answer <worker> 1` |
|
|
98
|
-
|
|
|
99
|
+
| Send message | `term send genie "msg"` |
|
|
100
|
+
| Send raw keys | `term send genie "q" --no-enter` |
|
|
101
|
+
| Watch events | `term watch genie` |
|
|
102
|
+
| Fire-and-forget | `term run genie "task"` |
|
|
103
|
+
| Session info | `term info genie` |
|
|
104
|
+
| Claude state | `term orc status genie` |
|
|
99
105
|
| Close work | `term close <id>` |
|
|
100
106
|
|
|
101
107
|
---
|
package/src/lib/version.ts
CHANGED