From devteam
Creates formatted GitHub issues with auto-detected labels (bug, enhancement, performance, security), codebase context via grep searches, recent issues check, and gh CLI.
How this skill is triggered — by the user, by Claude, or both
Slash command
/devteam:devteam-issue-newThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Repository: !`gh repo view --json nameWithOwner -q .nameWithOwner 2>/dev/null || echo "No GitHub repo detected"`
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):
bugenhancementperformancesecurity, priority: highpriority: highAffected area (if detectable):
area: authenticationarea: backendarea: frontendarea: databaseSearch 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:
/devteam:issue <number> to fix automaticallygh issue view <number> to view on GitHub| 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 |
--label <label>: Add specific label--assignee <user>: Assign to user--project <name>: Add to project--milestone <name>: Add to milestone/devteam:issue - Fix an existing issue automatically/devteam:bug - Diagnose and fix bugs with Bug Councilnpx claudepluginhub michael-harris/devteam --plugin devteamCreates well-structured GitHub issues using gh CLI with templates for bugs, features, tasks including titles, descriptions, acceptance criteria, and labels. Use for filing bugs or feature requests.
Creates, lists, and views GitHub issues using gh CLI with guided prompts for actions, titles, bodies, and issue types. For repository issue management workflows.
Analyzes codebase impact for a given request and creates structured GitHub issues with AI-verified and human-judgment-needed sections.