@automagik/genie 4.260326.1 → 4.260326.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.
@@ -10,7 +10,7 @@
10
10
  "plugins": [
11
11
  {
12
12
  "name": "genie",
13
- "version": "4.260326.1",
13
+ "version": "4.260326.2",
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/README.md CHANGED
@@ -32,17 +32,15 @@ Genie is an AI orchestration CLI that turns vague ideas into shipped PRs. You de
32
32
 
33
33
  **Prerequisites:** curl, bash, git (pre-installed on macOS/Linux/WSL)
34
34
 
35
- Run these commands in sequence to install Genie and initialize your workspace:
36
-
37
35
  ```bash
38
36
  curl -fsSL https://raw.githubusercontent.com/automagik-dev/genie/main/install.sh | bash
39
37
  genie
40
38
  /wizard
41
39
  ```
42
40
 
43
- That's it. The wizard handles everything: project scaffold, identity, first wish, execution, and review. In ~5 minutes, you'll have your workspace scaffolded and ready to execute your first wish.
41
+ The wizard handles everything: project scaffold, identity, first wish, execution, and review.
44
42
 
45
- ## What Happens Next
43
+ ## How It Works
46
44
 
47
45
  ```
48
46
  You describe an idea
@@ -52,14 +50,51 @@ That's it. The wizard handles everything: project scaffold, identity, first wish
52
50
  └─ /review ── Automated severity-gated review. You approve the PR.
53
51
  ```
54
52
 
55
- ## Why Genie?
53
+ ## Features
56
54
 
57
- - **No re-explaining** — Genie captures context once. Every agent inherits it.
58
- - **Parallel execution** — Multiple agents work simultaneously in isolated worktrees.
55
+ ### Orchestration
56
+ - **Wish pipeline** — Brainstorm, plan, execute, review, ship. One continuous flow.
57
+ - **Parallel agents** — Multiple agents work simultaneously in isolated worktrees.
59
58
  - **Automated review** — Severity-tagged gaps. Nothing ships with CRITICAL issues.
59
+ - **10-critic council** — 10 specialist perspectives critique your design before you commit.
60
60
  - **Overnight mode** — Queue wishes before bed. Wake up to reviewed PRs.
61
- - **10-critic council** — 10 specialists critique your design before you commit.
61
+
62
+ ### Task Management
63
+ - **Boards** — Kanban-style pipelines with columns, gates, and WIP limits. Create from templates or build your own.
64
+ - **Tasks** — Full lifecycle: create, assign, move through stages (`draft` → `brainstorm` → `wish` → `build` → `review` → `qa` → `ship`), block/unblock, add dependencies.
65
+ - **Projects** — Named task boards that scope work to a specific initiative.
66
+ - **Tags, types, releases** — Organize tasks with custom tags, define task types with stage pipelines, group work into releases.
67
+
68
+ ### Observability
69
+ - **Events** — Audit log with error aggregation, cost breakdown, tool analytics, and per-entity timelines.
70
+ - **Metrics** — Machine snapshots, heartbeat history, per-agent resource usage.
71
+ - **Sessions** — List, replay, and full-text search across Claude Code session transcripts.
72
+ - **Unified log** — `genie log --follow` streams transcript, messages, tool calls, and state changes in one feed.
73
+
74
+ ### Infrastructure
75
+ - **Postgres-backed** — All state in PostgreSQL (pgserve). Tasks, messages, events, metrics — queryable with `genie db query`.
76
+ - **Scheduling** — Cron-based triggers with a systemd daemon. Heartbeat collection and orphan reconciliation built in.
77
+ - **Export/Import** — Full backup and restore across boards, tasks, tags, projects, schedules, agents, and conversations.
78
+ - **PG messaging** — Direct messages, broadcasts, threaded conversations, and inbox — all persisted and searchable.
79
+
80
+ ### Developer Experience
81
+ - **14 built-in skills** — `/brainstorm`, `/wish`, `/work`, `/review`, `/council`, `/dream`, `/trace`, `/fix`, `/report`, `/refine`, `/learn`, `/docs`, `/genie`, `/wizard`.
82
+ - **BYOA** — Bring your own agent. Works with Claude, Codex, or any OpenAI-compatible provider.
62
83
  - **Portable context** — Identity, skills, memory — markdown files you own, git-versioned.
84
+ - **QA system** — Self-testing specs with `genie qa run`. Validates CLI correctness continuously.
85
+
86
+ ### CLI at a Glance
87
+
88
+ 46 commands across agent lifecycle, task management, boards, observability, messaging, and infrastructure. [Full CLI reference →](https://docs.automagik.dev/genie/cli/session)
89
+
90
+ ```bash
91
+ genie spawn engineer --model sonnet # Spawn an agent
92
+ genie task create "Add dark mode" # Create a task
93
+ genie board show # View your Kanban board
94
+ genie events costs --last 24h # Check API spend
95
+ genie log --follow --team my-team # Stream team activity
96
+ genie export all -o backup.json # Full backup
97
+ ```
63
98
 
64
99
  ---
65
100
 
@@ -2,7 +2,7 @@
2
2
  "id": "genie",
3
3
  "name": "Genie",
4
4
  "description": "Skills, agents, and hooks for the Genie CLI terminal orchestration toolkit",
5
- "version": "4.260326.1",
5
+ "version": "4.260326.2",
6
6
  "configSchema": {
7
7
  "type": "object",
8
8
  "additionalProperties": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automagik/genie",
3
- "version": "4.260326.1",
3
+ "version": "4.260326.2",
4
4
  "description": "Collaborative terminal toolkit for human + AI workflows",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "genie",
3
- "version": "4.260326.1",
3
+ "version": "4.260326.2",
4
4
  "description": "Human-AI partnership for Claude Code. Share a terminal, orchestrate workers, evolve together. Brainstorm ideas, turn them into wishes, execute with /work, validate with /review, and ship as one team.",
5
5
  "author": {
6
6
  "name": "Namastex Labs"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "genie-plugin",
3
- "version": "4.260326.1",
3
+ "version": "4.260326.2",
4
4
  "private": true,
5
5
  "description": "Runtime dependencies for genie bundled CLIs",
6
6
  "type": "module",