templates/seed/skills/gh/SKILL.md
# gh — GitHub CLI Operations You have access to `gh` (GitHub CLI) for repository and project management. ## Issues ```bash gh issue list # List open issues gh issue list --label "bug" # Filter by label gh issue view <number> # View issue details gh issue create --title "..." --body "..." # Create issue gh issue close <number> # Close issue gh issue comment <number> --body "..." # Add comment ``` ## Pull Re
npx skillsauth add agents-squads/squads-cli templates/seed/skills/ghInstall 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.
You have access to gh (GitHub CLI) for repository and project management.
gh issue list # List open issues
gh issue list --label "bug" # Filter by label
gh issue view <number> # View issue details
gh issue create --title "..." --body "..." # Create issue
gh issue close <number> # Close issue
gh issue comment <number> --body "..." # Add comment
gh pr list # List open PRs
gh pr view <number> # View PR details
gh pr create --title "..." --body "..." # Create PR
gh pr merge <number> # Merge PR
gh pr review <number> --approve # Approve PR
gh pr checks <number> # View CI status
gh pr diff <number> # View PR diff
gh repo view # View repo info
gh repo clone <owner/repo> # Clone repo
gh api repos/<owner>/<repo> # Raw API access
gh run list # List recent runs
gh run view <id> # View run details
gh run watch <id> # Watch run in progress
gh search repos "<query>" # Search repos
gh search issues "<query>" # Search issues
gh search prs "<query>" # Search PRs
Fixes #Ngh pr checks before mergingdevelopment
Capture learnings after completing work. Use when finishing a task, fixing a bug, discovering a pattern, or learning something worth remembering for future sessions. Helps build institutional memory.
tools
Squads CLI reference for autonomous agents — run squads, manage memory, check status, set goals, and operate the AI workforce. TRIGGER when using squads commands, dispatching agents, reading/writing memory, checking squad status, or operating the autonomous loop.
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------