Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

plot-release剧情发布

Agent Skill

plot-release 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

408

周安装

17

GitHub Stars

2

下载量

136
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:plot-release(剧情发布)
来源仓库:https://github.com/eins78/skills
仓库路径:skills/plot-release
安装命令:
npx skills add https://github.com/eins78/skills --skill plot-release
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/eins78/skills --skill plot-release

简介

plot-release 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词或任务场景快速定位候选结果时使用。

  • 它适用于信息收集、线索整理和初步筛选等研究检索类任务,可帮助 Agent 快速缩小范围并生成候选列表。
  • 通过关键词、来源仓库或任务上下文触发,返回结构化结果供进一步分析或人工复核。
  • 安装命令为 npx skills add https://github.com/eins78/skills --skill plot-release,需确认权限与网络访问能力。
  • 使用前应检查维护状态,避免依赖过期或不可靠的外部数据源,确保操作符合最小权限原则。

SKILL.md

Plot: Cut a Release

Create a versioned release from delivered plans. This workflow can be run manually (using git and forge CLI), by an AI agent interpreting this skill, or via a workflow script (once available).

Input: $ARGUMENTS is optional. Can be:

  • rc — cut a release candidate tag and generate a verification checklist
  • A version number (e.g., 1.2.0) or bump type (major, minor, patch) — cut the final release

Examples: /plot-release rc, /plot-release minor, /plot-release 1.2.0

Setup

Add a ## Plot Config section to the adopting project's CLAUDE.md:

