Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

plot-idea情节想法

Agent Skill

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

总安装

1

周安装

17

GitHub Stars

2

下载量

140
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

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

SKILL.md

Plot: Create Idea

Create a plan for review: idea branch, plan file, and draft PR.

Input: $ARGUMENTS in the format <slug>: <title description>

Example: /plot-idea sse-backpressure: Handle SSE client disconnects gracefully

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. Parse InputSmallString parsing
2. Pre-flight ChecksSmall (hard gate), Mid (soft warning)Slug collision is mechanical; title similarity needs mid-tier
3-8. Create Branch through SummarySmallGit/gh commands, templates, file ops

The entire skill is small-model capable except the soft duplicate warning (title similarity in step 2).

1. Parse Input

If $ARGUMENTS is empty or missing:

  • Look at the conversation context for clues about what the user wants to plan
  • If obvious, propose: "It looks like you want to plan <slug>: <title>. Shall I proceed?"
  • Otherwise ask: "What's the idea? Usage: /plot-idea <slug>: <title>"

Extract slug and title from $ARGUMENTS:

  • Everything before the first : is the slug (trimmed)
  • Everything after is the title (trimmed)
  • If no : found, treat the entire input as the slug and ask for a title
  • Slug must match [a-z0-9-]+ (lowercase letters, digits, hyphens only). If it doesn't, ask the user to fix it rather than silently normalizing

Batch Mode

If the user provides multiple slugs (comma-separated or as a list), or asks to create multiple plans "in batch" or "together":

  1. Parse each <slug>: <title> pair
  2. Create a single branch: idea/batch-<first-slug> (or a name the user provides)
  3. Create all plan files on that branch, each with its own file and active symlink
  4. Create a single PR titled "Plan:,,..."

The plans are still independent after approval — /plot-approve processes each slug separately.

Detection: Multiple : entries in $ARGUMENTS, words like "batch"/"together"/"all at once" in conversation context, or an explicit list of slugs.

2. Pre-flight Checks

  • Warn if working tree has uncommitted changes (offer to stash)
  • Verify gh auth status has project scope
  • Check that branch idea/<slug> does not already exist (if it does, ask whether to check it out or pick a new name)
  • Duplicate detection:

- ls docs/plans/active/ 2>/dev/null + gh pr list --json headRefName --jq '.[].headRefName' | grep '^idea/' to find existing plans and idea branches - Hard gate: if a plan with the identical slug already exists (file or branch), stop and ask the user to pick a different name - Soft warning: if any existing plan title shares 3+ significant words with the proposed title, warn the user and ask to confirm this is intentionally separate work (only check Draft/Approved plans, not Delivered ones)

Smaller models: Skip the title similarity check. Enforce the hard gate (identical slug) only. Ask the user: "Could not check for similar plan titles. Please verify manually that this doesn't overlap with existing plans."

3. Create Branch

git fetch origin main
git checkout -b idea/<slug> origin/main

4. Create Plan File

CREATE_DATE=$(date -u +%Y-%m-%d)

Write docs/plans/${CREATE_DATE}-<slug>.md using the template from skills/plot/templates/plan.md, substituting <title> and <slug>.

Ask the user what Type to use, presenting this reference:

TypeUse whenExamples
featureNew user-facing functionalityAPI endpoint, UI component, CLI command
bugFixing a defectCrash fix, data corruption, incorrect output
docsDocumentation-onlyREADME updates, API docs, guides
infraCI, build, tooling, release automationGitHub Actions, Dockerfile, linter config, deps

Always ask — don't infer from the title.

5. Create Active Symlink and Commit

mkdir -p docs/plans/active docs/plans/delivered
ln -s ../${CREATE_DATE}-<slug>.md docs/plans/active/<slug>.md
git add docs/plans/${CREATE_DATE}-<slug>.md docs/plans/active/<slug>.md
git commit -m "plot: <title>"
git push -u origin idea/<slug>

6. Create PR

Create a draft PR (plan is still being written/refined):

gh pr create \
  --draft \
  --title "Plan: <title>" \
  --body "$(cat <<'EOF'
## Plan

See [`docs/plans/${CREATE_DATE}-<slug>.md`](../blob/idea/<slug>/docs/plans/${CREATE_DATE}-<slug>.md) on this branch.

Refine the plan, then mark ready for review with `gh pr ready`. Once reviewed, run `/plot-approve <slug>` to merge and start implementation.

---
*Created with `/plot-idea`*
EOF
)"

7. Add to Project Board

Read the ## Plot Config section from CLAUDE.md for the project board name. If configured:

gh pr edit <number> --add-project "<project board name>"

If no project board is configured, skip this step.

8. Summary

Print:

  • Branch: idea/<slug>
  • Plan file: docs/plans/<CREATE_DATE>-<slug>.md
  • Active index: docs/plans/active/<slug>.md (symlink)
  • PR URL (draft)
  • Progress: [x] Draft > [] Approved > [] Delivered > [] Released
  • Suggested next actions:

1. Refine the plan (especially Branches and Design sections) 2. When ready for review: gh pr ready <number> 3. After review: /plot-approve <slug> - *Alternative:* add to a sprint with /plot-sprint <sprint> then add [<slug>] as an item

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.17%
按下载量换算52

Claude

28.02%
按下载量换算39

Cursor

16.92%
按下载量换算24

Gemini CLI

9.88%
按下载量换算14

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/eins78/skills --skill plot-idea 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills