Agent skill
gha
GitHub Actions workflow management — trigger, monitor, and debug CI runs
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/gha
SKILL.md
/gha — GitHub Actions Manager
Quick access to GitHub Actions workflows via gh CLI.
Commands
Check CI Status
gh run list --limit 5
View Specific Run
gh run view <run-id>
gh run view <run-id> --log-failed # Show only failed step logs
Watch Running Workflow
gh run watch <run-id>
Trigger Workflow
gh workflow run <workflow-name> --ref <branch>
Rerun Failed Jobs
gh run rerun <run-id> --failed
Common Workflows
| Workflow | Trigger | Purpose |
|---|---|---|
| CI | Push to PR | TypeScript check + Vitest + Playwright |
| Deploy Preview | PR to develop | Vercel preview deployment |
| Production | Merge to main | Vercel production deployment |
Usage Patterns
- After pushing a PR:
gh run list --limit 1to check CI started - CI failed:
gh run view <id> --log-failedto see failure details - Flaky test:
gh run rerun <id> --failedto retry just the failed job - Deploy status:
gh run list --workflow=deploy.yml --limit 3
Tips
- Use
--jsonflag for machine-readable output gh run download <id> -n <artifact>to get test artifacts- Combine with
/task-completewhich auto-checks CI before merge
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?