## Plot Config
- **Project board:** <your-project-name> (#<number>)  <!-- optional, for `gh pr edit --add-project` -->
- **Branch prefixes:** idea/, feature/, bug/, docs/, infra/
- **Plan directory:** docs/plans/
- **Active index:** docs/plans/active/
- **Delivered index:** docs/plans/delivered/

Model Guidance

StepsMin. TierNotes
1. Determine VersionMidHeuristic: plan types → bump suggestion
2A. RC PathSmallGit tag, template generation
2B. Release NotesMidDiscovery logic, changelog collection
3. Cross-check NotesFrontier (orchestrator) + Small (subagents)Orchestrator compares; small subagents can gather commit messages and plan changelogs in parallel
4-6. Next Steps through SummarySmallTemplate list, no-ops, formatting

1. Determine Version

Check for the latest git tag:

git tag --sort=-v:refname | head -1

If $ARGUMENTS is rc:

  • Determine the target version (same rules as below — check delivered plans, suggest bump type)
  • Check for existing RC tags for this version: git tag --list "v<version>-rc.*"
  • Next RC number: if no existing RCs, use rc.1; otherwise increment
  • Proceed to step 2A (RC path)

If $ARGUMENTS specifies a version (e.g., 1.2.0):

  • Use it directly (validate it's valid semver)
  • Proceed to step 2B (final release path)

If $ARGUMENTS specifies a bump type (major, minor, patch):

  • Calculate the new version from the latest tag
  • Proceed to step 2B (final release path)

If $ARGUMENTS is empty:

  • Check if there's an open RC checklist (docs/releases/v*-checklist.md) with all items checked
  • If yes: propose cutting the final release for that version
  • If no: look at delivered plans since the last release to suggest a bump type:

- Any features → suggest minor - Only bug fixes → suggest patch - Breaking changes noted in changelogs → suggest major

  • If unable to determine bump type from plan metadata, ask the user to specify the version directly
  • Propose the version and confirm with the user
Smaller models: Skip the automatic bump type suggestion. Instead, list the delivered plans with their types and ask the user: "What version should this release be? (major/minor/patch or exact version)" Let the human decide.

2A. RC Path — Cut Release Candidate

Tag the RC:

git tag -a v<version>-rc.<n> -m "Release candidate v<version>-rc.<n>"
git push origin v<version>-rc.<n>

Generate verification checklist:

Collect all delivered plans since the last release (via docs/plans/delivered/ — check the Delivered date in each plan's Status section against the last release tag date). For each delivered feature or bug plan, extract the ## Changelog section and create a checklist item. If a plan has a Sprint: <name> field, include the sprint name alongside the checklist item for context. Sprint completion is informational — it does not block the release.

mkdir -p docs/releases

Write docs/releases/v<version>-checklist.md:

# Release Checklist — v<version>

RC: v<version>-rc.<n> (YYYY-MM-DD)

## Verification

- [ ] <feature/bug slug> — <changelog summary>
- [ ] <feature/bug slug> — <changelog summary>

## Automated Tests

- [ ] CI passes on RC tag

## Sign-off

- [ ] All items verified by: ___
- [ ] Final release approved by: ___
git add docs/releases/v<version>-checklist.md
git commit -m "release: v<version>-rc.<n> checklist"
git push

Summary (RC):

  • RC tag: v<version>-rc.<n>
  • Checklist: docs/releases/v<version>-checklist.md
  • Plans included: list of slugs
  • Progress: [] Draft > [] Approved > [x] Delivered > [*] Released (RC)
  • Suggested next actions:

1. Test against the checklist items 2. If bugs found: fix via bug/ branches, merge, then /plot-release rc for next RC 3. When all items pass: /plot-release to cut the final release

2B. Final Release Path — Generate Release Notes

Check for project-specific release note tooling, then either run it or fall back to manual collection.

Discover tooling — check in this order:

  1. Changesets: Does .changeset/config.json exist? If so, the project uses @changesets/cli.
  2. Project rules: Read CLAUDE.md and AGENTS.md for release note instructions (e.g., custom scripts, specific commands).
  3. Custom scripts: Check package.json for release-related scripts (e.g., release, version, changelog).

If tooling is found: remind the user to run it (e.g., pnpm exec changeset version for changesets). Do not run release tooling automatically — the user controls when and how versions are bumped. Then proceed to step 3 (cross-check).

If no tooling is found: collect changelog entries from delivered plans and present them to the user:

# Get the date of the last release tag (exclude RC tags)
LAST_TAG=$(git tag --sort=-v:refname | grep -v '\-rc\.' | head -1)
if [ -n "$LAST_TAG" ]; then
  LAST_RELEASE_DATE=$(git log -1 --format=%ai "$LAST_TAG" | cut -d' ' -f1)
else
  LAST_RELEASE_DATE="1970-01-01"
fi

# Find delivered plans newer than the last release
ls docs/plans/delivered/ 2>/dev/null

For each delivered plan since the last release:

  1. Read the ## Changelog section
  2. Read the ## Status section for the Type (feature/bug/docs/infra)
  3. Collect the changelog entries

Only include feature and bug plans in the release notes (docs/infra are live when merged — they don't need release).

Present the collected entries to the user and suggest they add them to CHANGELOG.md. Do not write to CHANGELOG.md directly.

3. Cross-check Release Notes

Model tiers for this step: - Frontier (e.g., Opus): Full cross-check — compare changelog entries against delivered plans and commit messages. Can delegate data gathering (reading plans, collecting commit messages) to small subagents. Flag significant gaps (missing features, phantom entries). Don't nitpick wording. - Mid (e.g., Sonnet): Compare changelog entry count against delivered plan count. Can delegate plan reading to small subagents. Flag obvious mismatches (plan with no corresponding entry, entry with no corresponding plan). Skip semantic content comparison. - Small (e.g., Haiku): Skip gap detection. Present the generated release notes and ask: "Do these release notes look complete?" Human review is the final gate.

Whether generated by tooling or manually constructed, compare the changelog against the actual work:

  1. Collect the list of delivered plans and commit messages since the last tag
  2. Compare against the generated changelog entries
  3. Only flag significant gaps or errors — e.g., a delivered feature completely missing from the changelog, or a changelog entry that doesn't match any actual work
  4. Don't nitpick wording or minor omissions — offer improvements only if there are clear, meaningful gaps
  5. If gaps are found, show them to the user and ask whether to fix before proceeding

This cross-check is the primary value of /plot-release — verifying that release notes accurately reflect delivered work.

4. Recommended Next Steps

Present a numbered list of actions for the user to confirm:

  1. Update CHANGELOG.md with the collected entries (if not already done by tooling)
  2. Bump version in package.json (if applicable): pnpm version <version> --no-git-tag-version
  3. Commit: git commit -am "release: v<version>"
  4. Tag: git tag -a v<version> -m "Release v<version>"
  5. Push: git push origin main && git push origin v<version>

Offer to execute these steps only if the user confirms. Do not run them automatically.

5. Clean Up RC Artifacts

If RC tags exist for this version, they remain in git history (don't delete them — they're part of the release record). The checklist file at docs/releases/v<version>-checklist.md stays committed as documentation of what was verified.

6. Summary

Print:

  • Version: v<version>
  • Plans included:

- <slug> — - <slug>

  • Cross-check result: complete / gaps found
  • RC iterations: (if any)
  • Progress: [] Draft > [] Approved > [] Delivered > [x] Released
  • Status: what remains to be done (version bump, tag, push, etc.)
  • Suggested next actions:

1. If version bump/tag/push still needed: follow the steps from step 4 2. Run /plot to verify clean state 3. Start next cycle: /plot-idea or /plot-sprint

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.84%
按下载量换算50

Claude

32.72%
按下载量换算44

Cursor

16.96%
按下载量换算23

Gemini CLI

8.83%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills