com um clique
github-cli
// Interact with GitHub using the gh CLI - PRs, issues, repos, releases, and actions. Trigger terms: github, gh, pull request, PR, issue, release, actions, workflow, repo.
// Interact with GitHub using the gh CLI - PRs, issues, repos, releases, and actions. Trigger terms: github, gh, pull request, PR, issue, release, actions, workflow, repo.
| name | github-cli |
| description | Interact with GitHub using the gh CLI - PRs, issues, repos, releases, and actions. Trigger terms: github, gh, pull request, PR, issue, release, actions, workflow, repo. |
git directly)gh CLI installed| Action | Command |
|---|---|
| List PRs | gh pr list |
| View PR | gh pr view <number> |
| Create PR | gh pr create --title "..." --body "..." |
| Checkout PR | gh pr checkout <number> |
| Merge PR | gh pr merge <number> |
| PR diff | gh pr diff <number> |
| PR checks | gh pr checks <number> |
| Action | Command |
|---|---|
| List issues | gh issue list |
| View issue | gh issue view <number> |
| Create issue | gh issue create --title "..." --body "..." |
| Close issue | gh issue close <number> |
| Comment | gh issue comment <number> --body "..." |
| Action | Command |
|---|---|
| Clone | gh repo clone <owner>/<repo> |
| Fork | gh repo fork <owner>/<repo> |
| View repo | gh repo view |
| Create release | gh release create <tag> --title "..." --notes "..." |
| List releases | gh release list |
| Action | Command |
|---|---|
| List runs | gh run list |
| View run | gh run view <run-id> |
| Watch run | gh run watch <run-id> |
| Rerun failed | gh run rerun <run-id> --failed |
| List workflows | gh workflow list |
REST API:
gh api repos/<owner>/<repo>/pulls
gh api repos/<owner>/<repo>/issues/<number>/comments
GraphQL (for data not exposed by gh pr view):
# List PR review threads (gh pr view doesn't expose these)
gh api graphql -F owner=<owner> -F name=<repo> -F number=<pr> -f query='
query($owner:String!, $name:String!, $number:Int!){
repository(owner:$owner,name:$name){
pullRequest(number:$number){
reviewThreads(first:100){
nodes{id isResolved isOutdated comments(first:50){nodes{id author{login} body}}}
pageInfo{hasNextPage endCursor}
}
}
}
}'
# Resolve a review thread
gh api graphql -F threadId=<threadId> -f query='
mutation($threadId:ID!){
resolveReviewThread(input:{threadId:$threadId}){thread{isResolved}}
}'
Pagination: If pageInfo.hasNextPage is true, repeat with after: "<endCursor>".
gh auth status shows authenticatedgh pr list or gh issue list to find itemsgh pr checks or gh run list--draft for work-in-progress PRsgh pr merge --squash for clean historygh run list after pushing to verify CIgh pr view doesn't expose them)Boss agent skill for orchestrating parallel worker missions. The boss coordinates, delegates, and integrates — it NEVER does implementation work directly.
Worker agent skill for missions spawned by an orchestrator boss. Focuses on completing the assigned task quickly and reporting status clearly.
Retrieve and manage secrets using Bitwarden Secrets Manager CLI (bws). Trigger terms: bitwarden, secrets, bws, secret, api key, credentials, password.
Resolves review threads on open PRs (Bugbot or human), fixing valid issues and replying when not applicable. Triggers: bugbot, review issues, bot review, github action review, unresolved review threads, review conversations.
Extract audio and transcode MP4 to WebM using ffmpeg.
Manage the Open Agent library (skills, agents, commands, tools, rules, MCPs, workspace templates, config profiles) via Library API tools. Trigger terms: library, skill, agent, command, tool, rule, MCP, template, save skill, create skill, config profile, configs.