@automagik/genie 4.260331.4 → 4.260331.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/.claude-plugin/marketplace.json +1 -1
- package/CLAUDE.md +31 -5
- package/dist/genie.js +652 -615
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/plugins/genie/.claude-plugin/plugin.json +1 -1
- package/plugins/genie/package.json +1 -1
- package/skills/genie/SKILL.md +71 -233
- package/skills/genie/reference/lifecycle.md +65 -0
- package/src/db/migrations/016_team_spawner.sql +5 -0
- package/src/db/migrations/017_wishes_table.sql +18 -0
- package/src/genie-commands/session.ts +19 -7
- package/src/genie.ts +26 -3
- package/src/hooks/handlers/auto-spawn.ts +14 -0
- package/src/lib/agent-registry.ts +25 -5
- package/src/lib/claude-native-teams.ts +69 -45
- package/src/lib/protocol-router-spawn.ts +10 -1
- package/src/lib/qa-runner.ts +1 -1
- package/src/lib/team-auto-spawn.ts +7 -2
- package/src/lib/team-manager.test.ts +45 -0
- package/src/lib/team-manager.ts +20 -3
- package/src/lib/wish-resolve.test.ts +108 -0
- package/src/lib/wish-resolve.ts +124 -0
- package/src/lib/wish-sync.test.ts +141 -0
- package/src/lib/wish-sync.ts +182 -0
- package/src/term-commands/agent/index.ts +6 -0
- package/src/term-commands/agent/send.ts +16 -2
- package/src/term-commands/agents.ts +22 -3
- package/src/term-commands/dir.ts +0 -92
- package/src/term-commands/dispatch.ts +52 -3
- package/src/term-commands/msg.ts +54 -14
- package/src/term-commands/state.ts +35 -5
- package/src/term-commands/team.ts +23 -8
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"plugins": [
|
|
11
11
|
{
|
|
12
12
|
"name": "genie",
|
|
13
|
-
"version": "4.260331.
|
|
13
|
+
"version": "4.260331.6",
|
|
14
14
|
"source": "./plugins/genie",
|
|
15
15
|
"description": "Human-AI partnership for Claude Code. Share a terminal, orchestrate workers, evolve together. Brainstorm ideas, wish them into plans, make with parallel agents, ship as one team. A coding genie that grows with your project."
|
|
16
16
|
}
|
package/CLAUDE.md
CHANGED
|
@@ -33,13 +33,27 @@ skills/ Skill prompt files (brainstorm, wish, work, revi
|
|
|
33
33
|
|
|
34
34
|
## CLI Namespaces
|
|
35
35
|
|
|
36
|
+
Top-level aliases (`genie spawn`, `genie kill`, etc.) are shortcuts for the `genie agent` namespace. Both forms work identically.
|
|
37
|
+
|
|
38
|
+
### Agent Commands
|
|
36
39
|
```bash
|
|
37
|
-
|
|
38
|
-
genie
|
|
40
|
+
# Top-level aliases (shortcuts)
|
|
41
|
+
genie spawn <name> # Alias for: genie agent spawn <name>
|
|
42
|
+
genie kill <name> # Alias for: genie agent kill <name>
|
|
43
|
+
genie stop <name> # Alias for: genie agent stop <name>
|
|
44
|
+
genie resume [name] # Alias for: genie agent resume [name]
|
|
45
|
+
genie ls # Alias for: genie agent list
|
|
46
|
+
genie log [agent] # Alias for: genie agent log [agent]
|
|
47
|
+
genie read <name> # Read terminal output from agent pane
|
|
48
|
+
genie history <name> # Show compressed session history
|
|
49
|
+
genie answer <name> <choice> # Alias for: genie agent answer <name> <choice>
|
|
50
|
+
|
|
51
|
+
# Full namespace commands
|
|
52
|
+
genie agent spawn <name> # Spawn agent (resolves from directory or built-ins)
|
|
53
|
+
genie agent list # List agents with runtime status
|
|
39
54
|
genie agent log <name> # Unified log (default)
|
|
40
|
-
genie agent log <name> --raw # Pane capture
|
|
41
|
-
genie agent log <name> --transcript # Compressed transcript
|
|
42
|
-
genie agent log --search "query" # Session search (was: genie sessions search)
|
|
55
|
+
genie agent log <name> --raw # Pane capture
|
|
56
|
+
genie agent log <name> --transcript # Compressed transcript
|
|
43
57
|
genie agent send '<msg>' --to <name> # Direct message (hierarchy-enforced)
|
|
44
58
|
genie agent send '<msg>' --broadcast # Team broadcast
|
|
45
59
|
genie agent inbox # View inbox
|
|
@@ -47,14 +61,26 @@ genie agent brief --team <name> # Cold-start summary
|
|
|
47
61
|
genie agent answer <name> <choice> # Answer prompt
|
|
48
62
|
genie agent show <name> # Agent + executor detail
|
|
49
63
|
genie agent stop/kill/resume <name> # Lifecycle management
|
|
64
|
+
genie agent register <name> # Register agent locally + Omni
|
|
65
|
+
genie agent directory [name] # List/show directory entries
|
|
66
|
+
```
|
|
50
67
|
|
|
68
|
+
### Task Commands
|
|
69
|
+
```bash
|
|
51
70
|
genie task create --title 'x' # Create task
|
|
52
71
|
genie task list # List tasks
|
|
53
72
|
genie task status <slug> # Wish group status
|
|
54
73
|
genie task done <ref> # Mark group done
|
|
55
74
|
genie task board/project/releases/type # Planning hierarchy
|
|
75
|
+
```
|
|
56
76
|
|
|
77
|
+
### Team Commands
|
|
78
|
+
```bash
|
|
57
79
|
genie team create/hire/fire/list/disband # Team lifecycle
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
### Other
|
|
83
|
+
```bash
|
|
58
84
|
genie exec list/show/terminate # Executor debug
|
|
59
85
|
genie run <spec> # Wish/spec runner (top-level)
|
|
60
86
|
```
|