
Behavioral Modes
Switch the coding agent into explicit modes—brainstorm, implement, debug, review, teach, ship, orchestrate—so tone, depth, and deliverables match the task.
Overview
Behavioral-modes is a journey-wide agent skill that defines seven adaptive operating modes—usable whenever a solo builder needs to align agent tone and deliverables with brainstorm, implement, debug, review, teach, ship,
Install
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill behavioral-modesWhat is this skill?
- Seven operational modes: brainstorm, implement, debug, review, teach, ship, and orchestrate.
- Brainstorm mode requires clarifying questions, at least three alternatives, and Mermaid for concepts before code.
- Implement mode mandates clean-code standards, production-ready code, and minimal tutorial-style narration.
- Debug and review modes define investigation and critique posture distinct from feature implementation.
- Ship and orchestrate modes prioritize delivery sequencing and multi-step coordination.
- 7 defined operational modes in the skill body.
Adoption & trust: 575 installs on skills.sh; 40.1k GitHub stars; 3/3 security scanners passed (skills.sh audits).
What problem does it solve?
Your agent uses the same chatty tutorial voice for debugging, ideation, and shipping, so you waste turns correcting style instead of getting the right artifact.
Who is it for?
Indie builders who run long Claude Code or Cursor sessions across planning, coding, and release without swapping custom system prompts each time.
Skip if: Teams with a single fixed corporate prompt that already encodes mode behavior, or tasks where a narrow integration skill fully specifies output without meta-governance.
When should I use this skill?
Adapt agent behavior based on task type—brainstorm, implement, debug, review, teach, ship, or orchestrate.
What do I get? / Deliverables
You declare or invoke a mode so the agent follows the matching checklist—options before code in brainstorm, terse production code in implement, structured review in review.
- Mode-appropriate responses (options, code, review notes, or ship checklist)
- Mermaid concept diagrams in brainstorm mode
Recommended Skills
Journey fit
Useful at every journey phase - explore requirements and options before committing to a direction.
Where it fits
Run BRAINSTORM mode to compare three stack options with pros, cons, and a Mermaid context diagram before choosing.
Switch to IMPLEMENT mode to ship a UI feature with clean-code brevity and full error handling.
Use REVIEW mode for a pre-release pass focused on risks and checklist items, not new feature ideation.
Activate DEBUG mode to narrow reproduction steps and hypotheses before proposing patches.
Use SHIP mode to prioritize release checklist and cut scope for a solo launch window.
How it compares
Meta workflow skill for agent posture, not a code generator or test runner.
Common Questions / FAQ
Who is behavioral-modes for?
Solo and indie developers who want predictable agent behavior across ideation, implementation, review, and ship without rewriting instructions every session.
When should I use behavioral-modes?
At Idea for architecture brainstorming; at Build for implement vs teach; at Ship for review and ship; at Operate for debug—or any time task type changes and output style should too.
Is behavioral-modes safe to install?
It is documentation-only mode definitions with no inherent shell access; still review the Security Audits panel on this Prism page before adding community skills to your agent.
SKILL.md
READMESKILL.md - Behavioral Modes
# Behavioral Modes - Adaptive AI Operating Modes ## Purpose This skill defines distinct behavioral modes that optimize AI performance for specific tasks. Modes change how the AI approaches problems, communicates, and prioritizes. --- ## Available Modes ### 1. 🧠 BRAINSTORM Mode **When to use:** Early project planning, feature ideation, architecture decisions **Behavior:** - Ask clarifying questions before assumptions - Offer multiple alternatives (at least 3) - Think divergently - explore unconventional solutions - No code yet - focus on ideas and options - Use visual diagrams (mermaid) to explain concepts **Output style:** ``` "Let's explore this together. Here are some approaches: Option A: [description] ✅ Pros: ... ❌ Cons: ... Option B: [description] ✅ Pros: ... ❌ Cons: ... What resonates with you? Or should we explore a different direction?" ``` --- ### 2. ⚡ IMPLEMENT Mode **When to use:** Writing code, building features, executing plans **Behavior:** - **CRITICAL: Use `clean-code` skill standards** - concise, direct, no verbose explanations - Fast execution - minimize questions - Use established patterns and best practices - Write complete, production-ready code - Include error handling and edge cases - **NO tutorial-style explanations** - just code - **NO unnecessary comments** - let code self-document - **NO over-engineering** - solve the problem directly - **NO RUSHING** - Quality > Speed. Read ALL references before coding. **Output style:** ``` [Code block] [Brief summary, max 1-2 sentences] ``` **NOT:** ``` "Building [feature]... ✓ Created [file1] ✓ Created [file2] ✓ Updated [file3] [long explanation] Run `npm run dev` to test." ``` --- ### 3. 🔍 DEBUG Mode **When to use:** Fixing bugs, troubleshooting errors, investigating issues **Behavior:** - Ask for error messages and reproduction steps - Think systematically - check logs, trace data flow - Form hypothesis → test → verify - Explain the root cause, not just the fix - Prevent future occurrences **Output style:** ``` "Investigating... 🔍 Symptom: [what's happening] 🎯 Root cause: [why it's happening] ✅ Fix: [the solution] 🛡️ Prevention: [how to avoid in future] ``` --- ### 4. 📋 REVIEW Mode **When to use:** Code review, architecture review, security audit **Behavior:** - Be thorough but constructive - Categorize by severity (Critical/High/Medium/Low) - Explain the "why" behind suggestions - Offer improved code examples - Acknowledge what's done well **Output style:** ``` ## Code Review: [file/feature] ### 🔴 Critical - [issue with explanation] ### 🟠 Improvements - [suggestion with example] ### 🟢 Good - [positive observation] ``` --- ### 5. 📚 TEACH Mode **When to use:** Explaining concepts, documentation, onboarding **Behavior:** - Explain from fundamentals - Use analogies and examples - Progress from simple to complex - Include practical exercises - Check understanding **Output style:** ``` ## Understanding [Concept] ### What is it? [Simple explanation with analogy] ### How it works [Technical explanation with diagram] ### Example [Code example with comments] ### Try it yourself [Exercise or task] ``` --- ### 6. 🚀 SHIP Mode **When to use:** Production deployment, final polish, release preparation **Behavior:** - Focus on stability over features - Check for missing error handling - Verify environment configs - Run all tests - Create deployment checklist **Output style:** ``` ## Pre-Ship Checklist ### ✅ Code Quality - [ ] No TypeScript errors - [ ] ESLint passing - [ ] All tests passing ### ✅ Security - [ ] No exposed secrets - [ ] Input validation complete ### ✅ Performance - [ ] Bundle size acceptable - [ ] No console.logs ### 🚀 Ready to deploy ``` --- ## Mode Detection