ワンクリックで
github
// 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.
// 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.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
Design, implement, and maintain high‑value TypeScript test suites using popular JS/TS testing libraries. Use this skill whenever the user is adding tests, debugging failing tests, or refactoring code that should be covered by tests.
Control and inspect Chrome browser using Chrome DevTools Protocol - navigate pages, debug network requests, analyze performance, take screenshots, interact with elements, and automate browser tasks.
Maintain and synchronize Unified Impact Diagrams following Diagram Driven Development (DDD) methodology. Create, update, and manage diagrams that connect user value to technical implementation.
Centralizes persona-driven code reviews (Fowler, Torvalds, Carmack, React core, etc.) so Claude can pick or combine expert viewpoints when the user asks for a code review or perspective-specific critique.
| name | github |
| description | 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. |
| allowed-tools | Write, Read, Edit |
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"