Agent skill · Security

github

GitHub operations via `gh` CLI: issues, PRs, CI runs, code review, API queries. Use when: (1) checking PR status or CI, (2) creating/commenting on issues, (3) listing/filtering PRs or issues, (4) viewing run logs. NOT for: complex web UI interactions requiring manual browser flows (use browser tooling when available), bulk operations across many repos (script with gh api), or when gh auth is not configured.

SafeAI-Lab-Xgithub.com/SafeAI-Lab-XGitHub ↗
claude-code
Install
npx skills add SafeAI-Lab-X/ClawKeeper --skill github --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Path: legacy/clawkeeper-watcher/skills/github/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,034
Language: TypeScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# GitHub Skill Use the `gh` CLI to interact with GitHub repositories, issues, PRs, and CI. ## When to Use ✅ **USE this skill when:** - Checking PR status, reviews, or merge readiness - Viewing CI/workflow run status and logs - Creating, closing, or commenting on issues - Creating or merging pull requests - Querying GitHub API for repository data - Listing repos, releases, or collaborators ## When NOT to Use ❌ **DON'T use this skill when:** - Local git operations (commit, push, pull, branch) → use `git` directly - Non-GitHub repos (GitLab, Bitbucket, self-hosted) → different CLIs - Cloning repositories → use `git clone` - Reviewing actual code changes → use `coding-agent` skill - Complex multi-file diffs → use `coding-agent` or read files directly ## Setup ```bash # Authenticate (one-time) gh auth login # Verify gh auth status ``` ## Common Commands ### Pull Requests ```bash # List PRs gh pr list --repo owner/repo # Check CI status gh pr checks 55 --repo owner/repo # View PR details gh pr view 55 --repo owner/repo # Create PR gh pr create --title "feat: add feature" --body "Description" # Merge PR gh pr merge 55 --squash --repo owner/repo ``` ### Issues ```bash # List issues gh issu

What's inside
Steps it walks through
  1. When to Use
  2. When NOT to Use
  3. Setup
  4. Common Commands
  5. Pull Requests
  6. Issues
  7. CI/Workflow Runs
  8. API Queries
  9. JSON Output
  10. Templates
  11. PR Review Summary
  12. Issue Triage
  13. Notes
Commands it runs
Authenticate (one-time)
gh auth login
Verify
gh auth status
List PRs
gh pr list --repo owner/repo
Check CI status
gh pr checks 55 --repo owner/repo
View PR details
gh pr view 55 --repo owner/repo
More from ClawKeeper
All skills →
About this skill
What does the github skill do?

GitHub operations via `gh` CLI: issues, PRs, CI runs, code review, API queries. Use when: (1) checking PR status or CI, (2) creating/commenting on issues, (3) listing/filtering PRs or issues, (4) viewing run logs. NOT for: complex web UI interactions requiring manual browser flows (use browser tooling when available), bulk operations across many repos (script with gh api), or when gh auth is not configured.

How do I install it?

Run `npx skills add SafeAI-Lab-X/ClawKeeper --skill github --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From SafeAI-Lab-X/ClawKeeper, a repository with 1,034 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going