All of FutsuAgents & Skills
Agents you can version.
Futsu agents and skills are just files in .claude/ — readable, reviewable, and committed alongside the code they operate on.
Filesystem-native
Drop a file, get an agent.
Agents and skills are sourced straight from .claude/{agents,skills}. No hidden registry, no dashboard — add a markdown file and it shows up on the canvas.
- Sourced from .claude/{agents,skills}
- No proprietary store or lock-in
- Reusable across every project
.claude/
├─ agents/
│ ├─ architect.md
│ ├─ reviewer.md
│ └─ debugger.md
└─ skills/
├─ deep-research/
└─ design-system/
✓ loaded 3 agents · 2 skills
Reviewable
Personas as plain markdown.
Each agent is a markdown file with frontmatter — model, tools, and the system persona. Diff it in a PR, review it like any other code, and roll it back if it drifts.
- Frontmatter: model, tools, persona
- Reviewed in pull requests
- Skills attach extra capabilities on demand
---
name: reviewer
model: claude-opus-4-8
tools: [Read, Grep, Bash]
---
You are a meticulous code reviewer.
Gate on correctness, then suggest…