en un clic
gh
GitHub workflow automation using gh CLI
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
GitHub workflow automation using gh CLI
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Keep a GitLab issue's native Status in sync with its merge requests, and start implementing an issue by assigning it to the current user and setting the active milestone. Use when asked to start work on an issue, update an issue's status as MRs progress, or track issue state through the dev/review/complete lifecycle.
Run commands in a temporary tmux pane with full interactive zsh environment (login shell, shims, PATH, aliases, TTY).
Hammerspoon macOS automation. Config in ~/.hammerspoon/. Modules: init.lua, spaces, sleepwake, urlrouter, httpserver, meetings, webcam. Keywords: hammerspoon, hs, lua, audiodevice, hotkey, caffeinate, httpserver, Stream Deck, Rectangle Pro, blueutil, AirPods, URL routing, webcam, uhubctl. Use when: editing ~/.hammerspoon/ files, debugging Hammerspoon modules, adding Hammerspoon features, checking Hammerspoon logs.
Use before any Git branch operation in this repo. SSOT for the branch naming convention (<username>/<issue-id>/<branch-name>) — load before creating a branch instead of guessing the name. Also provides helpers for finding a branch's parent, rebasing related branches, force-pushing feature branches, and understanding commit or diff structure across stacked Git branches.
Iteratively test and refine prompts, skills, and agent configurations using opencode run
Inspect GitLab local ClickHouse tables, schemas, ingestion paths, and data patterns. Use for CH table questions, DESCRIBE TABLE, schema/source-of-truth checks under db/click_house, ClickHouse ingestion debugging, and investigating aggregates, distributions, or anomalous data in the GitLab repo.
Basé sur la classification professionnelle SOC
| name | gh |
| description | GitHub workflow automation using gh CLI |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","workflow":"github"} |
GitHub workflow management using gh CLI for pull requests, issues, and Actions runs.
See references/WORKFLOW.md for PR preparation, body formatting, and workflow checks.
See references/WORKFLOW.md for issue-body formatting and preparation guidance.
# List runs for current repo
gh run list
# View run details and failed logs
gh run view <run-id>
gh run view <run-id> --log-failed
# Re-run a failed workflow
gh run rerun <run-id>
# Watch a run until completion
gh run watch <run-id>
# List issues/PRs
gh issue list --label "bug" --assignee "@me"
gh pr list --author "@me"
# View details
gh issue view 123
gh pr view 456
# Review and merge
gh pr review 456 --approve
gh pr merge 456 --merge
See references/WORKFLOW.md for the detailed workflow and drafting rules.