devteam-bug
Fix a bug with structured diagnostic workflow. Uses interview to clarify details and Bug Council for complex issues.
Conduct interactive requirements gathering, research the codebase, create a PRD, and generate a development plan with tasks and sprints.
$ npx -y skills add michael-harris/devteam --skill devteam-plan --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/devteam-planContext preview
The summary Claude sees to decide when to auto-load this skill.
Conduct interactive requirements gathering, research the codebase, create a PRD, and generate a development plan with tasks and sprints.
name: devteam-plan description: Conduct interactive requirements gathering, research the codebase, create a PRD, and generate a development plan with tasks and sprints. argument-hint: ["description"] [--feature "<desc>"] [--from <path>] [--skip-research] [--skip-interview] user-invocable: true allowed-tools: Read, Glob, Grep, Bash, Write, 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:plan [options]`
Conduct interactive requirements gathering, research the codebase, create a PRD, and generate a development plan with tasks and sprints.
/devteam:plan # Start interactive planning /devteam:plan "Build a task manager" # Start with description /devteam:plan --feature "Add dark mode" # Plan a feature for existing project /devteam:plan --from spec.md # Load from single spec file /devteam:plan --from specs/ # Load from folder of spec files /devteam:plan --from existing # Auto-detect existing docs in project /devteam:plan --skip-research # Skip research phase
| Option | Description | |--------|-------------| | `--feature "<desc>"` | Plan a feature for existing project | | `--from <path>` | Load from spec file or folder | | `--skip-research` | Skip codebase research phase | | `--skip-interview` | Skip interview (use with --from) |
| Format | Extensions | Best For | |--------|------------|----------| | Markdown | `.md` | Human-readable specs, PRDs | | YAML | `.yaml`, `.yml` | Structured specs, existing PRDs | | JSON | `.json` | API specs, structured data | | Plain Text | `.txt` | Simple requirements lists | | PDF | `.pdf` | Formal documents (extracted) |
Reads a specification file and extracts:
**Example Input (`project-spec.md`):**
# Task Manager App ## Overview A simple task management app for teams. ## Features - User authentication with OAuth - Create, edit, delete tasks - Assign tasks to team members - Due date reminders ## Technical Requirements - Backend: FastAPI - Database: PostgreSQL - Frontend: React + TypeScript
**Process:** 1. Read and parse file 2. Extract structured information 3. Confirm understanding with user (brief) 4. Skip redundant interview questions 5. Generate PRD from extracted data
Reads all spec files from a folder and merges them:
specs/ ├── overview.md # Project overview ├── features/ │ ├── auth.md # Authentication spec │ ├── tasks.md # Task management spec │ └── notifications.md # Notification spec ├── api-design.yaml # API specification └── wireframes.md # UI descriptions
**Process:** 1. Scan folder recursively 2. Categorize files by type/content 3. Merge into unified understanding 4. Resolve conflicts (ask user if ambiguous) 5. Generate comprehensive PRD
Searches project for existing documentation:
**Search locations:**
docs/ # Common docs folder documentation/ # Alternative name spec/ # Spec folder specifications/ # Alternative name requirements/ # Requirements folder *.md in root # README, CONTRIBUTING, etc. .github/ # Issue templates, etc.
**Process:** 1. Scan project structure 2. Find and list discovered docs 3. Ask user to confirm which to use 4. Parse and extract requirements 5. Fill gaps with brief questions
**From Markdown with headers:**
# Feature: User Authentication ## Requirements - [ ] OAuth 2.0 support (Google, GitHub) - [ ] Session management - [ ] Password reset flow ## Acceptance Criteria 1. User can sign in with Google 2. Session persists for 7 days 3. Password reset email sent within 1 minute
Extracted as:
{
"feature": {
"name": "User Authentication",
"requirements": [
"OAuth 2.0 support (Google, GitHub)",
"Session management",
"Password reset flow"
],
"acceptance_criteria": [
"User can sign in with Google",
"Session persists for 7 days",
"Password reset email sent within 1 minute"
]
}
}**From YAML directly:**
# Already structured - use as-is
project:
name: Task Manager
features:
- name: Authentication
priority: must_have**From JSON (OpenAPI):**
{
"openapi": "3.0.0",
"paths": {
"/tasks": { "get": {...}, "post": {...} }
}
}Extract API endpoints as features
After parsing file-based specs, always confirm:
Loaded specification from: project-spec.md Extracted: - Project: Task Manager App - Features: 4 identified - Tech Stack: FastAPI + PostgreSQL + React - Constraints: None specified Is this correct? (yes/edit/add more)
If `edit`: Allow user to modify extracted data If `add more`: Continue with remaining interview questions
This command combines PRD generation and sprint planning into a single workflow.
Before any planning, verify git repository exists:
# Check for git repository git rev-parse --git-dir 2>/dev/null
**If NOT a git repository:**
Git Repository Required DevTeam requires a git repository for: - Change tracking and rollba
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.