The ADD framework integration for Claude is designed with modularity as a core principle. Users can configure their experience from minimal awareness to full observability, choosing exactly which features they need.
┌─────────────────────────────────────────────────┐
│ User Interaction Layer │
│ (Natural language toggles, .claude config) │
└────────────────┬────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────┐
│ Optional: Flow Status Extension │
│ ┌──────────────────────────────────────────┐ │
│ │ • Session-based tracking │ │
│ │ • Dynamic status generation │ │
│ │ • Visual status bar │ │
│ │ • Toggleable observability │ │
│ └──────────────────────────────────────────┘ │
└────────────────┬────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────┐
│ Core: ADD Framework Awareness │
│ ┌──────────────────────────────────────────┐ │
│ │ • Realm detection (Assess/Decide/Do) │ │
│ │ • Imbalance identification │ │
│ │ • Response structuring │ │
│ │ • Gentle flow guidance │ │
│ └──────────────────────────────────────────┘ │
└────────────────┬────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────┐
│ Claude Base Capabilities │
│ (Conversation, tool use, etc.) │
└─────────────────────────────────────────────────┘
What's loaded: Nothing Experience: Standard Claude behavior Use case: Users not interested in ADD framework
# No ADD configurationWhat's loaded: ADD_FRAMEWORK_MEGAPROMPT.md
Experience:
- Implicit realm detection
- Balanced flow guidance
- Appropriate response structuring
- No visible metrics
Use case: Users who want ADD support without explicit tracking
Configuration:
context_files:
- docs/ADD_FRAMEWORK_MEGAPROMPT.md
instructions: |
Operate with ADD framework awareness.
Keep observability implicit (no status bar).Natural language:
Load ADD framework and operate with awareness throughout this conversation.
What's loaded:
ADD_FRAMEWORK_MEGAPROMPT.mdADD_FLOW_STATUS_EXTENSION.md
Experience:
- Everything from Level 1
- Visible status bar at boundaries
- Quantified metrics
- Self-awareness support
Use case: Users who want full observability to learn their patterns
Configuration:
context_files:
- docs/ADD_FRAMEWORK_MEGAPROMPT.md
- docs/ADD_FLOW_STATUS_EXTENSION.md
instructions: |
Operate with ADD framework awareness.
Enable flow status tracking (default ON).What's loaded: Same as Level 2 Experience:
- ADD awareness active
- Status capability loaded but hidden
- User can enable on-demand
Use case: Users who want observability available but not always visible
Configuration:
context_files:
- docs/ADD_FRAMEWORK_MEGAPROMPT.md
- docs/ADD_FLOW_STATUS_EXTENSION.md
instructions: |
Operate with ADD framework awareness.
Flow status available but default OFF.
User can request: "show flow status"What's loaded: Same as Level 2 Experience:
- ADD awareness always active
- Status bar appears only in specific contexts
Use case: Users who want metrics during complex work, not simple tasks
Configuration:
context_files:
- docs/ADD_FRAMEWORK_MEGAPROMPT.md
- docs/ADD_FLOW_STATUS_EXTENSION.md
instructions: |
Operate with ADD framework awareness.
Enable flow status during:
- Architecture decisions
- Large refactorings
- Multi-file changes
- Research tasks
Disable flow status for:
- Quick bug fixes
- Single-file edits
- Simple questionsWhat's loaded:
- Core framework awareness (Level 1)
- Flow Status Extension (Level 2)
- Persistent statusline display (Claude Code specific)
Files needed:
.claude/statusline.sh- Display script.claude/settings.json- Statusline configuration.add-status- Session state (auto-generated)
Experience:
[ADD Flow: 🔴+ Assess | Exploring implementation options]
Visible at bottom of Claude Code interface, updates in real-time as conversation progresses.
Use case: Claude Code users wanting ambient flow awareness without cluttering conversation
Benefits:
- Always-visible realm tracking
- Real-time status updates (max 300ms)
- Project-specific flow state
- Session metrics tracked internally
- Available on natural language request
Configuration:
CLAUDE.md:
Operate with ADD framework awareness.
Enable flow status tracking.
For Claude Code users: Visual statusline configured separately..claude/settings.json:
{
"statusLine": {
"type": "command",
"command": ".claude/statusline.sh",
"padding": 0
}
}Setup: See Claude Code Statusline Guide for complete instructions.
Note: This level is Claude Code-specific. For claude.ai or Claude Desktop, use Levels 1-4.
What's loaded:
- Core framework awareness (Level 1)
- Flow Status Extension (Level 2)
- Persistent statusline display (Level 5)
- ADD Skills (.claude/skills/)
Skills included:
| Skill | Type | Purpose |
|---|---|---|
add-flow-check.md |
Model-invocable | Automatic status updates at conversation boundaries |
add-status.md |
User-invocable | /add-status command for explicit flow check |
add-reflect.md |
Both + Subagent | Session reflection with forked context |
add-assess.md |
Model-invocable | Deep Assess realm support |
add-decide.md |
Model-invocable | Deep Decide realm support |
add-do.md |
Model-invocable | Deep Do realm support |
add-imbalance.md |
Model-invocable | Imbalance detection and support |
Experience:
- Everything from Levels 1-5
- Progressive disclosure - Load only relevant context when needed
- Automatic maintenance - Model-invocable skills keep status updated
- User commands -
/add-status,/add-reflectfor explicit control - Subagent isolation - Reflection work happens in forked context
Use case: Claude Code power users wanting full ADD integration with minimal context overhead
Benefits:
- Smaller context footprint (skills load on demand)
- Automatic flow maintenance (model invokes status checks)
- Clean separation (reflection in forked context)
- Explicit commands alongside automatic behavior
Configuration:
Skills are automatically active when present in .claude/skills/. No additional configuration needed beyond Level 5 setup.
User Commands:
/add-status # Show current flow status and metrics
/add-reflect # Trigger session reflection (saves to .add-session-history.md)
Setup: See ADD Skills Documentation for complete details.
Note: This level requires Claude Code with skills support. The skills merge announcement (January 2026) unified slash commands and skills, enabling this level of integration.
Core Framework is independent:
- Works perfectly without any extensions
- Provides complete ADD awareness
- No dependencies on observability layer
Extensions are optional addons:
- Flow Status Extension requires Core Framework
- But Core Framework doesn't require Flow Status
- Clean separation of concerns
When both are loaded:
Core Framework provides:
- Realm detection logic
- Pattern recognition
- Imbalance identification
Flow Status Extension consumes:
- Realm detection results
- Pattern recognition output
- Session metrics
Flow Status Extension provides:
- Visible status bar
- Quantified feedback
- User-facing metrics
Core Framework remains unchanged:
- Extension doesn't modify core behavior
- Pure observability layer on top
Best for: Consistent behavior across a project
Location: Project root .claude file
Examples:
Minimal ADD:
instructions: |
Operate with ADD framework awareness.
context_files:
- docs/ADD_FRAMEWORK_MEGAPROMPT.mdFull observability:
instructions: |
Operate with ADD framework awareness.
Enable flow status tracking.
context_files:
- docs/ADD_FRAMEWORK_MEGAPROMPT.md
- docs/ADD_FLOW_STATUS_EXTENSION.mdBest for: Consistent behavior across all conversations
Location: Claude Settings → Custom Instructions
Example:
Framework: Operate with Assess-Decide-Do (ADD) awareness.
Load:
- ADD_FRAMEWORK_MEGAPROMPT.md (core framework)
- ADD_FLOW_STATUS_EXTENSION.md (observability)
Flow status: Default ON (I can toggle off if needed)
Best for: One-off conversations, testing, flexibility
Usage:
Load ADD framework with flow status tracking enabled.
Or:
Load ADD_FRAMEWORK_MEGAPROMPT.md and ADD_FLOW_STATUS_EXTENSION.md.
Operate with full ADD awareness and observability.
Best for: Dynamic control during work
Enable observability:
"Show flow status"
"Enable ADD tracking"
"Turn on the status bar"
Disable observability:
"Hide flow status"
"Turn off the status bar"
"Disable observability for now"
Request one-time status:
"Where am I in my flow?"
"What's my current ADD status?"
"Show me my realm pattern"
claude-assess-decide-do-mega-prompt/
├── .claude/
│ ├── settings.json # Statusline configuration (Level 5)
│ ├── statusline.sh # Display script (Level 5)
│ └── skills/ # ADD Skills (Level 6)
│ ├── add-flow-check/SKILL.md # Model-invocable: auto status
│ ├── add-status/SKILL.md # User-invocable: /add-status
│ ├── add-reflect/SKILL.md # Subagent: session reflection
│ ├── add-assess/SKILL.md # Assess realm support
│ ├── add-decide/SKILL.md # Decide realm support
│ ├── add-do/SKILL.md # Do realm support
│ └── add-imbalance/SKILL.md # Imbalance detection
├── docs/
│ ├── ADD_FRAMEWORK_MEGAPROMPT.md # CORE (Required)
│ ├── ADD_FLOW_STATUS_EXTENSION.md # EXTENSION (Optional)
│ ├── ADD_SKILLS.md # Skills documentation
│ ├── ADD_FRAMEWORK_MEGAPROMPT_USER_CONTEXT.md # VARIANT (Optional)
│ ├── ADD_MODULAR_ARCHITECTURE.md # This file
│ ├── ADD_TECHNICAL_INTEGRATION.md
│ ├── ADD_QUICK_REFERENCE.md
│ └── ADD_PHILOSOPHY.md
├── examples/
│ ├── .claude-minimal # Level 1: Core only
│ ├── .claude-full-observability # Level 2: Core + Status ON
│ ├── .claude-on-demand # Level 3: Core + Status OFF
│ └── .claude-contextual # Level 4: Conditional status
The modular architecture enables future extensions:
Potential Future Extensions:
- ADD_COLLABORATION_EXTENSION - Multi-user ADD awareness
- ADD_LONGTERM_TRACKING - Cross-session pattern recognition
- ADD_DOMAIN_EXTENSIONS - Specialized ADD for coding, writing, research
- ADD_INTEGRATION_HOOKS - Connect to external tools (addTaskManager MCP, etc.)
Each extension:
- Builds on core framework
- Remains optional
- Can be toggled independently
- Maintains clean separation
The base ADD framework (ADD_FRAMEWORK_MEGAPROMPT.md) is stable and complete. Extensions don't modify it.
Users choose their experience level. No forced features.
Start minimal, add observability when wanted. Graceful degradation if extensions removed.
Extensions consume framework outputs but don't couple tightly. Changes to one don't break the other.
Configuration files set defaults, but users can override anything through conversation.
Before:
# No ADD configurationAfter:
context_files:
- docs/ADD_FRAMEWORK_MEGAPROMPT.mdImpact: Implicit ADD awareness, no visible changes
Before:
context_files:
- docs/ADD_FRAMEWORK_MEGAPROMPT.mdAfter:
context_files:
- docs/ADD_FRAMEWORK_MEGAPROMPT.md
- docs/ADD_FLOW_STATUS_EXTENSION.mdImpact: Status bar appears, metrics visible
Before:
context_files:
- docs/ADD_FRAMEWORK_MEGAPROMPT.md
- docs/ADD_FLOW_STATUS_EXTENSION.md
# (Default behavior: ON)After:
context_files:
- docs/ADD_FRAMEWORK_MEGAPROMPT.md
- docs/ADD_FLOW_STATUS_EXTENSION.md
instructions: |
Flow status: Default OFFImpact: Status available but hidden until requested
Before:
context_files:
- docs/ADD_FRAMEWORK_MEGAPROMPT.md
- docs/ADD_FLOW_STATUS_EXTENSION.mdAfter:
context_files:
- docs/ADD_FRAMEWORK_MEGAPROMPT.mdImpact: Status bar disappears, ADD awareness remains
Possible causes:
- Not enough conversation yet (needs 3-5 exchanges)
- No natural boundary occurred for status display
- Instructions set default OFF
- User previously disabled mid-conversation
Solutions:
- Continue conversation, status will appear at realm shift
- Request explicitly: "Show me flow status"
- Check .claude file for default OFF setting
Solutions:
- Say: "Turn off flow status"
- Remove
ADD_FLOW_STATUS_EXTENSION.mdfrom context_files - Set default OFF in instructions
Best configuration:
context_files:
- docs/ADD_FRAMEWORK_MEGAPROMPT.md
- docs/ADD_FLOW_STATUS_EXTENSION.md
instructions: |
Flow status: Default OFF
User can enable on-demandThen use "show flow status" when you want it.
Solution: Use project-specific .claude files
Project A (.claude):
# Complex architecture work - always show status
context_files:
- /path/to/ADD_FRAMEWORK_MEGAPROMPT.md
- /path/to/ADD_FLOW_STATUS_EXTENSION.mdProject B (.claude):
# Simple maintenance - core only
context_files:
- /path/to/ADD_FRAMEWORK_MEGAPROMPT.mdRecommendation: Begin with core framework only
- Learn ADD principles first
- Get comfortable with implicit awareness
- Add observability once you understand the framework
Try different configurations:
- Week 1: Core only (Level 1)
- Week 2: Status always ON (Level 2)
- Week 3: Status on-demand (Level 3)
- Week 4: Contextual status (Level 4)
Find what works for you.
Match configuration to work type:
- Deep work: Full observability
- Quick tasks: Core only
- Learning projects: Always-on status
- Production work: On-demand status
Don't edit config files mid-session.
Instead:
- "Hide status for this conversation"
- "Show me flow tracking"
- "Turn off observability temporarily"
Conversation-level control beats file editing.
| Level | Configuration | Files Loaded | Status Bar | Use Case |
|---|---|---|---|---|
| 0 | No ADD | None | No | Standard Claude |
| 1 | Core ADD | MEGAPROMPT | No | Implicit ADD support |
| 2 | ADD + Status ON | MEGAPROMPT + EXTENSION | Yes (default) | Full observability |
| 3 | ADD + Status OFF | MEGAPROMPT + EXTENSION | No (available) | On-demand metrics |
| 4 | Contextual | MEGAPROMPT + EXTENSION | Conditional | Complex work only |
| 5 | Statusline | + statusline.sh | Visual bar | Claude Code users |
| 6 | Skills | + .claude/skills/ | Auto + Commands | Power users |
The power is in the choice.
Load what you need. Toggle what you want. The framework adapts to you.
Questions about configuration?
See:
ADD_FRAMEWORK_MEGAPROMPT.md- Core frameworkADD_FLOW_STATUS_EXTENSION.md- Observability extensionADD_SKILLS.md- Skills documentation (Level 6)CLAUDE_CODE_STATUSLINE.md- Statusline setup (Level 5)examples/- Configuration examplesintegration/setup-guide.md- Step-by-step setup