@automagik/genie 3.260321.1 → 3.260322.2

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.
Files changed (49) hide show
  1. package/.claude-plugin/marketplace.json +1 -1
  2. package/.genie/state/v3-fixes-release.json +26 -0
  3. package/dist/genie.js +142 -526
  4. package/git-cliff/CHANGELOG.md +7 -0
  5. package/openclaw.plugin.json +1 -1
  6. package/package.json +7 -5
  7. package/plugins/genie/.claude-plugin/plugin.json +1 -1
  8. package/plugins/genie/package.json +1 -1
  9. package/scripts/tmux/genie.tmux.conf +59 -43
  10. package/src/genie-commands/__tests__/session.test.ts +4 -4
  11. package/src/genie-commands/session.ts +71 -70
  12. package/src/genie.ts +0 -24
  13. package/src/hooks/handlers/auto-spawn.ts +1 -1
  14. package/src/lib/agent-registry.ts +71 -8
  15. package/src/lib/protocol-router-session.test.ts +631 -0
  16. package/src/lib/protocol-router-spawn.ts +40 -152
  17. package/src/lib/protocol-router.ts +206 -49
  18. package/src/lib/provider-adapters.ts +2 -2
  19. package/src/lib/spawn-command.test.ts +2 -2
  20. package/src/lib/spawn-command.ts +2 -2
  21. package/src/lib/team-lead-command.ts +2 -2
  22. package/src/lib/team-manager.ts +0 -8
  23. package/src/lib/tmux.ts +12 -27
  24. package/src/lib/wish-state.test.ts +0 -74
  25. package/src/lib/wish-state.ts +0 -27
  26. package/src/term-commands/agents.ts +26 -301
  27. package/src/term-commands/dispatch.ts +63 -71
  28. package/src/term-commands/msg.test.ts +2 -2
  29. package/src/term-commands/state.ts +2 -140
  30. package/src/term-commands/team.ts +27 -67
  31. package/src/__tests__/resume.test.ts +0 -285
  32. package/src/db/migrations/001_initial.sql +0 -131
  33. package/src/db/migrations/002_scheduler_extensions.sql +0 -33
  34. package/src/db/migrations/003_machine_snapshots.sql +0 -15
  35. package/src/lib/cron.test.ts +0 -113
  36. package/src/lib/cron.ts +0 -207
  37. package/src/lib/db-migrations.ts +0 -156
  38. package/src/lib/db.ts +0 -205
  39. package/src/lib/run-spec.test.ts +0 -177
  40. package/src/lib/run-spec.ts +0 -178
  41. package/src/lib/scheduler-daemon.test.ts +0 -1264
  42. package/src/lib/scheduler-daemon.ts +0 -1221
  43. package/src/term-commands/daemon.test.ts +0 -110
  44. package/src/term-commands/daemon.ts +0 -514
  45. package/src/term-commands/db.ts +0 -182
  46. package/src/term-commands/schedule.test.ts +0 -93
  47. package/src/term-commands/schedule.ts +0 -545
  48. package/src/term-commands/state.test.ts +0 -275
  49. package/src/types/pgserve.d.ts +0 -28
@@ -10,7 +10,7 @@
10
10
  "plugins": [
11
11
  {
12
12
  "name": "genie",
13
- "version": "3.260321.1",
13
+ "version": "3.260322.1",
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
  }
@@ -0,0 +1,26 @@
1
+ {
2
+ "wish": "v3-fixes-release",
3
+ "groups": {
4
+ "1": {
5
+ "status": "done",
6
+ "assignee": "engineer",
7
+ "dependsOn": [],
8
+ "startedAt": "2026-03-22T18:21:17.261Z",
9
+ "completedAt": "2026-03-22T18:31:29.024Z"
10
+ },
11
+ "2": {
12
+ "status": "ready",
13
+ "dependsOn": [
14
+ "1"
15
+ ]
16
+ },
17
+ "3": {
18
+ "status": "blocked",
19
+ "dependsOn": [
20
+ "2"
21
+ ]
22
+ }
23
+ },
24
+ "createdAt": "2026-03-22T18:21:17.256Z",
25
+ "updatedAt": "2026-03-22T18:31:29.024Z"
26
+ }