A Claude Code plugin providing 127 specialized AI agents with: Interview-driven planning - Clarify requirements before work begins Codebase research - Investigate patterns and blockers before implementation SQLite state management - Reliable session tracking
FAQ
devteam is a Claude Code plugin with 20 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes devteam-bug, devteam-config, devteam-design-drift. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
> /plugin marketplace add michael-harris/devteam> /plugin install devteam@devteam-marketplace
Repo: michael-harris/devteam
A Claude Code plugin providing 127 specialized AI agents with:
This is a Claude Code plugin composed of:
agents/*.md) โ Claude Code reads these and follows them as subagent prompts via the Task tool.devteam/*.yaml) โ defines capabilities, thresholds, and agent selection triggersscripts/*.sh, hooks/*.sh) โ handle state persistence (SQLite), event logging, hook lifecycle, and database managementcommands/*.md, skills/*/SKILL.md) โ user-facing commands that orchestrate agent workflowsThere is no separate executable orchestrator. Claude Code itself is the runtime โ it reads the agent markdown files, selects appropriate agents based on task characteristics, and executes them as subagents. The shell scripts provide supporting infrastructure (database, hooks, state tracking) but the orchestration logic lives in the agent instructions themselves.
Task Loop is the iterative quality enforcement system that ensures every task is completed to specification:
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ TASK LOOP โ
โ โ
โ Execute โ Quality Gates โ Pass? โ Complete โ
โ โ โ โ
โ โ Fail โ
โ โ โ โ
โ โโโโ Fix Tasks โ Model Escalation (if needed) โ
โ โ
โ Loop until: ALL QUALITY GATES PASS โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Features:
The /devteam:implement command automatically selects the best agents for your task:
/devteam:implement "Add user authentication with JWT tokens"
The /devteam:implement command analyzes your task description, file types involved, and project context to select appropriate agents. It considers keyword matches, file extensions, task type (feature vs. bug), and detected language/framework.
For complex bugs, the Bug Council convenes 5 specialized analysts:
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ BUG COUNCIL โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
โ Root Cause Analyst โ Error analysis, stack traces โ
โ Code Archaeologist โ Git history, regression detection โ
โ Pattern Matcher โ Similar bugs, anti-patterns โ
โ Systems Thinker โ Dependencies, integration issues โ
โ Adversarial Tester โ Edge cases, security vectors โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
Synthesized Solution
Activation Triggers:
bug_council: true flagAgents are strictly confined to their assigned scope:
scope:
allowed_files:
- "src/auth/*.py"
forbidden_directories:
- "src/billing/"
max_files_changed: 5
6 Enforcement Layers:
Agents cannot give up. The persistence system ensures completion:
Abandonment Attempt โ Detected โ Re-engagement Prompt
โ
Still stuck?
โ
Model Escalation (haiku โ sonnet โ opus)
โ
Still stuck?
โ
Bug Council Activation
โ
Still stuck?
โ
Human Notification (but keep trying)
| Category | Agents | Capabilities |
|---|---|---|
| SRE | Site Reliability Engineer | SLOs, incident response, chaos engineering |
| SRE | Platform Engineer | Internal developer platforms, golden paths |
| SRE | Observability Engineer | Metrics, logging, tracing, alerting |
| Security | Penetration Tester | OWASP testing, API security, vuln assessment |
| Security | Compliance Engineer | SOC2, HIPAA, GDPR, PCI-DSS |
| Product | Product Manager | PRDs, roadmaps, user research |
| Quality | Accessibility Specialist | WCAG 2.1, screen readers, inclusive design |
| DevRel | Developer Advocate | Technical content, community, DX |
| Agent | Purpose |
|---|---|
| Autonomous Controller | Execution loop management, state transitions, circuit breaker |
| Bug Council Orchestrator | Multi-perspective bug analysis |
| Code Review Coordinator | Cross-agent code review orchestration |
| Quality Gate Enforcer | Run and aggregate quality gate results |
| Requirements Validator | Validate acceptance criteria met |
| Scope Validator | Enforce scope boundaries |
| Sprint Loop | Sprint-level quality validation after all tasks |
| Sprint Orchestrator | Sprint execution management, task sequencing |
| Task Loop | Iterative quality loop for single task execution |
| Track Merger | Merge parallel worktree tracks |
| Workflow Compliance | Meta-validator auditing orchestration process |
| Agent | Specialty |
|---|---|
| Root Cause Analyst | Error analysis, hypothesis generation |
| Code Archaeologist | Git history, regression detection |
| Pattern Matcher | Similar bugs, anti-pattern identification |
| Systems Thinker | Dependencies, architectural issues |
| Adversarial Tester | Edge cases, security vulnerabilities |
Backend (by language):
Frontend:
Database:
DevOps:
| Agent | Focus |
|---|---|
| Test Writer | Unit, integration, e2e tests |
| Security Auditor | OWASP Top 10, vulnerability scanning |
| Performance Auditor | Profiling, optimization, load testing |
| Accessibility Specialist | WCAG compliance, inclusive design |
| E2E Tester | Playwright, Cypress, browser testing |
# Plan a new feature (interview โ research โ PRD โ tasks โ sprints)
/devteam:plan --feature "Add user authentication with OAuth"
# Execute the plan
/devteam:implement
# Or execute specific sprint
/devteam:implement --sprint 1
The system will:
# Fix a local bug (interview โ diagnose โ fix โ verify)
/devteam:bug "Login fails for guest users"
# Fix a GitHub issue
/devteam:issue 123
# Force Bug Council for complex issues
/devteam:bug "Memory leak in image processor" --council
# Use eco mode (lower-cost models for simpler tasks)
/devteam:implement --eco
/devteam:bug "Minor CSS issue" --eco
# Check status, costs, progress
/devteam:status
# List plans and tasks
/devteam:list
# Reset stuck sessions
/devteam:reset
.devteam/task-loop-config.yaml)loop_settings:
max_iterations: 10
model_escalation:
enabled: true
consecutive_failures:
haiku_to_sonnet: 2
sonnet_to_opus: 2
opus_max_failures: 3 # Then Bug Council
quality_gates:
required:
tests_passing: true
type_check: true
lint: true
security:
on_finding: create_fix_task
# In task definition
scope:
allowed_files:
- "src/auth/*.py"
allowed_patterns:
- "tests/auth/**/*.py"
forbidden_directories:
- "src/billing/"
- "src/admin/"
max_files_changed: 10
.devteam/agent-capabilities.yaml)categories:
security:
agents:
- id: penetration_tester
triggers:
keywords: [pentest, security testing, vulnerability]
task_types: [security_testing]
The system uses Claude Code hooks for autonomous execution. All hooks support both Linux/macOS (Bash) and Windows (PowerShell).
| Hook | Linux/macOS | Windows | Purpose |
|---|---|---|---|
| Stop Hook | stop-hook.sh | stop-hook.ps1 | Blocks exit without EXIT_SIGNAL: true |
| Persistence Hook | persistence-hook.sh | persistence-hook.ps1 | Detects and prevents abandonment |
| Scope Check | scope-check.sh | scope-check.ps1 | Validates commits stay in scope |
| Pre-Compact | pre-compact.sh | pre-compact.ps1 | Preserves state before context compaction |
| Pre-Tool-Use | pre-tool-use-hook.sh | pre-tool-use-hook.ps1 | Pre-execution validation |
| Post-Tool-Use | post-tool-use-hook.sh | post-tool-use-hook.ps1 | Post-execution logging |
| Session Start | session-start.sh | session-start.ps1 | Session initialization |
| Session End | session-end.sh | session-end.ps1 | Session cleanup |
| Install | install.sh | install.ps1 | Hook installation script |
When installed via the marketplace or as a plugin, all hooks are configured automatically through hooks/hooks.json. No manual settings.json editing is required.
See hooks/README.md for hook details and troubleshooting.
| Complexity | Model | Characteristics | Use Case |
|---|---|---|---|
| 1-4 | Haiku | Fast, lowest cost | Simple fixes, docs |
| 5-8 | Sonnet | Balanced | Standard features |
| 9-14 | Opus | Most capable, highest cost | Complex architecture |
Task starts at complexity-appropriate tier
โ
โผ
Attempt #1
โ
FAIL? โโโโโโโโโโโโโโโโโโโ
โ โ
โผ โผ
Attempt #2 Same tier
โ + more context
FAIL? โโโโโโโโโโโโโโโโโโโ
โ โ
โผ โผ
Attempt #3 Same tier
โ + alt approach
FAIL? โโโโโโโโโโโโโโโโโโโ
โ โ
โผ โผ
ESCALATE Upgrade tier
โ (haikuโsonnetโopus)
โผ
Continue with higher tier
User Request
โ
โผ
โโโโโโโโโโโโโโโโโโโ
โ /devteam:implement โ โ Automatic agent selection
โโโโโโโโโโฌโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโ
โ Task Loop โ โ Iterative quality loop per task
โโโโโโโโโโฌโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโ
โ TASK LOOP โ โ Quality loop wrapper
โ โโโโโโโโโโโโโ โ
โ โ Execute โ โ โ Selected agents work
โ โ Agents โ โ
โ โโโโโโโฌโโโโโโ โ
โ โ โ
โ โผ โ
โ โโโโโโโโโโโโโ โ
โ โ Quality โ โ โ Tests, lint, security
โ โ Gates โ โ
โ โโโโโโโฌโโโโโโ โ
โ โ โ
โ PASSโ FAIL โ
โ โ โ โ
โ โ โผ โ
โ โ โโโโโโ โ
โ โ โFix โ โ โ Create fix tasks
โ โ โโโโฌโโ โ
โ โ โ โ
โ โ โผ โ
โ โ Escalate? โ Model upgrade if needed
โ โ โ โ
โ โโโโโโดโโโโ
โ โ
โโโโโโโโโโโโโโโ
โ
โผ
EXIT_SIGNAL: true
.devteam/
โโโ config.yaml # Main project configuration
โโโ task-loop-config.yaml # Task Loop quality loop config
โโโ agent-capabilities.yaml # Agent registry with triggers
โโโ agent-selection.md # Selection algorithm docs
โโโ persistence-config.yaml # Anti-abandonment rules
โโโ scope-enforcement.md # Scope system docs
โโโ model-selection.md # Dynamic model assignment
โโโ parallel-execution.md # Concurrent task handling
โโโ plan-management.md # Plan lifecycle tracking
โโโ sprint-loop-config.yaml # Sprint validation settings
โโโ task-loop-config.yaml # Task execution settings
โโโ code-review-config.yaml # Code review standards
โโโ database-config.yaml # Database setup
โโโ frontend-config.yaml # Frontend-specific settings
โโโ performance-config.yaml # Performance audit thresholds
โโโ test-config.yaml # Test framework configuration
โโโ testing-config.yaml # Test execution config
โโโ ux-config.yaml # UX validation rules
โโโ validation-config.yaml # Requirements validation rules
โโโ refactoring-config.yaml # Refactoring guidelines
โโโ devteam.db # SQLite execution state + circuit breaker tracking (runtime)
โโโ plans/ # Multi-plan storage (runtime)
agents/
โโโ orchestration/ # 11 orchestration agents
โ โโโ autonomous-controller.md
โ โโโ bug-council-orchestrator.md
โ โโโ code-review-coordinator.md
โ โโโ quality-gate-enforcer.md
โ โโโ requirements-validator.md
โ โโโ scope-validator.md
โ โโโ sprint-loop.md
โ โโโ sprint-orchestrator.md
โ โโโ task-loop.md
โ โโโ track-merger.md
โ โโโ workflow-compliance.md
โโโ planning/ # PRD & sprint planning (3)
โโโ research/ # Codebase research (1)
โโโ diagnosis/ # Bug Council agents (5)
โโโ backend/ # Backend API developers (16)
โโโ frontend/ # Frontend developers (3)
โโโ database/ # Database specialists (12)
โโโ quality/ # Testing & QA (26)
โโโ devops/ # CI/CD, Docker, K8s (5)
โโโ mobile/ # iOS, Android, Flutter, RN (8)
โโโ security/ # Security & Compliance (10)
โโโ sre/ # Site Reliability Engineering (2)
โโโ ux/ # Design system agents (12)
โโโ accessibility/ # A11y specialists (2)
โโโ architecture/ # System architecture (1)
โโโ data-ai/ # Data & ML engineering (2)
โโโ devrel/ # Developer advocacy (1)
โโโ product/ # Product management (1)
โโโ specialized/ # Observability (1)
โโโ support/ # Dependency management (1)
โโโ infrastructure/ # Configuration management (1)
โโโ python/ # Python utilities (1)
โโโ scripting/ # Shell & PowerShell (2)
โโโ templates/
โโโ base-agent.md
commands/ # 20 slash commands
โโโ devteam-plan.md
โโโ devteam-implement.md
โโโ devteam-bug.md
โโโ devteam-issue.md
โโโ devteam-issue-new.md
โโโ devteam-status.md
โโโ devteam-reset.md
โโโ devteam-config.md
โโโ devteam-logs.md
โโโ devteam-help.md
โโโ devteam-list.md
โโโ devteam-select.md
โโโ devteam-design.md
โโโ devteam-design-drift.md
โโโ devteam-review.md
โโโ devteam-test.md
โโโ merge-tracks.md
โโโ worktree-status.md
โโโ worktree-list.md
โโโ worktree-cleanup.md
skills/ # 20 skill definitions (SKILL.md per directory)
โโโ devteam-plan/
โโโ devteam-implement/
โโโ devteam-bug/
โโโ ... (one directory per command)
โโโ worktree-cleanup/
.claude/
โโโ rules/ # 11 path-specific rule files
โโโ *.md
agent-registry.json # Agent and command registry (127 agents, 20 commands)
settings.json # Plugin default settings
.mcp.json # Bundled MCP server configs (GitHub, Memory)
.lsp.json # Language server configs (8 languages)
hooks/ # Cross-platform hooks
โโโ stop-hook.sh / .ps1 # Exit control
โโโ persistence-hook.sh / .ps1
โโโ scope-check.sh / .ps1
โโโ pre-compact.sh / .ps1
โโโ pre-tool-use-hook.sh / .ps1
โโโ post-tool-use-hook.sh / .ps1
โโโ session-start.sh / .ps1
โโโ session-end.sh / .ps1
โโโ install.sh / .ps1
โโโ lib/ # Shared hook utilities
โโโ tests/ # Hook test suite
โโโ README.md
mcp-configs/ # MCP server configurations
โโโ required.json
โโโ recommended.json
โโโ optional.json
โโโ lsp-servers.json
โโโ README.md
| Command | Description |
|---|---|
/devteam:plan | Interactive planning with interview, research, and sprint generation |
/devteam:implement | Execute plans, sprints, tasks, or ad-hoc work |
/devteam:bug "<desc>" | Fix bugs with diagnostic workflow and Bug Council |
/devteam:issue <#> | Fix GitHub issues with interview if needed |
/devteam:status | Display system health, progress, and costs |
/devteam:reset | Reset stuck sessions and recover from errors |
/devteam:plan # Interactive planning
/devteam:plan --feature "desc" # Plan specific feature
/devteam:plan --from spec.md # Plan from spec file
/devteam:plan --skip-research # Skip research phase
/devteam:implement # Execute current plan
/devteam:implement --sprint 1 # Execute specific sprint
/devteam:implement --all # Execute all sprints
/devteam:implement --task TASK-001 # Execute specific task
/devteam:implement "ad-hoc task" # One-off task with interview
/devteam:implement --eco # Cost-optimized mode
/devteam:bug "description" # Fix with interview
/devteam:bug "desc" --council # Force Bug Council
/devteam:bug "desc" --severity critical
/devteam:bug "desc" --eco # Cost-optimized
| Command | Description |
|---|---|
/devteam:review | Run cross-agent code review |
/devteam:test | Run test coordination and execution |
/devteam:design | Design system generation and validation |
/devteam:design-drift | Detect design system drift |
| Command | Description |
|---|---|
/devteam:list | List plans, sprints, and tasks |
/devteam:select <plan> | Select active plan |
/devteam:issue-new "<desc>" | Create new GitHub issue |
/devteam:config | View and modify configuration |
/devteam:logs | View execution logs |
/devteam:help | Get help on any topic |
| Command | Description |
|---|---|
/devteam:worktree-status | Show worktree status |
/devteam:worktree-list | List all worktrees |
/devteam:worktree-cleanup | Clean up worktrees |
/devteam:merge-tracks | Merge parallel tracks |
See commands/README.md for detailed documentation.
Every task must pass:
| Gate | Requirement |
|---|---|
| Tests | 100% of tests passing |
| Types | No type errors (mypy, tsc) |
| Lint | No lint errors |
| Security | No high/critical findings |
| Coverage | โฅ80% code coverage |
| Scope | All changes within scope |
No task completes without all gates passing.
/devteam:implement "Add user profile page with avatar upload"
System automatically:
/devteam:implement "Fix: Users can't login after password reset"
System automatically:
/devteam:implement "Audit authentication system"
System automatically:
The easiest way to install DevTeam is directly from within Claude Code:
# 1. Add the DevTeam marketplace
/plugin marketplace add https://github.com/michael-harris/devteam
# 2. Install the plugin
/plugin install devteam@devteam-marketplace
# 3. Verify installation
/devteam:status
That's it. The database is auto-initialized on first use. Hooks, agents, skills, and rules are all configured automatically.
For contributing or local development:
# 1. Clone the repository
git clone https://github.com/michael-harris/devteam.git
# 2. Install as a local plugin
/plugin install /path/to/devteam
# 3. Verify installation
/devteam:status
To enable Agent Teams (parallel multi-agent execution), set this environment variable before starting Claude Code:
export CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1
Q: What stops agents from giving up?
A: The persistence system detects "give up" language and blocks it, forcing continued effort with escalating re-engagement prompts, model upgrades, and Bug Council activation.
Q: How does model escalation work?
A: After 2 consecutive failures at a tier, the model upgrades (haikuโsonnetโopus). After 3 opus failures, Bug Council activates.
Q: Can agents modify files outside their scope?
A: No. The scope validator has VETO power and blocks all out-of-scope changes. Agents log observations for out-of-scope issues instead.
Q: What triggers the Bug Council?
A: Critical bugs, 3+ failed opus attempts, complexity โฅ10, or explicit flag.
Q: How do I customize agent selection?
A: Edit .devteam/agent-capabilities.yaml to add triggers, keywords, and file patterns.
Contributions welcome! Areas of interest:
This project draws inspiration from and builds upon several pioneering projects in the AI-assisted development space.
These projects directly influenced our design and implementation:
| Project | What We Learned | Link |
|---|---|---|
| ralph-claude-code | The Ralph autonomous loop concept, EXIT_SIGNAL pattern, circuit breaker for stagnation detection, dual-condition exit gates, .ralph/ directory structure pattern | github.com/frankbria/ralph-claude-code |
| everything-claude-code | Specialized agent delegation pattern, cross-platform hook architecture, subagent orchestration strategies, skill/agent separation | github.com/affaan-m/everything-claude-code |
| awesome-claude-skills | Skill organization patterns, YAML frontmatter structure, category-based skill taxonomy | github.com/ComposioHQ/awesome-claude-skills |
| wshobson/agents | Tiered model assignment (Opus/Sonnet/Haiku), plugin architecture patterns, token efficiency strategies, 72-plugin modular design | github.com/wshobson/agents |
| ui-ux-pro-max-skill | Design system generation patterns, industry-specific rule sets, Master+Overrides architecture concept | github.com/nextlevelbuilder/ui-ux-pro-max-skill |
While inspired by these projects, we developed original implementations:
| Feature | Inspiration Source | Our Original Addition |
|---|---|---|
| Task Loop | ralph-claude-code's autonomous loop | Added model escalation (haikuโsonnetโopus), Bug Council activation, quality gates integration |
| Model Escalation | wshobson/agents tier concept | Automatic escalation after consecutive failures, complexity-based initial selection, de-escalation after success |
| Bug Council | Original concept | 5-agent multi-perspective debugging system with synthesized solutions |
| Scope Enforcement | Original concept | 6-layer enforcement with VETO power, out-of-scope observations logging |
| Anti-Abandonment | Original concept | Persistence hooks detecting "give up" patterns, escalating re-engagement prompts |
| Agent Selection | everything-claude-code delegation | Task-aware agent selection based on keywords, file types, task type, and language |
| Enterprise Agents | wshobson/agents categories | SRE, Platform Engineer, Compliance Engineer, Penetration Tester, and 8 other enterprise roles |
| Project | Inspiration | Link |
|---|---|---|
| Aider | Iterative code refinement and "linting loops" | github.com/paul-gauthier/aider |
| AutoGPT | Multi-agent orchestration patterns | github.com/Significant-Gravitas/AutoGPT |
| MetaGPT | Role-based agents, "committee of experts" | github.com/geekan/MetaGPT |
| GPT-Engineer | PRD-to-code workflows | github.com/gpt-engineer-org/gpt-engineer |
| Sweep AI | Automated bug fixing patterns | github.com/sweepai/sweep |
| OpenHands | Agent-computer interfaces | github.com/All-Hands-AI/OpenHands |
| SWE-agent | Software engineering agent design | github.com/princeton-nlp/SWE-agent |
All code in this repository was written from scratch. While we adopted concepts and patterns from the above projects (particularly the Ralph loop concept from frankbria/ralph-claude-code), our implementations are original:
.devteam/ vs .ralph/)MIT License - See LICENSE file.
Built for Claude Code
.claude/
.claude-plugin/
marketplace.json
plugin.json
rules/
ci-cd.md
database-migrations.md
docker.md
mobile-android.md
mobile-ios.md
python-django.md
python-fastapi.md
security.md
testing.md
typescript-node.md
typescript-react.md
.devteam/
agent-capabilities.yaml
agent-selection.md
code-review-config.yaml
config.yaml
context-management.yaml
database-config.yaml
design-enforcement.md
design-integration.md
error-recovery.yaml
frontend-config.yaml
hybrid-testing-config.yaml
model-selection.md
out-of-scope-observations.md
parallel-execution.md
parallel-instances.md
performance-config.yaml
persistence-config.yaml
plan-management.md
refactoring-config.yaml
scope-enforcement.md
sprint-loop-config.yaml
task-loop-config.yaml
test-config.yaml
testing-config.yaml
two-phase-architecture.yaml
ux-config.yaml
validation-config.yaml
.gitignore
.lsp.json
.mcp.json
agent-registry.json
agents/
accessibility/
accessibility-specialist.md
mobile-accessibility-specialist.md
architecture/
architect.md
backend/
api-design-reviewer.md
api-designer.md
api-developer-csharp.md
api-developer-go.md
api-developer-java.md
api-developer-php.md
api-developer-python.md
api-developer-ruby.md
api-developer-typescript.md
backend-code-reviewer-csharp.md
backend-code-reviewer-go.md
backend-code-reviewer-java.md
backend-code-reviewer-php.md
backend-code-reviewer-python.md
backend-code-reviewer-ruby.md
backend-code-reviewer-typescript.md
data-ai/
data-engineer.md
ml-engineer.md
database/
database-designer.md
database-developer-android.md
database-developer-csharp.md
database-developer-go.md
database-developer-ios.md
database-developer-java.md
database-developer-php.md
database-developer-python.md
database-developer-ruby.md
database-developer-typescript.md
nosql-code-reviewer.md
sql-code-reviewer.md
devops/
cicd-specialist.md
docker-specialist.md
kubernetes-specialist.md
mobile-cicd-specialist.md
terraform-specialist.md
devrel/
developer-advocate.md
diagnosis/
adversarial-tester.md
code-archaeologist.md
pattern-matcher.md
root-cause-analyst.md
systems-thinker.md
frontend/
frontend-code-reviewer.md
frontend-designer.md
frontend-developer.md
infrastructure/
configuration-manager.md
mobile/
android-code-reviewer.md
android-designer.md
android-developer.md
flutter-developer.md
ios-code-reviewer.md
ios-designer.md
ios-developer.md
react-native-developer.md
orchestration/
autonomous-controller.md
bug-council-orchestrator.md
code-review-coordinator.md
quality-gate-enforcer.md
requirements-validator.md
scope-validator.md
sprint-loop.md
sprint-orchestrator.md
task-loop.md
track-merger.md
workflow-compliance.md
planning/
prd-generator.md
sprint-planner.md
task-graph-analyzer.md
product/
product-manager.md
python/
python-developer-generic.md
quality/
documentation-coordinator.md
e2e-tester.md
mobile-e2e-tester.md
mobile-test-writer.md
performance-auditor-android.md
performance-auditor-csharp.md
performance-auditor-go.md
performance-auditor-ios.md
performance-auditor-java.md
performance-auditor-php.md
performance-auditor-python.md
performance-auditor-ruby.md
performance-auditor-typescript.md
refactoring-coordinator.md
runtime-verifier.md
security-auditor.md
test-coordinator.md
test-writer.md
unit-test-writer-csharp.md
unit-test-writer-go.md
unit-test-writer-java.md
unit-test-writer-php.md
unit-test-writer-python.md
unit-test-writer-ruby.md
unit-test-writer-typescript.md
visual-verification-agent.md
research/
research-agent.md
scripting/
powershell-developer.md
shell-developer.md
security/
compliance-engineer.md
mobile-security-auditor.md
penetration-tester.md
security-auditor-csharp.md
security-auditor-go.md
security-auditor-java.md
security-auditor-php.md
security-auditor-python.md
security-auditor-ruby.md
security-auditor-typescript.md
specialized/
observability-engineer.md
sre/
platform-engineer.md
site-reliability-engineer.md
support/
dependency-manager.md
templates/
base-agent.md
ux/
color-palette-specialist.md
data-visualization-designer.md
design-compliance-validator.md
design-drift-detector.md
design-system-architect.md
design-system-orchestrator.md
README.md
typography-specialist.md
ui-style-curator.md
ux-specialist-desktop.md
ux-specialist-mobile.md
ux-specialist-web.md
ux-system-coordinator.md
commands/
devteam-bug.md
devteam-config.md
devteam-design-drift.md
devteam-design.md
devteam-help.md
devteam-implement.md
devteam-issue-new.md
devteam-issue.md
devteam-list.md
devteam-logs.md
devteam-plan.md
devteam-reset.md
devteam-review.md
devteam-select.md
devteam-status.md
devteam-test.md
merge-tracks.md
README.md
worktree-cleanup.md
worktree-list.md
worktree-status.md
CONTRIBUTING.md
docs/
adr/
001-sqlite-state-management.md
002-sql-injection-prevention.md
003-error-handling-strategy.md
adrs/
.gitkeep
AGENT_DEVELOPMENT.md
api/
.gitkeep
BACKUP_RECOVERY.md
deprecated/
CODEBASE_REVIEW_2026-02-01.md
state-example.yaml
state-schema.yaml
development/
agent-review-findings.md
DYNAMIC_MODEL_SELECTION.md
EVERYTHING_CLAUDE_CODE_ENHANCEMENTS.md
IMPLEMENTATION_PLAN.md
PLUGIN_BUILD_COMPLETE.md
plugin-conversion.md
progress-tracking-design.md
RALPH_INTEGRATION_OPTIONS.md
README.md
state-management-guide.md
DIRECTORY_STRUCTURE.md
EXPANSION_PLAN.md
features/
.gitkeep
GETTING_STARTED.md
planning/
tasks/
.gitkeep
releases/
ENHANCEMENTS_V2.1.md
ENHANCEMENTS_V2.5.md
ENHANCEMENTS_V3.0.md
reviews/
.gitkeep
FINAL_VALIDATION_REPORT_2026-01-30.md
ISSUE_VALIDATION_REPORT_2026-01-30.md
PROJECT_REVIEW_2026-01.md
sprints/
.gitkeep
SQLITE_SCHEMA.md
templates/
api-first-tasks.yaml
TESTING_REQUIREMENTS.md
TROUBLESHOOTING.md
examples/
api-first-fullstack-workflow.md
complete-workflow-example.md
individual-agent-usage.md
multi-language-examples.md
parallel-tracks-example.md
hooks/
hooks.json
install.ps1
install.sh
lib/
hook-common.ps1
hook-common.sh
log-event.js
persistence-hook.ps1
persistence-hook.sh
post-tool-use-hook.ps1
post-tool-use-hook.sh
pre-compact.ps1
pre-compact.sh
pre-tool-use-hook.ps1
pre-tool-use-hook.sh
README.md
run-hook.js
scope-check.ps1
scope-check.sh
session-end.ps1
session-end.sh
session-start.ps1
session-start.sh
stop-hook.ps1
stop-hook.sh
tests/
test-hooks.sh
IMPLEMENTATION_PLAN_HOOKS.md
IMPLEMENTATION_PLAN_MCP_SERVER.md
install-local.sh
LICENSE
mcp-configs/
lsp-servers.json
optional.json
README.md
recommended.json
required.json
README.md
scripts/
baseline.sh
checkpoint.sh
cost-tracking.sh
db-init.ps1
db-init.sh
db-maintenance.sh
events.sh
init-generator.sh
lib/
common.sh
progress.sh
progress.sh
rollback.sh
schema-v2.sql
schema-v3.sql
schema-v4.sql
schema.sql
state.ps1
state.sh
update-agent-frontmatter.py
validate-config.sh
settings.json
skills/
devteam-bug/
SKILL.md
devteam-config/
SKILL.md
devteam-design/
devteam-design-drift/
SKILL.md
SKILL.md
devteam-help/
SKILL.md
devteam-implement/
SKILL.md
devteam-issue/
devteam-issue-new/
SKILL.md
SKILL.md
devteam-list/
SKILL.md
devteam-logs/
SKILL.md
devteam-plan/
SKILL.md
devteam-reset/
SKILL.md
devteam-review/
SKILL.md
devteam-select/
SKILL.md
devteam-status/
SKILL.md
devteam-test/
SKILL.md
merge-tracks/
SKILL.md
worktree-cleanup/
SKILL.md
worktree-list/
SKILL.md
worktree-status/
SKILL.md
templates/
interview-questions.yaml
tests/
run-tests.shยฉ 2026 Flowy ยท Free and open source
Built for Claude Code ยท Not affiliated with Anthropic