Marketplace for the DevTeam plugin
npx claudepluginhub michael-harris/devteam127-agent automated development system with Agent Teams, quality gates, Bug Council diagnostics, and autonomous execution
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
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)