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

plot-deliver情节交付

Agent Skill

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

总安装

416

周安装

17

GitHub Stars

2

下载量

135
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于查找、检索和筛选相关信息。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合在关键词搜索或任务场景中快速定位候选结果。
  • 使用时可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态,避免触发敏感操作。
  • plot-deliver 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Plot: Deliver Plan

Verify all implementation is done, then deliver the plan. 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).

For docs/infra work, this is the end — live when merged. For features/bugs, /plot-release follows when the team is ready to cut a versioned release.

Input: $ARGUMENTS is the <slug> of a plan on main.

Example: /plot-deliver sse-backpressure

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-4. Parse through Verify PRsSmallGit/gh commands, helper script, state checks
5. Verify CompletenessFrontier (orchestrator) + Small (subagents)Orchestrator extracts deliverables and consolidates; small subagents gather PR diffs in parallel
6. Release Note CheckSmallFile existence checks
7-8. Deliver and SummarySmallFile ops, git commands, template

Step 5 is the prime example of subagent delegation: a frontier orchestrator handles the judgment (extracting deliverables, consolidating Done/Partial/Missing), while small subagents handle the data collection (running gh pr diff, reading PR metadata) in parallel. Without subagents, the frontier model does everything sequentially.

1. Parse Input

If $ARGUMENTS is empty or missing:

  • List active plans: ls docs/plans/active/ 2>/dev/null
  • If exactly one exists, propose: "Found plan <slug>. Deliver it?"
  • If multiple exist, list them and ask which one to deliver
  • If none exist, explain: "No active plans found in docs/plans/active/."

Extract slug from $ARGUMENTS (trimmed, lowercase, hyphens only).

2. Verify Plan Exists

Check that an active plan exists for this slug: ls docs/plans/active/<slug>.md on main.

  • If not in active/, check docs/plans/delivered/<slug>.md — if found there: "Already delivered."
  • Also check the Phase field in the plan file — if already Delivered, stop.
  • If not found anywhere: "No plan found for <slug>."

Resolve the symlink to find the actual plan file path (e.g., docs/plans/YYYY-MM-DD-<slug>.md).

3. Read and Parse Plan

Read the plan file (resolved from the active/ symlink) and parse the ## Branches section for PR references. If the plan has a Sprint: <name> field in its Status section, extract it for the summary.

Expected format after /plot-approve:

- `feature/name` — description → #12

4. Verify All PRs Merged

Run the helper:

../plot/scripts/plot-impl-status.sh <slug>

Or for each PR number found in the Branches section:

gh pr view <number> --json state,isDraft --jq '{state: .state, isDraft: .isDraft}'
  • If all are MERGED: proceed to step 5
  • If any are OPEN:

- If any open PRs have isDraft: true, list them and run gh pr ready <number> to mark each one ready for review — this is part of the delivery flow, not optional - List all remaining open PRs and ask the user: "These PRs are still open. Merge them first, or deliver anyway?" - If user declines, stop and list the unfinished PRs

  • If any are CLOSED (not merged): warn — these need manual attention

5. Verify Plan Completeness

Model tiers for this step: - Frontier (e.g., Opus): Full deliverable extraction, parallel PR diff review via subagents (small-model subagents gather diffs, frontier consolidates), Done/Partial/Missing checklist. - Mid (e.g., Sonnet): Extract deliverables and check PR titles/descriptions (skip full diff review). Can delegate PR metadata collection to small subagents. Present a simplified checklist based on PR metadata rather than code changes. Ask user to verify. - Small (e.g., Haiku): Skip entirely. Verify all PRs are merged (step 4), then ask: "All implementation PRs are merged. Ready to deliver this plan?" Human judgment is the final gate.

Compare what the plan promised against what was actually delivered.

  1. Extract deliverables from the plan file. Look for actionable items in sections like ## Design, ## Branches, or bulleted lists that describe what should be built. Number each deliverable for reference.
  2. Gather PR evidence using parallel subagents. Launch one Task agent per merged PR to review what was implemented:

- Each agent receives the PR number and the full list of deliverables. - Each agent runs gh pr diff <number> and reads the PR body via gh pr view <number> --json title,body,files. - Each agent returns: which deliverables (by number) are addressed by that PR, with a one-line summary of the evidence for each. - Launch all PR agents in parallel since they are independent.

  1. Consolidate results. Merge the per-PR reports into a single checklist. For each deliverable, mark it:

- Done — clear evidence in one or more PRs - Partial — some work done but not fully matching the plan - Missing — no evidence found in any PR

  1. Present the checklist to the user and ask to confirm the plan is complete enough to deliver.

- If all items are done: "All deliverables verified. Proceed with delivery?" - If any are partial/missing: list them and ask "Deliver anyway, or hold off?" - If the user declines, stop — do not deliver.

6. Check for Release Note Entries

For feature and bug plans, check whether release note entries exist:

Discover release note tooling — check in this order, stop at first match:

  1. Changesets: Does .changeset/config.json exist? If so, the project uses @changesets/cli. Check if .changeset/*.md files (excluding README.md) exist on main.
  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 no tooling is found, skip this step.

If tooling was found but no release note entries exist for this plan's work, warn the user: "No release note entries found for this feature. Consider adding one before releasing."

This is a warning, not a blocker — proceed with delivery regardless.

Skip this step entirely for docs/infra plans (they don't need release notes).

7. Deliver Plan

The plan file stays in place — only the symlink moves from active/ to delivered/.

git checkout main && git pull origin main

# Update Phase field in the plan file
# Change **Phase:** Approved → **Phase:** Delivered
# Add - **Delivered:** YYYY-MM-DD to the Status section
DELIVER_DATE=$(date -u +%Y-%m-%d)

# Move symlink from active/ to delivered/
git rm docs/plans/active/<slug>.md
ln -s ../YYYY-MM-DD-<slug>.md docs/plans/delivered/<slug>.md
git add docs/plans/delivered/<slug>.md docs/plans/YYYY-MM-DD-<slug>.md

Update sprint file (if the plan has a Sprint: field): find the [<slug>] item in the sprint file, check the box, and update the annotation:

- [x] [slug] description <!-- pr: #<number>, status: merged -->
git add docs/sprints/
git commit -m "plot: deliver <slug>"
git push

(Replace YYYY-MM-DD-<slug>.md with the actual date-prefixed filename from the resolved symlink.)

8. Summary

Print:

  • Delivered: <slug>
  • Plan file: docs/plans/YYYY-MM-DD-<slug>.md (unchanged location)
  • Index: moved from active/ to delivered/
  • All implementation PRs: merged
  • If the plan has a Sprint field: show sprint progress ("N/M sprint items delivered")
  • Progress: [] Draft > [] Approved > [x] Delivered > [] Released
  • Type reminder:

- If feature/bug: "Run /plot-release when ready to cut a versioned release." - If docs/infra: "Live on main — no release needed."

  • Tip: Run /plot to see overall status and what to do next

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.19%
按下载量换算52

Claude

27.44%
按下载量换算37

Cursor

19.08%
按下载量换算26

Gemini CLI

8.87%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills