From devteam
Repository: !`gh repo view --json nameWithOwner -q .nameWithOwner 2>/dev/null || echo "No GitHub repo detected"`
npx claudepluginhub michael-harris/devteam --plugin devteamThis skill uses the workspace's default tool permissions.
Repository: !`gh repo view --json nameWithOwner -q .nameWithOwner 2>/dev/null || echo "No GitHub repo detected"`
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
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 Council