Agent Skills
› opensquilla/opensquilla
› meta-github-pr-watch-digest
meta-github-pr-watch-digest
GitHub每日自动检查用户GitHub开放PR、失败CI及新Issue,利用gh CLI汇总为待审、等待我处理、CI故障三类,并持久化跟进事项至长期记忆。
Trigger Scenarios
需要每日进行GitHub PR队列分类时
用户要求查看或总结当前GitHub状态时
Install
npx skills add opensquilla/opensquilla --skill meta-github-pr-watch-digest -g -y
SKILL.md
Frontmatter
{
"kind": "meta",
"name": "meta-github-pr-watch-digest",
"always": false,
"triggers": [
"PR 巡检",
"PR digest",
"github 巡检",
"watch my prs"
],
"provenance": {
"origin": "opensquilla-original",
"license": "Apache-2.0"
},
"composition": {
"steps": [
{
"id": "pull_prs",
"with": {
"task": "List open PRs in the relevant repos: those awaiting my review, those I authored that received new comments, and any failing CI runs. Filter scope from this user prompt: {{ inputs.user_message | xml_escape | truncate(256) }}"
},
"skill": "github"
},
{
"id": "digest",
"with": {
"text": "{{ outputs.pull_prs }}",
"style": "bulleted",
"max_words": 400
},
"skill": "summarize",
"depends_on": [
"pull_prs"
]
},
{
"id": "memorize",
"kind": "tool_call",
"tool": "memory_save",
"tool_args": {
"mode": "append",
"path": "memory\/pr-watch.md",
"content": "{{ outputs.digest }}"
},
"depends_on": [
"digest"
],
"tool_allowlist": [
"memory_save"
]
}
]
},
"description": "Inspect the user's open GitHub PRs \/ failing CI \/ new issues via `gh`, summarize into 3 buckets (to-review \/ awaiting-me \/ CI-red), and persist follow-ups to memory.",
"meta_priority": 45
}
GitHub PR Watch & Digest (Meta-Skill)
Daily PR-queue triage: pulls open PRs / failing CI / new comments via
the github skill (gh CLI), digests into three actionable buckets, and
records follow-ups to long-term memory.
Fallback
LLM should manually call gh pr list, gh run list --status failure,
summarize, and memory_save.
Version History
- 7f72a32 Current 2026-07-05 18:40


