원클릭으로
github-issues
List, create, close, comment on, and triage GitHub issues and pull requests via the gh CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
List, create, close, comment on, and triage GitHub issues and pull requests via the gh CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create or update SKILL.md packages with deterministic frontmatter, clear trigger descriptions, and valid command/script execution mappings.
Narrative summarization, storytelling, and long-form synthesis in Sigrid's voice — named after the Viking court poets who kept memory alive through story.
Maintain stable user and project facts across sessions using workspace memory files and runtime memory state.
Schedule reminders and recurring tasks with the `cron` tool (add/list/remove/enable/disable/run).
Read, write, and search local Obsidian vault markdown files via the filesystem.
Remote-control tmux sessions for interactive CLIs by sending keystrokes and capturing pane output.
| name | github-issues |
| description | List, create, close, comment on, and triage GitHub issues and pull requests via the gh CLI. |
| always | false |
| script | gh_issues |
| metadata | {"clawlite":{"emoji":"🐙","requires":{"bins":["gh","git"]},"auth":{"optionalEnv":["GH_TOKEN"]}}} |
Use this skill for GitHub issue and PR management using the gh CLI.
gh auth status # verify active session
gh auth login # interactive login
# or set GH_TOKEN env var for headless operation
gh issue list --repo owner/repo --state open --limit 20
gh issue list --repo owner/repo --label bug --assignee @me
gh issue view 123 --repo owner/repo
gh issue create --repo owner/repo --title "Title" --body "Body" --label bug
gh issue close 123 --repo owner/repo
gh issue comment 123 --repo owner/repo --body "comment text"
gh issue edit 123 --repo owner/repo --add-label "priority:high"
gh pr list --repo owner/repo --state open
gh pr view 456 --repo owner/repo
gh pr create --title "Fix bug" --body "Fixes #123" --base main
gh pr merge 456 --squash --repo owner/repo
gh pr review 456 --approve --body "LGTM"
gh issue list --search "is:issue is:open label:bug" --repo owner/repo
gh pr list --search "is:pr is:open review-requested:@me"