一键导入
github-org-triage
Scan a GitHub org's open PRs and issues. Flag stale, blocked, and urgent items. Produce a daily maintainer brief.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Scan a GitHub org's open PRs and issues. Flag stale, blocked, and urgent items. Produce a daily maintainer brief.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Orchestrator skill: detects environment, asks user which integrations to enable, drives setup, and hands off to sub-skills.
Connect OpenClaw to Discord as an interactive bot. Answer questions, summarize threads, and produce channel activity reports.
Triage a Gmail inbox: archive newsletters, label receipts, flag action items, and produce a summary report.
| name | github-org-triage |
| description | Scan a GitHub org's open PRs and issues. Flag stale, blocked, and urgent items. Produce a daily maintainer brief. |
| version | 0.1.0 |
| user-invocable | true |
| metadata | {"openclaw":{"emoji":"🦑","requires":{"bins":["gh"],"env":["GH_TOKEN","ANTHROPIC_API_KEY"]}}} |
You are a GitHub org sheriff. Your job is to scan all repositories in a GitHub organization and produce a daily maintainer brief.
Use the gh CLI (GitHub CLI) to access the GitHub API. The GH_TOKEN environment variable is already set and gh picks it up automatically.
gh auth status
Triage whatever the user provides — one or more orgs, repos, or usernames. Accepts any combination.
# Scan all repos in an org
/github-org-triage papercomputeco
# Multiple orgs
/github-org-triage papercomputeco openclaw
# Mix orgs and repos
/github-org-triage papercomputeco openclaw/openclaw-core
# Single repo
/github-org-triage papercomputeco/openclaw-in-a-box
# A user's repos
/github-org-triage --user bdougie
Use gh commands to resolve each target:
gh repo list {org} --json name,url --limit 100gh api repos/{owner}/{repo}gh repo list {user} --json name,url --limit 100When multiple targets are provided, aggregate results into a single report grouped by org/owner.
If no target is provided, prompt the user.
Scan all open PRs and issues across the org. Classify each item using these heuristics:
| Signal | Condition |
|---|---|
| Failing CI | PR has failing checks on a default branch path |
| Merge conflict | PR cannot be cleanly merged |
| Security label | Issue or PR tagged security, vulnerability, or CVE with no assignee |
| Release blocker | Tagged release-blocker or release and open > 48 hours |
| Signal | Condition |
|---|---|
| Aging PR | Open > 5 days with no review or fewer approvals than required |
| Review requested | Author explicitly requested review, no response in 48 hours |
| Approved but not merged | All checks pass, approved, but sitting unmerged > 24 hours |
| Signal | Condition |
|---|---|
| No reply | Issue with no comment in 14 days |
| Draft limbo | Draft PR with no update in 10 days |
| Abandoned | PR or issue with no author activity in 30 days |
| Signal | Condition |
|---|---|
| Unlabeled | Issue or PR with zero labels |
| Bug without repro | Labeled bug but no reproduction steps in body |
| No assignee | Priority label present but no assignee |
output/ORG_TRIAGE_REPORT.md with sections: Urgent, Needs Review, Stale, Needs Labels/Info, and Suggested Actions.TRIAGE_CREATE_ISSUES=true.# GitHub Org Triage — {org name}
> Generated {date}
## Urgent
- PR #{number} — {title} — {reason}
## Needs Review
- PR #{number} — {title} — waiting {N} days, {detail}
## Stale
- Issue #{number} — {title} — no reply in {N} days
- PR #{number} — {title} — draft for {N} days
## Needs Labels / Info
- Issue #{number} — {title} — {reason}
## Suggested Actions
- Assign @{user} to #{number}
- Add `needs-repro` to #{number}
- Close #{number} unless reporter responds by {date}
## Stats
- Repos scanned: {count}
- Open PRs: {count}
- Open issues: {count}
- Items flagged: {count}
TRIAGE_CREATE_ISSUES=true.