.claude/skills/tooling/github/SKILL.md
GitHub CLI patterns for PRs, issues, and repository management.
npx skillsauth add brdohman/agile-maestro 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.
GitHub CLI patterns for the 5WTH Tracker workflow.
gh pr create --title "[title]" --body "[body]"
gh pr create --title "feat(dashboard): add user dashboard" --body "$(cat <<EOF
## Summary
- Added user dashboard component
- Integrated with user service
- Added loading and error states
## Tasks
- [task-t4] Create user service
- [task-t5] Add API routes
## Test Coverage
- 87% overall
- All critical rules covered
EOF
)"
# Pull Requests
gh pr create # Create PR
gh pr view # View current PR
gh pr checks # View CI status
gh pr merge # Merge PR
gh pr close # Close without merge
# Issues
gh issue create # Create issue
gh issue list # List issues
gh issue view [number] # View issue
# Repository
gh repo view # View repo info
gh repo clone [repo] # Clone repo
# Actions
gh run list # List workflow runs
gh run view [id] # View run details
gh run watch [id] # Watch run in real-time
main (always deployable)
├── phase-1-[name]
│ ├── commit: step 1.1
│ ├── commit: step 1.2
│ └── (merge when phase complete)
├── phase-2-[name]
│ └── ...
<type>(<scope>): <description> (task-xxx)
Types: feat, fix, test, docs, refactor, chore
https://cli.github.com/manual/
testing
XCTest patterns for macOS Swift apps. Unit tests, async tests, Core Data tests, mock patterns, and assertion reference. Use when writing or reviewing tests.
tools
How to transition workflow state between review stages. Rules for setting review_stage and review_result fields on Stories and Epics.
documentation
Comment structure and rules for task workflow updates. Use when adding any comment to a task during implementation, review, or fix cycles.
testing
Validate task/story/epic/bug/techdebt metadata against schema v2.0. Run after TaskCreate or TaskUpdate to verify compliance. Returns pass/fail with actionable details.