@automagik/genie 0.260203.43 → 0.260203.138
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/{plugin → automagik-genie}/.claude-plugin/plugin.json +1 -1
- package/automagik-genie/hooks/postInstall.sh +10 -0
- package/automagik-genie/package.json +12 -0
- package/{plugin → automagik-genie}/scripts/genie.cjs +1 -1
- package/{plugin → automagik-genie}/scripts/term.cjs +86 -84
- package/{plugin → automagik-genie}/skills/genie-cli-dev/SKILL.md +8 -5
- package/{plugin → automagik-genie}/skills/work-orchestration/SKILL.md +9 -3
- 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/scripts/build.js +5 -5
- package/src/lib/version.ts +1 -1
- /package/{plugin → automagik-genie}/README.md +0 -0
- /package/{plugin → automagik-genie}/agents/implementor.md +0 -0
- /package/{plugin → automagik-genie}/agents/quality-reviewer.md +0 -0
- /package/{plugin → automagik-genie}/agents/spec-reviewer.md +0 -0
- /package/{plugin → automagik-genie}/hooks/hooks.json +0 -0
- /package/{plugin → automagik-genie}/references/review-criteria.md +0 -0
- /package/{plugin → automagik-genie}/references/wish-template.md +0 -0
- /package/{plugin → automagik-genie}/scripts/smart-install.js +0 -0
- /package/{plugin → automagik-genie}/scripts/src/install-genie-cli.sh +0 -0
- /package/{plugin → automagik-genie}/scripts/src/validate-completion.ts +0 -0
- /package/{plugin → automagik-genie}/scripts/src/validate-wish.ts +0 -0
- /package/{plugin → automagik-genie}/scripts/validate-completion.cjs +0 -0
- /package/{plugin → automagik-genie}/scripts/validate-wish.cjs +0 -0
- /package/{plugin → automagik-genie}/scripts/worker-service.cjs +0 -0
- /package/{plugin → automagik-genie}/skills/brainstorm/SKILL.md +0 -0
- /package/{plugin → automagik-genie}/skills/forge/SKILL.md +0 -0
- /package/{plugin → automagik-genie}/skills/genie-base/SKILL.md +0 -0
- /package/{plugin → automagik-genie}/skills/genie-base/assets/workspace/AGENTS.md +0 -0
- /package/{plugin → automagik-genie}/skills/genie-base/assets/workspace/ENVIRONMENT.md +0 -0
- /package/{plugin → automagik-genie}/skills/genie-base/assets/workspace/HEARTBEAT.md +0 -0
- /package/{plugin → automagik-genie}/skills/genie-base/assets/workspace/IDENTITY.md +0 -0
- /package/{plugin → automagik-genie}/skills/genie-base/assets/workspace/MEMORY.md +0 -0
- /package/{plugin → automagik-genie}/skills/genie-base/assets/workspace/ROLE.md +0 -0
- /package/{plugin → automagik-genie}/skills/genie-base/assets/workspace/SOUL.md +0 -0
- /package/{plugin → automagik-genie}/skills/genie-base/assets/workspace/TOOLS.md +0 -0
- /package/{plugin → automagik-genie}/skills/genie-base/assets/workspace/USER.md +0 -0
- /package/{plugin → automagik-genie}/skills/genie-base/scripts/install-workspace.sh +0 -0
- /package/{plugin → automagik-genie}/skills/genie-base/scripts/sanity-sweep.sh +0 -0
- /package/{plugin → automagik-genie}/skills/genie-blank-init/SKILL.md +0 -0
- /package/{plugin → automagik-genie}/skills/genie-blank-init/assets/BOOTSTRAP.md +0 -0
- /package/{plugin → automagik-genie}/skills/genie-blank-init/assets/IDENTITY.md +0 -0
- /package/{plugin → automagik-genie}/skills/genie-blank-init/assets/SOUL.md +0 -0
- /package/{plugin → automagik-genie}/skills/genie-blank-init/assets/USER.md +0 -0
- /package/{plugin → automagik-genie}/skills/genie-blank-init/scripts/apply-blank-init.sh +0 -0
- /package/{plugin → automagik-genie}/skills/genie-cli-dev/CLAUDE.md +0 -0
- /package/{plugin → automagik-genie}/skills/plan-review/SKILL.md +0 -0
- /package/{plugin → automagik-genie}/skills/review/SKILL.md +0 -0
- /package/{plugin → automagik-genie}/skills/wish/SKILL.md +0 -0
package/README.md
CHANGED
|
@@ -217,9 +217,11 @@ term
|
|
|
217
217
|
├── rm <name> Remove session (--keep-worktree)
|
|
218
218
|
├── read <session> Read output (-n, --grep, --json, -f)
|
|
219
219
|
├── exec <session> <cmd> Run command (async)
|
|
220
|
-
├── send <session> <keys> Send
|
|
220
|
+
├── send <session> <keys> Send keys with Enter (--no-enter for raw)
|
|
221
221
|
├── split <session> <h|v> Split pane (-d, -w)
|
|
222
|
-
├──
|
|
222
|
+
├── info <session> Session info (--json)
|
|
223
|
+
├── watch <session> Watch events in real-time
|
|
224
|
+
├── run <session> <msg> Fire-and-forget with auto-approve
|
|
223
225
|
├── window
|
|
224
226
|
│ ├── new <session> <name>
|
|
225
227
|
│ ├── ls <session> (--json)
|
|
@@ -227,6 +229,9 @@ term
|
|
|
227
229
|
├── pane
|
|
228
230
|
│ ├── ls <session> (--json)
|
|
229
231
|
│ └── rm <pane-id>
|
|
232
|
+
├── orc
|
|
233
|
+
│ ├── start <session> Start Claude with monitoring
|
|
234
|
+
│ └── status <session> Claude state (idle/busy/permission)
|
|
230
235
|
└── hook
|
|
231
236
|
├── set <event> <cmd>
|
|
232
237
|
├── list
|
|
@@ -422,8 +427,8 @@ term ls --json
|
|
|
422
427
|
term read khal-tests --json
|
|
423
428
|
# → {"session":"khal-tests","lines":["$ npm test","PASS src/app.test.ts"]}
|
|
424
429
|
|
|
425
|
-
# Check
|
|
426
|
-
term
|
|
430
|
+
# Check session info
|
|
431
|
+
term info khal-tests --json
|
|
427
432
|
# → {"exists":true,"windows":1,"panes":1}
|
|
428
433
|
```
|
|
429
434
|
|
|
@@ -456,7 +461,7 @@ term exec project-work "npm test" # runs in active pane
|
|
|
456
461
|
|
|
457
462
|
Check if a command finished:
|
|
458
463
|
```bash
|
|
459
|
-
term
|
|
464
|
+
term info my-session --json
|
|
460
465
|
```
|
|
461
466
|
|
|
462
467
|
Look for shell prompt in output to detect completion:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "automagik-genie",
|
|
3
|
-
"version": "0.260202.
|
|
3
|
+
"version": "0.260202.2234",
|
|
4
4
|
"description": "Human-AI partnership for Claude Code. Share a terminal, orchestrate workers, evolve together. Brainstorm ideas, wish them into plans, forge with parallel agents, ship as one team. A coding genie that grows with your project.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Namastex Labs"
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# Post-install hook for automagik-genie
|
|
3
|
+
# Runs smart-install.js to set up dependencies and CLI symlinks
|
|
4
|
+
|
|
5
|
+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
6
|
+
PLUGIN_ROOT="$(dirname "$SCRIPT_DIR")"
|
|
7
|
+
|
|
8
|
+
# Run smart-install.js with CLAUDE_PLUGIN_ROOT set
|
|
9
|
+
export CLAUDE_PLUGIN_ROOT="$PLUGIN_ROOT"
|
|
10
|
+
node "$PLUGIN_ROOT/scripts/smart-install.js"
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "automagik-genie-plugin",
|
|
3
|
+
"version": "0.260202.2234",
|
|
4
|
+
"private": true,
|
|
5
|
+
"description": "Runtime dependencies for automagik-genie bundled CLIs",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"dependencies": {},
|
|
8
|
+
"engines": {
|
|
9
|
+
"node": ">=18.0.0",
|
|
10
|
+
"bun": ">=1.0.0"
|
|
11
|
+
}
|
|
12
|
+
}
|