Agent Skills
› serithemage/serverless-openclaw
› solo-maintainer-inbox
solo-maintainer-inbox
GitHub为独立维护者提供自动化 PR 和 Issue 管理技能。自动分类、检测可疑变更、执行验证测试,并安全合并或关闭 PR 与 Issue,提升单人维护效率。
Trigger Scenarios
需要批量处理 GitHub PR 和 Issue
独立开发者需自动化代码审查流程
Install
npx skills add serithemage/serverless-openclaw --skill solo-maintainer-inbox -g -y
SKILL.md
Frontmatter
{
"name": "solo-maintainer-inbox",
"description": "Triage issues and pull requests for a solo maintainer. Detect suspicious changes, validate safe PRs, label and comment when needed, and merge or close normal work automatically.",
"argument-hint": "[optional focus, e.g. prs|issues|all]"
}
Solo Maintainer Inbox
Required Context
Read the shared policy first:
PR Workflow
- Snapshot the queue with
gh pr list --state open. - For each PR, gather metadata with
gh pr view --jsonand inspect changed files withgh pr diff --name-only. - Detect stacked PRs before merging. Merge ancestors first or mark superseded PRs clearly.
- Apply the suspicious-change policy. If triggered, stop merge/release actions for that PR.
- For safe PRs, run path-appropriate verification:
- docs-only: formatting or docs checks relevant to the changed files
- runtime, infra, or workflow changes:
npm run build,npm run lint,npm run test,npm run test:e2e
- Merge safe, green, mergeable PRs with a linear-history-friendly method such as
gh pr merge --squash --delete-branch.
Issue Workflow
- Snapshot the issue queue with
gh issue list --state open. - Label and classify issues quickly: bug, docs, security, cost, ops, release blocker, or duplicate.
- Request missing reproduction data only when the repository cannot infer it from context.
- Close duplicates, obsolete reports, or already-fixed issues when evidence is clear.
Output Discipline
- Leave short evidence for each merge, close, or stop decision.
- When stopping for suspicious work, preserve changed files, failed checks, and the exact trigger from the shared policy.
Version History
- 504300d Current 2026-07-25 09:03


