devteam-bug
Fix a bug with structured diagnostic workflow. Uses interview to clarify details and Bug Council for complex issues.
Create a new GitHub issue with proper formatting, labels, and context from the codebase.
$ npx -y skills add michael-harris/devteam --skill devteam-issue-new --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/devteam-issue-newContext preview
The summary Claude sees to decide when to auto-load this skill.
Create a new GitHub issue with proper formatting, labels, and context from the codebase.
name: devteam-issue-new description: Create a new GitHub issue with proper formatting, labels, and context from the codebase. argument-hint: "<description>" [--label <label>] [--assignee <user>] user-invocable: true allowed-tools: Read, Glob, Grep, Bash model: sonnet
Repository: !`gh repo view --json nameWithOwner -q .nameWithOwner 2>/dev/null || echo "No GitHub repo detected"` Recent issues: !`gh issue list --limit 5 --json number,title,labels -q '.[] | "#\(.number) \(.title) [\(.labels | map(.name) | join(", "))]"' 2>/dev/null || echo "No issues found"`
**Command:** `/devteam:issue-new "<description>"`
Create a new GitHub issue with proper formatting and labels.
/devteam:issue-new "Login button not working on mobile" /devteam:issue-new "Add dark mode support" --label enhancement /devteam:issue-new "Critical: SQL injection in user search" --label security
Parse the issue description from `$ARGUMENTS` to determine:
**Issue type** (from keywords):
**Affected area** (if detectable):
Search codebase for related files and check for similar existing issues:
# Search for related code grep -r "keyword" --include="*.py" --include="*.ts" -l # Check for similar issues gh issue list --search "description keywords" # Check recent commits in related area git log --oneline -10 -- related/paths/
Create well-structured issue body with:
gh issue create \
--title "${title}" \
--body "${body}" \
--label "${labels}"Show created issue number, URL, labels, and suggest next steps:
| Detected Keywords | Labels Applied | |------------------|----------------| | bug, error, broken, not working | `bug` | | add, feature, implement | `enhancement` | | slow, performance, timeout | `performance` | | security, vulnerability, injection | `security`, `priority: high` | | critical, urgent | `priority: high` | | docs, documentation | `documentation` |
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.