Pyro's essential agent skill trio for structured AI-assisted development.
Three skills that turn your AI coding agent into a disciplined engineering partner: plan what to build, track what to do next, and research anything — all without leaving your terminal.
| Skill | What It Does | When to Use |
|---|---|---|
| OpenSpec | Spec-driven development — plan before you code | Starting features, brownfield changes, structured planning |
| Beads | Git-backed task graph with dependencies | Long-horizon projects, multi-session work, complex task ordering |
| SearXNG | Self-hosted privacy-respecting web search | When your agent needs to search the web without API keys |
OpenSpec defines what to build (specs, proposals, design, tasks). Beads tracks what to do next (dependency graph, execution state, session memory). SearXNG provides research capability (web search for investigation and planning).
The recommended combo for feature development:
OpenSpec (plan) -> Beads (execute) -> OpenSpec (verify + archive)
- Use OpenSpec to create structured planning artifacts
- Import tasks into Beads with dependencies
- Use
bd readyto work through tasks in correct order - Verify and archive when done
For small features (<5 tasks), OpenSpec alone is sufficient. Add Beads when work gets complex or spans multiple sessions.
/plugin marketplace add pyros-projects/limitless
/plugin install magic-three@limitless
Each skill is a standalone SKILL.md that can be loaded by your AI coding tool:
- Claude Code: Copy to
.claude/skills/ - Cursor: Reference in
.cursor/rules/ - Other tools: Point your agent at the relevant
SKILL.mdfile
Each skill documents how to install the underlying tool:
- OpenSpec:
npm install -g @fission-ai/openspec@latest - Beads:
brew install beads(macOS) ornpm install -g @beads/bd - SearXNG:
docker run -d --name searxng --restart always -p 8888:8080 searxng/searxng:latest
magic-three/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata
├── README.md # This file
└── skills/
├── openspec/
│ ├── README.md # Detailed guide for humans
│ └── SKILL.md # Agent-readable skill file
├── beads/
│ ├── README.md # Detailed guide for humans
│ └── SKILL.md # Agent-readable skill file
└── searxng/
├── README.md # Detailed guide for humans
└── SKILL.md # Agent-readable skill file
MIT