@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.
|
|
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
|
-
|
|
41
|
+
The wizard handles everything: project scaffold, identity, first wish, execution, and review.
|
|
44
42
|
|
|
45
|
-
##
|
|
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
|
-
##
|
|
53
|
+
## Features
|
|
56
54
|
|
|
57
|
-
|
|
58
|
-
- **
|
|
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
|
-
|
|
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
|
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "genie",
|
|
3
|
-
"version": "4.260326.
|
|
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"
|