<< All versions
Skill v1.0.1
currentAutomated scan100/100agents-squads/squads-cli/gh
4 files
──Details
PublishedJune 20, 2026 at 06:53 PM
Content Hashsha256:0771b53bb38e4015...
Git SHA64c957c83ad0
Bump Typepatch
──Files
Files (1 file, 1.8 KB)
SKILL.md1.8 KBactive
SKILL.md · 61 lines · 1.8 KB
version: "1.0.1"
gh — GitHub CLI Operations
You have access to gh (GitHub CLI) for repository and project management.
Issues
bash
gh issue list # List open issuesgh issue list --label "bug" # Filter by labelgh issue view <number> # View issue detailsgh issue create --title "..." --body "..." # Create issuegh issue close <number> # Close issuegh issue comment <number> --body "..." # Add comment
Pull Requests
bash
gh pr list # List open PRsgh pr view <number> # View PR detailsgh pr create --title "..." --body "..." # Create PRgh pr merge <number> # Merge PRgh pr review <number> --approve # Approve PRgh pr checks <number> # View CI statusgh pr diff <number> # View PR diff
Repository
bash
gh repo view # View repo infogh repo clone <owner/repo> # Clone repogh api repos/<owner>/<repo> # Raw API access
Workflow Runs
bash
gh run list # List recent runsgh run view <id> # View run detailsgh run watch <id> # Watch run in progress
Search
bash
gh search repos "<query>" # Search reposgh search issues "<query>" # Search issuesgh search prs "<query>" # Search PRs
Best Practices
- Check before creating: Search existing issues/PRs before creating duplicates
- Use labels: Filter and organize with labels
- Link issues: Reference issues in PR descriptions with
Fixes #N - Review CI: Always check
gh pr checksbefore merging