Community写作与编辑github.com

arch3rPro/digestpilot

An AI agent toolkit that turns trusted information streams into daily briefs and research-ready evidence.

兼容平台~Claude Code~Codex CLI~Cursor
npx skills add arch3rPro/digestpilot

Ask in your favorite AI

Open a new chat with this agent skill pre-loaded.

文档

Release Watch

Overview

Use this skill when the user asks whether watched software, frameworks, tools, or repositories have new versions and whether those versions are worth upgrading.

Keep this workflow separate from public trend discovery. GitHub releases are upgrade-monitoring signals, not Trend Radar inputs.

Workflow Selection

  • For watched software version updates, use this skill.
  • For public ecosystem trend cards, use public-trend-radar.
  • For ordinary subscribed RSS daily news, use rss-ai-digest.
  • For source quality and registry maintenance, use rss-source-curator.
  • For deep research synthesis from evidence, use subscription-research-agent.

Runtime Command

Examples use subscription-research as a compatibility command. Before running commands, resolve the runtime command:

  • When DIGESTPILOT_BACKEND_URL is available, product actions such as release watch refresh or WebUI-backed upgrade monitoring may use the Backend task API first, then read the resulting workspace output.
  • If the Backend API is unavailable, keep using the local runtime command fallback below. Do not require WebUI, cloud, or a hosted service in generic Agent environments.
  • Use DIGESTPILOT_RUNTIME_CMD when the environment provides a custom runtime command.
  • Use digestpilot-runtime when it is available on PATH.
  • Use subscription-research when only the legacy compatibility command is available on PATH.
  • From a repository checkout without a linked command, replace subscription-research with node packages/research-cli/dist/src/cli.js.
  • Run node scripts/doctor.mjs from the repository root to diagnose local runtime setup.
  • If no runtime command is available but this repository or plugin package includes runtime source, run node scripts/bootstrap-runtime.mjs, then retry the command.

Core Command

Prepare a watchlist:

{
  "repos": [
    {
      "id": "vercel/ai",
      "importance": "high",
      "current_version": "v5.1.0",
      "used_capabilities": ["streaming", "tool-calling"]
    }
  ]
}

Fetch live GitHub releases and render upgrade cards:

subscription-research release watch \
  --watchlist release-watchlist.json \
  --state release-seen.json \
  --mark-seen \
  --format markdown \
  --output release-watch.md

By default, the runtime fetches recent GitHub releases for each watched repository. Set GITHUB_TOKEN when higher GitHub API limits are needed, or pass --github-token-env NAME to read a different token variable.

For offline tests or exported data, pass prepared GitHub release JSON:

subscription-research release watch \
  --watchlist release-watchlist.json \
  --github-releases github-releases.json \
  --state release-seen.json \
  --format markdown

Prepared release JSON uses this shape:

{
  "repositories": [
    {
      "repo": "vercel/ai",
      "releases": [
        {
          "tag_name": "v5.1.1",
          "name": "v5.1.1",
          "html_url": "https://github.com/vercel/ai/releases/tag/v5.1.1",
          "published_at": "2026-06-12T00:00:00Z",
          "body": "Release notes..."
        }
      ]
    }
  ]
}

Output Guidance

Release Watch output should be an upgrade queue, not a trend list.

Use these priorities:

  • upgrade-now: security fixes or urgent fixes that affect watched capabilities.
  • review: breaking changes, major updates, or updates touching watched capabilities.
  • watch: prereleases or unclear impact.
  • ignore: maintenance-only or documentation-only releases.

Markdown output should focus on actionable releases. JSON preserves all cards, including ignored releases, for automation.

When current_version is present in the watchlist, Release Watch adds version_delta, upgrade_action, and current-version context. Use this to distinguish patch upgrades from minor upgrades and major migration reviews.

Boundaries

Do not modify user dependencies, create upgrade PRs, or publish notifications automatically. Produce reviewable upgrade cards and let the user decide the next action.

相关技能

ukint-vs/codex-simplify

Codex-first post-implementation diff cleanup workflow for changed code and docs.

community

SakuraByteCore/codexmate

Local-first AI control plane for Codex, Claude Code, and OpenClaw — one-click provider/model/profile switching, backup-safe config writes, unified session browser, and MCP stdio.

community

coreyhaines31/cro

When the user wants to optimize, improve, or increase conversions on any marketing page or form — including homepage, landing pages, pricing pages, feature pages, lead capture forms, or contact forms. Also use when the user says 'CRO,' 'conversion rate optimization,' 'this page isn't converting,' 'improve conversions,' 'why isn't this page working,' 'my landing page sucks,' 'form abandonment,' 'nobody's converting,' 'low conversion rate,' or 'this page needs work.' Use this even if the user just shares a URL and asks for feedback. For signup/registration flows, see signup. For post-signup activation, see onboarding. For popups/modals, see popups.

community

gwagjiug/technical-writing

Claude Code and Codex skill for developer-facing technical writing

community

cyresearch/chatgpt-memory-extraction

Turn years of ChatGPT conversations into a structured personal memory archive🧠✨

community

dpearson2699/swiftui-webkit

Embeds and controls web content in SwiftUI with WebKit for SwiftUI, including WebView, WebPage, navigation policies, JavaScript execution, observable page state, link interception, local HTML or data loading, and custom URL schemes. Use when building iOS 26+ article/detail views, help centers, in-app documentation, or other embedded web experiences backed by HTML, CSS, and JavaScript.

community