Agent Skillsopensquilla/opensquilla › meta-github-pr-watch-digest

meta-github-pr-watch-digest

GitHub

每日自动检查GitHub开放PR、失败CI及新Issue,利用gh CLI汇总为待审、等待本人、CI故障三类,并持久化跟进记录至记忆。

src/opensquilla/skills/exp/meta-github-pr-watch-digest/SKILL.md opensquilla/opensquilla

触发场景

需要每日同步GitHub PR状态 监控CI构建失败情况 整理代码审查队列

安装

npx skills add opensquilla/opensquilla --skill meta-github-pr-watch-digest -g -y
更多选项

非标准路径

npx skills add https://github.com/opensquilla/opensquilla/tree/main/src/opensquilla/skills/exp/meta-github-pr-watch-digest -g -y

不安装直接使用

npx skills use opensquilla/opensquilla@meta-github-pr-watch-digest

指定 Agent (Claude Code)

npx skills add opensquilla/opensquilla --skill meta-github-pr-watch-digest -a claude-code -g -y

安装 repo 全部 skill

npx skills add opensquilla/opensquilla --all -g -y

预览 repo 内 skill

npx skills add opensquilla/opensquilla --list

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.

版本历史

  • 7f72a32 当前 2026-07-05 18:40

同 Skill 集合

src/opensquilla/skills/bundled/advanced-dubbing-studio/SKILL.md
src/opensquilla/skills/bundled/ai-video-script/SKILL.md
src/opensquilla/skills/bundled/audio-cog/SKILL.md
src/opensquilla/skills/bundled/awesome-webpage-image-download/SKILL.md
src/opensquilla/skills/bundled/awesome-webpage-research/SKILL.md
src/opensquilla/skills/bundled/AwesomeWebpageMetaSkill/SKILL.md
src/opensquilla/skills/bundled/cron/SKILL.md
src/opensquilla/skills/bundled/docx/SKILL.md
src/opensquilla/skills/bundled/filesystem/SKILL.md
src/opensquilla/skills/bundled/git-diff/SKILL.md
src/opensquilla/skills/bundled/github/SKILL.md
src/opensquilla/skills/bundled/history-explorer/SKILL.md
src/opensquilla/skills/bundled/html-coder/SKILL.md
src/opensquilla/skills/bundled/html-to-pdf/SKILL.md
src/opensquilla/skills/bundled/http-fetch/SKILL.md
src/opensquilla/skills/bundled/latex-compile/SKILL.md
src/opensquilla/skills/bundled/memory/SKILL.md
src/opensquilla/skills/bundled/music-and-singing-studio/SKILL.md
src/opensquilla/skills/bundled/nano-banana-pro-openrouter/SKILL.md
src/opensquilla/skills/bundled/nano-banana-pro/SKILL.md
src/opensquilla/skills/bundled/nano-pdf/SKILL.md
src/opensquilla/skills/bundled/openrouter-video-generator/SKILL.md
src/opensquilla/skills/bundled/paper-abstract-author/SKILL.md
src/opensquilla/skills/bundled/paper-citation-planner/SKILL.md
src/opensquilla/skills/bundled/paper-experiment-stub/SKILL.md
src/opensquilla/skills/bundled/paper-outline-author/SKILL.md
src/opensquilla/skills/bundled/paper-preference-planner/SKILL.md
src/opensquilla/skills/bundled/paper-refbib-stub/SKILL.md
src/opensquilla/skills/bundled/paper-revision-author/SKILL.md
src/opensquilla/skills/bundled/paper-section-author/SKILL.md
src/opensquilla/skills/bundled/paper-source-curator/SKILL.md
src/opensquilla/skills/bundled/pptx/SKILL.md
src/opensquilla/skills/bundled/seedance-2-prompt/SKILL.md
src/opensquilla/skills/bundled/skill-creator-linter/SKILL.md
src/opensquilla/skills/bundled/skill-creator-proposals/SKILL.md
src/opensquilla/skills/bundled/skill-creator-smoke-test/SKILL.md
src/opensquilla/skills/bundled/srt-from-script/SKILL.md
src/opensquilla/skills/bundled/stack-trace-generic-probe/SKILL.md
src/opensquilla/skills/bundled/stack-trace-go-probe/SKILL.md
src/opensquilla/skills/bundled/stack-trace-js-probe/SKILL.md
src/opensquilla/skills/bundled/stack-trace-python-probe/SKILL.md
src/opensquilla/skills/bundled/stack-trace-rust-probe/SKILL.md
src/opensquilla/skills/bundled/subtitle-burner/SKILL.md
src/opensquilla/skills/bundled/swe-bench/SKILL.md
src/opensquilla/skills/bundled/text-file-read/SKILL.md
src/opensquilla/skills/bundled/title-card-image/SKILL.md
src/opensquilla/skills/bundled/video-merger/SKILL.md
src/opensquilla/skills/bundled/video-still-animator/SKILL.md
src/opensquilla/skills/bundled/voice-clone-lab/SKILL.md
src/opensquilla/skills/bundled/voice-conversion-studio/SKILL.md

元信息

文件数
0
版本
5e8cfba
Hash
613977c5
收录时间
2026-07-05 18:40

首页 - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-06 16:05
浙ICP备14020137号-1 $访客地图$