skills/github/SKILL.md
Manage GitHub issues using gh CLI - create, list, view, update, close, and assign issues. Use when working with GitHub issues, bug tracking, or project management tasks.
npx skillsauth add artivilla/agents-config githubInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Complete GitHub issue management using the gh CLI tool. This Skill provides comprehensive capabilities for creating, viewing, updating, and managing GitHub issues.
For detailed instructions on each operation, see:
/create-issue or ask me to create oneREQUIRED: Before executing ANY GitHub issue operations, you MUST load the relevant reference file(s) using the Read tool. These references contain essential command patterns, parameters, and workflows that are NOT included in this overview.
When the user asks to work with GitHub issues:
CREATE_ISSUE.md FIRSTLIST_ISSUES.md FIRSTVIEW_ISSUE.md FIRSTUPDATE_ISSUE.md FIRSTCLOSE_ISSUE.md FIRSTASSIGN_ISSUE.md FIRSTDO NOT attempt to execute GitHub issue commands without first loading and reading the relevant reference documentation.
--body-file for issue bodies to avoid shell escaping issues$$ in temp file names to avoid conflicts (expands to process ID)User: "I found a bug where login fails with special characters"
Me: *Creates issue with details from conversation*
User: "Show me all open bugs assigned to alice"
Me: gh issue list --state open --label bug --assignee alice
User: "Add high-priority label to issue #123"
Me: gh issue edit 123 --add-label "high-priority"
User: "Close issue #456, it was fixed in the last PR"
Me: gh issue close 456 --comment "Fixed in PR #789"
development
Review UI code against Vercel's Web Interface Guidelines. Use when checking interactions, animation, layout, content, accessibility, performance, and design standards with MUST/SHOULD/NEVER rules.
development
Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".
development
React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.
development
React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.