Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.automagik.dev/llms.txt

Use this file to discover all available pages before exploring further.

Every genie job moves through five phases. You can jump in at any phase; the skills that implement each phase are listed below.

The five phases

Plan

Shape intent into a scoped wish with acceptance criteria. Driven by /wish (and /brainstorm when the idea is still fuzzy).

Review

Gate the plan (and later the PR) against criteria before work starts. Driven by /review.

Work

Execute the approved plan. Driven by /work; FIX-FIRST gaps flow through /fix.

Ship

Final /review pass on the PR, then merge. The same skill that gated the plan gates the shipped change.

Monitor

Watch the work land, triage escalations, and orchestrate the next loop. Driven by /pm.

A one-shot lifecycle

1

Start with an idea

Open /brainstorm if the idea is still fuzzy, or jump straight to /wish if you already know the shape. New to the loop? Run /wizard — it walks you through this sequence end-to-end.
2

Formalize the plan

/wish produces .genie/wishes/<slug>/WISH.md with IN/OUT scope, acceptance criteria, and execution groups. This is the artifact every downstream phase reads from.
3

Gate the plan

/review inspects the wish and returns SHIP, FIX-FIRST, or BLOCKED. A SHIP verdict authorizes execution.
4

Execute the work

/work orchestrates subagents per execution group, runs validation, and loops on failures. FIX-FIRST findings from review are closed by /fix before work resumes.
5

Ship the PR

/review runs again against the pull request. Merge only on SHIP.
6

Monitor and iterate

/pm tracks progress, surfaces blockers, and queues the next wish. The loop repeats.

Entry points

I want to…Start at…Skill
Explore a fuzzy ideaPlan/brainstorm
Formalize a planPlan/wish
Gate a plan / PRReview/review
Execute an approved wishWork/work
Close FIX-FIRST gapsWork/fix
Be walked through the whole loopall/wizard
Orchestrate a backlogall/pm

What’s next

Walk through the loop

The 15-minute guided walkthrough uses this loop end-to-end — install, smoke test, first wish, first PR, first monitor.

Understand wishes

Every loop revolves around a wish. Learn the primitive that all five phases operate on.