一键导入
github-issues
GitHub issue management — create, update, label, milestone, and link issues to PRs via gh CLI or curl fallback.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
GitHub issue management — create, update, label, milestone, and link issues to PRs via gh CLI or curl fallback.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Compress conversation context — summarize the current session, extract key decisions and facts, then compact history to free up context window.
Generate insights about your Claude Code usage — what topics you work on most, common patterns, productivity trends.
Route Claude Code work by complexity, risk, and tool needs. Use when deciding how much reasoning depth a task needs, whether to read project memory first, whether the task should be decomposed, and whether the work is lightweight, standard, or investigation-heavy.
Query Polymarket prediction markets for probability data and research insights on real-world events.
Search and retrieve academic papers from arXiv using their free REST API. No API key needed.
Query Base (Ethereum L2) blockchain data — wallet balances, token info, transactions, gas analysis, contract inspection. No API key required.
| name | github-issues |
| description | GitHub issue management — create, update, label, milestone, and link issues to PRs via gh CLI or curl fallback. |
| version | 1.0.0 |
| author | hermes-CCC (ported from Hermes Agent by NousResearch) |
| license | MIT |
| metadata | {"hermes":{"tags":["GitHub","Issues","Project-Management","Automation","Triage"],"related_skills":["github-code-review","github-pr-workflow","github-auth"]}} |
Full issue lifecycle management using the gh CLI. Every command has a curl fallback for machines without gh.
gh auth login (or set GH_TOKEN env var)GITHUB_TOKEN and know your OWNER/REPOexport OWNER=myorg
export REPO=myrepo
export GITHUB_TOKEN=ghp_...
# Open issues
gh issue list
# Filter by label, assignee, state
gh issue list --state open --label bug --assignee @me
# All states
gh issue list --state all --limit 50
# curl fallback
curl -H "Authorization: token $GITHUB_TOKEN" \
"https://api.github.com/repos/$OWNER/$REPO/issues?state=open&per_page=20"
gh issue view 123
# Open in browser
gh issue view 123 --web
# curl fallback
curl -H "Authorization: token $GITHUB_TOKEN" \
"https://api.github.com/repos/$OWNER/$REPO/issues/123"
gh issue create \
--title "Fix null pointer in auth module" \
--body "Steps to reproduce:\n1. ...\n2. ..." \
--label "bug,priority:high" \
--assignee @me
# Interactive
gh issue create
# curl fallback
curl -X POST \
-H "Authorization: token $GITHUB_TOKEN" \
-H "Content-Type: application/json" \
"https://api.github.com/repos/$OWNER/$REPO/issues" \
-d '{"title":"Fix null pointer","body":"...","labels":["bug"]}'
# Add label
gh issue edit 123 --add-label "priority:high"
# Remove label
gh issue edit 123 --remove-label "needs-triage"
# Change assignee
gh issue edit 123 --add-assignee username
# Set milestone
gh issue edit 123 --milestone "v2.0"
# Change title
gh issue edit 123 --title "New title"
gh issue comment 123 --body "Looking into this now."
# curl fallback
curl -X POST \
-H "Authorization: token $GITHUB_TOKEN" \
-H "Content-Type: application/json" \
"https://api.github.com/repos/$OWNER/$REPO/issues/123/comments" \
-d '{"body":"Looking into this now."}'
gh issue close 123
gh issue close 123 --reason "completed"
gh issue close 123 --comment "Fixed in #456"
gh issue reopen 123
gh issue list --search "error in production"
gh issue list --search "label:bug created:>2024-01-01"
# GitHub search syntax
gh issue list --search "is:open is:issue assignee:@me"
Reference issues in PR body or commits:
Fixes #123
Closes #456
Resolves #789
GitHub auto-closes linked issues when PR merges.
# Close all issues with a label
gh issue list --label "wontfix" --json number --jq '.[].number' | \
xargs -I{} gh issue close {} --reason "not planned"
# List issues as JSON
gh issue list --json number,title,labels,assignees --limit 100
# List milestones
gh api repos/$OWNER/$REPO/milestones
# Create milestone
gh api repos/$OWNER/$REPO/milestones \
--method POST \
-f title="v2.0" \
-f due_on="2024-06-01T00:00:00Z"
# List labels
gh label list
# Create label
gh label create "priority:high" --color FF0000 --description "Urgent"
# Clone labels from another repo
gh label clone owner/source-repo
Create .github/ISSUE_TEMPLATE/bug_report.md:
---
name: Bug Report
about: Report a bug
labels: bug
---
## Description
## Steps to Reproduce
## Expected vs Actual
## Environment