LLM-powered epic workflows for Claude Code. Like Ralph, but smarter.
npx claudepluginhub fractalswift/llisaLLM-powered epic workflows. Spec, research, plan, then execute with fresh sub-agents per phase. Like Ralph, but smarter.

LLM-powered epic workflows for OpenCode and Claude Code. Like the Ralph Wiggum pattern, but smarter.
Latest version: 1.0.0 - Fresh agent architecture with verification!
The Ralph Wiggum pattern is a simple bash loop that keeps feeding prompts to an AI agent until completion. It works, but:
Lisa plans before she acts:
One command to install Lisa in your project:
npx llisa --opencode
Or with Bun:
bunx llisa --opencode
This creates an opencode.json file with Lisa configured. The plugin will be automatically downloaded by OpenCode when you start it.
Requires OpenCode 1.0+.
To use Lisa in all your projects without installing per-project:
npx llisa --opencode --global
This installs to ~/.config/opencode/ and registers the plugin in your global OpenCode config.
Add this repo as a marketplace, then install the plugin:
/plugin marketplace add fractalswift/llisa
/plugin install lisa@llisa
Or for project-level install (committed to the repo, shared with teammates):
/plugin install lisa@llisa --scope project
Requires Claude Code 1.0.33+ and jq (brew install jq / apt install jq).
/lisa-create-epic <name> - Create new epic (interactive spec)
/lisa-list-epics - List all epics with status
/lisa-epic-status <name> - Show detailed epic status
/lisa-continue <name> - Resume with interactive checkpoints
/lisa-yolo <name> - Resume in full auto mode
/lisa-help - Show help menu
/lisa:create-epic <name> - Create new epic (interactive spec)
/lisa:list-epics - List all epics with status
/lisa:epic-status <name> - Show detailed epic status
/lisa:continue <name> - Resume with interactive checkpoints
/lisa:yolo <name> [max-iterations] - Resume in full auto mode
/lisa:help - Show help menu
Examples:
/lisa:create-epic initial-setup
/lisa:list-epics
/lisa:continue initial-setup
/lisa:yolo auth-system
/lisa:yolo auth-system 50 ← limit to 50 yolo iterations
Epics are portable between OpenCode and Claude Code — the .lisa/ file format is identical on both platforms.
The spec is the single most important factor in epic quality. Lisa will do exactly what you specify — vague specs produce vague results.
Acceptance criteria should be verifiable:
✓ Users can log in with email and password, receiving a JWT on success
✗ Auth works well
Explicitly list out-of-scope items — prevents the agent from gold-plating or going too wide:
### Out of Scope
- OAuth / social login
- Password reset flow
- Email verification
Mention your test setup in Technical Constraints — if you have tests, the agent will run them and use failures as feedback:
## Technical Constraints
- Project uses Jest; all new code must have tests passing (`npm test`)
- Follow existing Express middleware pattern in src/middleware/
Keep epics focused — aim for work completable in 1-4 hours of agent time. Split larger features into multiple epics:
✓ /lisa-create-epic auth-login (login flow only)
✓ /lisa-create-epic auth-register (registration flow, separate epic)
✗ /lisa-create-epic auth (too broad)
Concrete constraints beat vague ones:
✓ Use the existing UserRepository in src/db/user.ts
✗ Follow existing patterns
Lisa breaks large features into phases:
Each phase uses a fresh agent to prevent context pollution. On OpenCode, custom tools verify completion deterministically. On Claude Code, agents verify by reading files directly — same outcome, no custom tools needed.