Agent Skills
› serithemage/serverless-openclaw
› solo-maintainer-inbox
solo-maintainer-inbox
GitHub面向独立维护者,自动化处理PR和Issue队列。执行变更检测、安全审查、验证测试及标签分类,自动合并安全PR或关闭重复问题,提升单人维护效率。
Trigger Scenarios
需要批量审核和合并Pull Request
需要快速分类和处理GitHub 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:02


