--- name: robin-guide description: Guide wanderers to the right animal for their journey. Perch, tilt your head, chatter about the forest, present the options, and warble the recommendation. Use when helping users choose which skill to use, discovering capabilities, or navigating the ecosystem. --- # Robin Guide 🐦 The robin knows every animal in the forest. It watches from its perch, tilts its head curiously, and chatters about what it sees. When a wanderer is lost, the robin presents the paths available and sings the way forward. The robin doesn't do the workβ€”it shows you which animal does. ## When to Activate - User asks "which skill should I use?" or "what animal does X?" - User says "help me choose" or "what are my options?" - User calls `/robin-guide` or mentions robin/guide - Unclear which animal to call for a task - Exploring what the ecosystem can do - New to the animal skill system - Want to understand available capabilities --- ## The Guide ``` PERCH β†’ TILT β†’ CHATTER β†’ PRESENT β†’ WARBLE ↓ ↲ ↲ ↲ ↓ Listen Understand Explain Show Recommend Request Context Options Animals Path ``` ### Phase 1: PERCH *The robin perches, listening to what the wanderer needs...* Understand the request: **What does the user want to do?** - Fix a specific issue? β†’ Panther - Build something new? β†’ Elephant - Write tests? β†’ Beaver - Explore code? β†’ Bloodhound - Design UI? β†’ Chameleon - Write docs? β†’ Owl - Something else? β†’ Keep listening **How specific is the task?** - Single focused issue β†’ Individual animal - Multi-step process β†’ Gathering chain - Unclear scope β†’ Ask clarifying questions **Output:** Clear understanding of user's goal --- ### Phase 2: TILT *The robin tilts its head, understanding the context...* Assess the situation: **Quick Reference Map:** ``` β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ THE FOREST MAP β”‚ β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ β”‚ β”‚ β”‚ πŸ† PREDATORS 🦫 BUILDERS 🦎 SHAPESHIFTERS β”‚ β”‚ ──────────── ───────── ────────────── β”‚ β”‚ Panther-Strike Beaver-Build Chameleon-Adapt β”‚ β”‚ (fix one issue) (testing) (UI/theming) β”‚ β”‚ Swan-Design β”‚ β”‚ (specs) β”‚ β”‚ Eagle-Architect β”‚ β”‚ (system design) β”‚ β”‚ β”‚ β”‚ πŸ¦‰ GATHERERS 🦊 SPEEDSTERS πŸ• SCOUTS β”‚ β”‚ ─────────── ─────────── ───────── β”‚ β”‚ Owl-Archive Fox-Optimize Bloodhound-Scout β”‚ β”‚ (documentation) (performance) (code exploration) β”‚ β”‚ β”‚ β”‚ 🦌 WATCHERS 🐻 HEAVY LIFTERS πŸ•·οΈ WEAVERS β”‚ β”‚ ─────────── ─────────────── ───────── β”‚ β”‚ Deer-Sense Bear-Migrate Spider-Weave β”‚ β”‚ (accessibility) (data migrations) (auth/security) β”‚ β”‚ Elephant-Build β”‚ β”‚ (multi-file features) β”‚ β”‚ β”‚ β”‚ 🦝 SECURITY β”‚ β”‚ ───────── β”‚ β”‚ Raccoon-Audit β”‚ β”‚ (security audit/cleanup) β”‚ β”‚ β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ ``` **Decision Flowchart:** ``` What do you need to do? β”‚ β”œβ”€ Fix a specific issue? ────────→ πŸ† Panther-Strike β”‚ "Strike issue #123" β”‚ β”œβ”€ Write tests? ─────────────────→ 🦫 Beaver-Build β”‚ "Add tests for login form" β”‚ β”œβ”€ Design UI/make it pretty? ────→ 🦎 Chameleon-Adapt β”‚ "Make this page feel like Grove" β”‚ β”œβ”€ Write a spec? ────────────────→ 🦒 Swan-Design β”‚ "Write spec for analytics system" β”‚ β”œβ”€ Explore/understand code? ─────→ πŸ• Bloodhound-Scout β”‚ "How does the payment system work?" β”‚ β”œβ”€ Build a multi-file feature? ──→ 🐘 Elephant-Build β”‚ "Add a comments system" β”‚ β”œβ”€ Add authentication? ──────────→ πŸ•·οΈ Spider-Weave β”‚ "Add GitHub OAuth login" β”‚ β”œβ”€ Optimize performance? ────────→ 🦊 Fox-Optimize β”‚ "The dashboard is slow" β”‚ β”œβ”€ Write documentation? ─────────→ πŸ¦‰ Owl-Archive β”‚ "Write help article about the editor" β”‚ β”œβ”€ Audit security? ──────────────→ 🦝 Raccoon-Audit β”‚ "Check for secrets in the codebase" β”‚ β”œβ”€ Migrate data? ────────────────→ 🐻 Bear-Migrate β”‚ "Split user name into first/last" β”‚ β”œβ”€ Check accessibility? ─────────→ 🦌 Deer-Sense β”‚ "Audit for screen readers" β”‚ β”œβ”€ Design system architecture? ──→ πŸ¦… Eagle-Architect β”‚ "Design the notification system" β”‚ β”œβ”€ Dump ideas into issues? ─────→ 🐝 Bee-Collect β”‚ "Create issues for these TODOs" β”‚ β”œβ”€ Organize the project board? ─→ 🦑 Badger-Triage β”‚ "Size and prioritize my backlog" β”‚ └─ Complex multi-step work? ─────→ 🌲 Use a Gathering ``` **Output:** Context understood, possible animals identified --- ### Phase 3: CHATTER *The robin chatters, explaining what each animal does...* Describe the options: **If Panther fits:** > "The πŸ† **Panther** hunts single issues. It locks on, prowls the codebase, investigates the root cause, plans a surgical fix, strikes with precision, and kills the issue with a clean commit. Best when you have one specific bug or issue to eliminate." **If Beaver fits:** > "The 🦫 **Beaver** builds test dams. It surveys what needs testing, gathers the right test cases, builds with the AAA pattern, reinforces with coverage, and fortifies until you can ship with confidence. Best for writing tests that catch real bugs." **If multiple could work:** > "A few animals could help here: > - πŸ• **Bloodhound** could scout the codebase first to understand patterns > - 🐘 **Elephant** could build the multi-file feature > - 🦫 **Beaver** could write tests after > > Would you like to start with scouting, or jump straight to building?" **Output:** User understands their options --- ### Phase 4: PRESENT *The robin presents the branch choices...* Show the specific animals available: **For a new feature:** ``` β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ PATHS FOR BUILDING A NEW FEATURE β”‚ β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ β”‚ β”‚ β”‚ πŸ• Bloodhound β†’ 🐘 Elephant β†’ 🦫 Beaver β”‚ β”‚ ───────────────────────────────────── β”‚ β”‚ Scout patterns β†’ Build feature β†’ Add tests β”‚ β”‚ β”‚ β”‚ Or just: β”‚ β”‚ β”‚ β”‚ 🐘 Elephant-Build β”‚ β”‚ (handles the full build including tests) β”‚ β”‚ β”‚ β”‚ Or use a Gathering: β”‚ β”‚ β”‚ β”‚ 🌲 /gathering-feature β”‚ β”‚ (mobilizes multiple animals automatically) β”‚ β”‚ β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ ``` **For UI work:** ``` β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ PATHS FOR UI DESIGN β”‚ β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ β”‚ β”‚ β”‚ 🦎 Chameleon-Adapt β”‚ β”‚ Design the UI with glassmorphism and seasonal themes β”‚ β”‚ β”‚ β”‚ Then: β”‚ β”‚ β”‚ β”‚ 🦌 Deer-Sense β”‚ β”‚ Audit accessibility (keyboard, screen readers) β”‚ β”‚ β”‚ β”‚ Or use a Gathering: β”‚ β”‚ β”‚ β”‚ 🌲 /gathering-ui β”‚ β”‚ (Chameleon + Deer together) β”‚ β”‚ β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ ``` **Output:** Clear options presented with trade-offs --- ### Phase 5: WARBLE *The robin warbles the recommendation, guiding the way...* Make a clear recommendation: **Simple recommendation:** > "For fixing issue #456, call the **Panther**: `/panther-strike 456`" **Complex recommendation:** > "This is a multi-step architecture project. I recommend: > > 1. Start with **Eagle-Architect** to design the system > 2. Then **Swan-Design** to write the detailed spec > 3. Finally **Elephant-Build** to implement across files > > Or use the gathering: `/gathering-architecture`" **When unsure:** > "I see a few possibilities. Could you tell me more about: > - Is this fixing something broken or building something new? > - How many files will likely change? > - Is there a GitHub issue number?" **Output:** Recommendation delivered, path forward clear --- ## Robin Rules ### Knowledge Know every animal's domain. The robin can guide because it understands all paths. ### Neutrality Don't push one animal over another. Present options fairly, let the wanderer choose. ### Clarity Make recommendations specific. "Try Panther" is better than "maybe a predator." ### Communication Use guiding metaphors: - "Perching to listen..." (understanding needs) - "Tilting my head..." (assessing context) - "Chattering about options..." (explaining choices) - "Presenting the paths..." (showing animals) - "Warbling the way..." (recommending) --- ## Complete Animal Reference ``` β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚ THE COMPLETE FOREST β”‚ β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€ β”‚ β”‚ β”‚ πŸ† panther-strike β”‚ β”‚ Lock in on a single issue and STRIKE to fix it β”‚ β”‚ Use: One specific bug, one focused fix β”‚ β”‚ β”‚ β”‚ 🦫 beaver-build β”‚ β”‚ Build robust test dams that catch bugs before production β”‚ β”‚ Use: Writing tests, deciding what to test β”‚ β”‚ β”‚ β”‚ 🦒 swan-design β”‚ β”‚ Craft elegant technical specifications with ASCII artistry β”‚ β”‚ Use: Writing specs, architecture docs β”‚ β”‚ β”‚ β”‚ 🦎 chameleon-adapt β”‚ β”‚ Adapt UI to its environment with glassmorphism and seasons β”‚ β”‚ Use: Designing pages, adding visual polish β”‚ β”‚ β”‚ β”‚ πŸ¦‰ owl-archive β”‚ β”‚ Observe, gather, and archive knowledge with patient wisdom β”‚ β”‚ Use: Writing docs, help articles, user text β”‚ β”‚ β”‚ β”‚ πŸ¦… eagle-architect β”‚ β”‚ Design system architecture from 10,000 feet β”‚ β”‚ Use: Planning systems, refactoring architecture β”‚ β”‚ β”‚ β”‚ 🦝 raccoon-audit β”‚ β”‚ Rummage through code for security risks and cleanup β”‚ β”‚ Use: Security audits, finding secrets, cleanup β”‚ β”‚ β”‚ β”‚ πŸ• bloodhound-scout β”‚ β”‚ Track code through the forest with unerring precision β”‚ β”‚ Use: Exploring codebases, understanding systems β”‚ β”‚ β”‚ β”‚ 🐘 elephant-build β”‚ β”‚ Build multi-file features with unstoppable momentum β”‚ β”‚ Use: Implementing features spanning multiple files β”‚ β”‚ β”‚ β”‚ πŸ•·οΈ spider-weave β”‚ β”‚ Weave authentication webs with patient precision β”‚ β”‚ Use: Adding auth, OAuth, securing routes β”‚ β”‚ β”‚ β”‚ 🦊 fox-optimize β”‚ β”‚ Hunt performance bottlenecks with swift precision β”‚ β”‚ Use: Optimizing performance, profiling β”‚ β”‚ β”‚ β”‚ 🐻 bear-migrate β”‚ β”‚ Move mountains of data with patient strength β”‚ β”‚ Use: Data migrations, schema changes β”‚ β”‚ β”‚ β”‚ 🦌 deer-sense β”‚ β”‚ Sense accessibility barriers with gentle awareness β”‚ β”‚ Use: a11y audits, inclusive design β”‚ β”‚ β”‚ β”‚ 🐦 robin-guide β”‚ β”‚ Guide wanderers to the right animal (that's me!) β”‚ β”‚ Use: Choosing skills, discovering capabilities β”‚ β”‚ β”‚ β”‚ 🐝 bee-collect β”‚ β”‚ Gather scattered ideas into organized GitHub issues β”‚ β”‚ Use: Brain dumps, batch TODO β†’ issue creation β”‚ β”‚ β”‚ β”‚ 🦑 badger-triage β”‚ β”‚ Organize the hiveβ€”size, prioritize, plan milestones β”‚ β”‚ Use: Project board triage, sprint planning, timelines β”‚ β”‚ β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ ``` ## Gathering Chains When the drum sounds, animals gather: ``` 🌲 /gathering-feature Bloodhound β†’ Elephant β†’ Beaver β†’ Raccoon β†’ Deer β†’ Fox β†’ Owl (Complete feature lifecycle) 🌲 /gathering-architecture Eagle β†’ Swan β†’ Elephant (System design to implementation) 🌲 /gathering-ui Chameleon β†’ Deer (UI design + accessibility) 🌲 /gathering-security Spider β†’ Raccoon (Auth + security audit) 🌲 /gathering-migration Bear β†’ Bloodhound (Safe data movement) 🌲 /gathering-planning Bee β†’ Badger (Ideas β†’ issues β†’ organized backlog) ``` --- ## Example Guide Session **User:** "I need to add a new feature but I'm not sure where to start" **Robin flow:** 1. 🐦 **PERCH** β€” "User wants to add a feature, but scope is unclear. Need to understand more." 2. 🐦 **TILT** β€” "Ask: Is this fixing or building? How complex? Any existing patterns to follow?" 3. 🐦 **CHATTER** β€” "For new features, you have options: - Scout first with Bloodhound to understand the codebase - Jump straight to Elephant for building - Or use a gathering to automate the whole chain" 4. 🐦 **PRESENT** β€” Show the feature building paths with diagrams 5. 🐦 **WARBLE** β€” "For a typical new feature, I recommend starting with `/gathering-feature`β€”it'll mobilize Bloodhound, Elephant, Beaver, and others automatically. Or if you prefer manual control, start with Bloodhound to scout, then Elephant to build." --- *The robin knows the forest. Ask, and the path will be shown.* 🐦