一键导入
octocat
Git and GitHub wizard using gh CLI for all git operations and GitHub interactions
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Git and GitHub wizard using gh CLI for all git operations and GitHub interactions
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Fast headless browser for QA testing and site dogfooding. Navigate any URL, interact with elements, verify page state, diff before/after actions, take annotated screenshots, check responsive layouts, test forms and uploads, handle dialogs, and assert element states. ~100ms per command. Use when you need to test a feature, verify a deployment, dogfood a user flow, or file a bug with evidence.
Design consultation: understands your product, researches competitors, proposes a complete design system (aesthetic, typography, color, layout, spacing, motion), and generates font+color preview pages. Creates DESIGN.md as your project's design source of truth. For existing sites, use /plan-design-review to infer the system instead.
Post-ship documentation update. Reads all project docs, cross-references the diff, updates README/ARCHITECTURE/CONTRIBUTING/CLAUDE.md to match what shipped, polishes CHANGELOG voice, cleans up TODOS, and optionally bumps VERSION.
CEO/founder-mode plan review. Rethink the problem, find the 10-star product, challenge premises, expand scope when it creates a better product. Three modes: SCOPE EXPANSION (dream big), HOLD SCOPE (maximum rigor), SCOPE REDUCTION (strip to essentials).
Designer's eye review of a live site. Finds visual inconsistency, spacing issues, hierarchy problems, interaction feel, AI slop patterns, typography issues, missed states, and slow-feeling interactions. Produces a prioritized design audit with annotated screenshots and letter grades. Infers your design system and offers to export as DESIGN.md. Report-only — never modifies code. For the fix loop, use /qa-design-review instead.
Eng manager-mode plan review. Lock in the execution plan — architecture, data flow, diagrams, edge cases, test coverage, performance. Walks through issues interactively with opinionated recommendations.
| name | octocat |
| description | Git and GitHub wizard using gh CLI for all git operations and GitHub interactions |
| metadata | {"tags":"git, github, gh-cli, version-control, merge-conflicts, pull-requests"} |
Use this skill proactively for:
When invoked:
GitHub operations via gh CLI:
gh pr create --base main --head <branch> --title "<title>" --body-file <file>--body-file (or stdin with --body-file -) for multi-line PR bodies to avoid broken escaping$'line1\n\nline2') instead of raw \ngh pr checks <num> --watch 2>&1 and proactively fix failuresgh help <command> before using them in guidance--body has newline escaping issues. Use --body-file with a temp file:
cat > /tmp/pr-body.md << 'EOF'
Line 1
Line 2
Line 3
EOF
gh pr create --body-file /tmp/pr-body.md