behavioral-modes

Switches AI behavior between brainstorm, implement, debug, review, teach, and ship modes.

Updated Mar 17, 2026
One-click install
npx skills add https://github.com/beliciobcardoso/mcp-postgres --skill behavioral-modes-beliciobcardoso
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: behavioral-modes
Source: https://github.com/beliciobcardoso/mcp-postgres/tree/main/.agent/skills/behavioral-modes
Command: npx skills add https://github.com/beliciobcardoso/mcp-postgres --skill behavioral-modes-beliciobcardoso

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? AI assistants often respond with the same style regardless of the task, producing verbose explanations when you need code, or jumping to code when you need ideas. This Skill adapts the AI's behavior, communication style, and output format to match the type of work being done. ## Core Features & Use Cases - Six Core Modes: Brainstorm, Implement, Debug, Review, Teach, and Ship modes each define distinct behaviors and output formats for different task types. - Automatic Mode Detection: Trigger keywords like "bug", "review", or "deploy" automatically activate the appropriate mode, with support for manual switching via slash commands. - Multi-Agent Patterns: Includes 2025 collaboration patterns such as Explore, Plan-Execute-Critic cycles, and mental model synchronization for complex tasks. - Use Case: When you say "debug why login fails", the AI switches to Debug mode and responds with a structured symptom, root cause, fix, and prevention analysis instead of generic suggestions. ## Quick Start Ask the AI to review your pull request and it will automatically enter Review mode with severity-categorized feedback.

Frequently Asked Questions about behavioral-modes

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I switch AI behavior modes manually?▼

Use slash commands like /brainstorm, /implement, /debug, or /review followed by your task description. The AI will adopt the corresponding mode's behavior and output format for that request.

How does automatic mode detection work?▼

The AI scans your prompt for trigger keywords mapped to each mode. Words like "bug" or "error" activate Debug mode, while "deploy" or "release" activate Ship mode, without requiring explicit commands.

What is the difference between Implement and Brainstorm mode?▼

Brainstorm mode explores multiple options with pros and cons before any code is written. Implement mode produces complete production-ready code directly with minimal explanation and no tutorial-style commentary.

Can multiple behavioral modes be combined in one task?▼

Yes, the Plan-Execute-Critic pattern chains modes cyclically: a Planner decomposes the task, an Executor implements the code, and a Critic reviews it for security and performance issues.

When should I not use Implement mode?▼

Avoid Implement mode during early planning or architecture decisions where requirements are unclear. Use Brainstorm mode first to explore alternatives, then switch to Implement once the direction is settled.