DevTeam Help Command banner
michael-harris michael-harris

DevTeam Help Command

Development community intermediate

Description

**Command:** `/devteam:help [topic]` Get help on DevTeam commands, concepts, and troubleshooting.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

Repository README

This is the README for michael-harris/devteam, shared by 20 entries in this directory. It describes the repository, not this entry specifically.

DevTeam Help Command

**Command:** `/devteam:help [topic]`

Get help on DevTeam commands, concepts, and troubleshooting.

Usage

/devteam:help                    # Show command overview
/devteam:help implement          # Help for specific command
/devteam:help eco                # Help on eco mode
/devteam:help agents             # Help on agent system
/devteam:help troubleshooting    # Troubleshooting guide

Available Topics

Commands

Topic Description
plan Planning and PRD generation
implement Implementation execution
bug Bug fixing workflow
issue GitHub issue handling
status System status and metrics
reset Reset and recovery
config Configuration management
logs Log viewing

Concepts

Topic Description
eco Eco mode for cost optimization
task-loop Task Loop quality loop
interview Interview system
research Research phase
escalation Model escalation
gates Quality gates
council Bug Council
agents Agent system
worktrees Git worktree automation

Guides

Topic Description
getting-started New user guide
troubleshooting Problem solving
best-practices Recommended practices
migration Migrating from v2.x

Your Process

Step 1: Resolve Topic

function resolveTopic(input) {
    // Exact match
    if (topics[input]) return topics[input]

    // Command alias
    if (commandAliases[input]) return topics[commandAliases[input]]

    // Fuzzy match
    const matches = findSimilar(input, Object.keys(topics))
    if (matches.length) {
        return { type: 'suggestion', matches }
    }

    return { type: 'not_found' }
}

Step 2: Display Help

**No Topic (Overview):**

╔═══════════════════════════════════════════════════════════════╗
║  DevTeam v3.4 Help                                             ║
╚═══════════════════════════════════════════════════════════════╝

Quick Start
───────────────────────────────────────────────────────────────
  /devteam:plan              Create a project plan
  /devteam:implement         Execute implementation
  /devteam:bug "issue"       Fix a bug
  /devteam:status            Check system status

Common Commands
───────────────────────────────────────────────────────────────
  Plan & Execute
    /devteam:plan            Interactive planning with research
    /devteam:implement       Execute plans, sprints, or tasks
    /devteam:implement --eco Cost-optimized execution

  Bug Fixing
    /devteam:bug             Fix local bugs
    /devteam:issue #123      Fix GitHub issues

  Management
    /devteam:status          System health and costs
    /devteam:list            List plans and tasks
    /devteam:reset           Reset stuck sessions

Get Help on Specific Topics
───────────────────────────────────────────────