devteam-bug
Fix a bug with structured diagnostic workflow. Uses interview to clarify details and Bug Council for complex issues.
Run a coordinated code review across multiple reviewers. Launches the Code Review Coordinator to orchestrate language-specific and domain-specific reviewers.
$ npx -y skills add michael-harris/devteam --skill devteam-review --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/devteam-reviewContext preview
The summary Claude sees to decide when to auto-load this skill.
Run a coordinated code review across multiple reviewers. Launches the Code Review Coordinator to orchestrate language-specific and domain-specific reviewers.
name: devteam-review description: Run a coordinated code review across multiple reviewers. Launches the Code Review Coordinator to orchestrate language-specific and domain-specific reviewers. argument-hint: [target] [--scope <path>] [--focus <security|performance|architecture>] [--pr <number>] [--eco] user-invocable: true allowed-tools: Read, Glob, Grep, Bash, Task model: opus
Current session: !`source "${CLAUDE_PLUGIN_ROOT}/scripts/state.sh" && get_current_session 2>/dev/null || echo "No active session"` Active sprint: !`source "${CLAUDE_PLUGIN_ROOT}/scripts/state.sh" && get_kv_state "active_sprint" 2>/dev/null || echo "None"` Failure count: !`source "${CLAUDE_PLUGIN_ROOT}/scripts/state.sh" && get_kv_state "consecutive_failures" 2>/dev/null || echo "0"`
**Command:** `/devteam:review [target] [options]`
Run a coordinated code review across multiple reviewers. Launches the Code Review Coordinator to orchestrate language-specific and domain-specific reviewers.
# Review current changes (staged + unstaged) /devteam:review # Review specific files /devteam:review "src/api/auth.ts" "src/models/user.ts" # Review specific scope /devteam:review --scope "src/api/" # Review with specific focus /devteam:review --focus security /devteam:review --focus performance /devteam:review --focus architecture # Review a PR /devteam:review --pr 42
| Option | Description | |--------|-------------| | `--scope <path>` | Limit review to specific files/directories | | `--focus <area>` | Focus on: security, performance, architecture, correctness, all | | `--pr <number>` | Review a specific pull request | | `--severity <level>` | Minimum severity to report: critical, warning, info | | `--eco` | Cost-optimized execution |
source "${CLAUDE_PLUGIN_ROOT}/scripts/state.sh"
source "${CLAUDE_PLUGIN_ROOT}/scripts/events.sh"
SESSION_ID=$(start_session "/devteam:review $*" "review")
log_session_started "/devteam:review $*" "review"Delegate to the `orchestration:code-review-coordinator` agent, which will:
1. Detect languages and frameworks in the target files 2. Select appropriate language-specific code reviewers 3. Run database reviewers if schema changes are detected 4. Aggregate findings across all reviewers 5. Produce a unified review report with severity ratings
const result = await Task({
subagent_type: "orchestration:code-review-coordinator",
prompt: `Code review request:
Target: ${target || 'current changes'}
Scope: ${scope || 'auto-detect'}
Focus: ${focus || 'all'}
Coordinate reviewers to check:
1. Code correctness and logic errors
2. Security vulnerabilities
3. Performance issues
4. Code style and best practices
5. Test coverage gaps
6. Documentation needs`
})Output a review report showing:
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
Repo: michael-harris/devteam
Fix a bug with structured diagnostic workflow. Uses interview to clarify details and Bug Council for complex issues.
Detect design inconsistencies and drift from the design system. Launches the Design Drift Detector to analyze the codebase for deviations.
Coordinate UX/UI design work across platforms. Launches the UX System Coordinator to orchestrate design specialists.
Execute implementation work - plans, sprints, tasks, or ad-hoc work.