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

plan-execution计划执行

Agent Skill

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

总安装

442

周安装

19

GitHub Stars

2

下载量

155
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/armagnac/agent-skills --skill plan-execution

简介

用于在任务前查找、检索和筛选相关信息。

  • 适合根据关键词、任务场景或来源线索快速定位候选结果,支持多宿主环境协作。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,使用前需确认权限和维护状态。
  • 建议检查是否会触发联网、命令执行或文件读写操作,确保符合安全策略。
  • 可结合来源仓库和原始 README 进一步核验具体用法和适用边界。

SKILL.md

Plan Execution Skill

This skill auto-activates when the user references an existing plan or wants to continue working from one.

Trigger phrases:

  • "continue the plan"
  • "next task"
  • "run task 2.1"
  • "what's the plan status"
  • "mark task X done"
  • References to plans/*.plan.md files

For creating new plans: Use /superplan <description> command instead.


Core Behaviors

When User Says "next task" or "continue the plan"

Execute the /plan next flow:

  1. Find the active plan (plans/*.plan.md with status in-progress)
  2. Parse for the first unchecked [] task whose dependencies are all [x]
  3. Show task details and ask for confirmation
  4. Implement, verify, mark complete, commit

When User Says "run task X.Y"

  1. Find the active plan
  2. Locate the specific task by ID (e.g., 2.1)
  3. Check dependencies are met
  4. If dependencies unmet, warn: "Task 2.1 depends on 1.3 which is incomplete. Proceed anyway? (y/n)"
  5. Implement, verify, mark complete, commit

When User Says "what's the plan status"

Execute the /plan status flow — show progress table for all plans.

When User Says "mark task X done"

  1. Find the task in the plan file
  2. Update [] to [x] with completion date
  3. Show updated progress

Plan File Parsing

Reading a Plan

Plans follow this structure:

  • # Plan: <title> — main heading
  • | Status | <value> | — in metadata table
  • ## Milestone N: <name> — milestone headings
  • ### N.M [] <title> — pending task
  • ### N.M [x] <title> *(completed YYYY-MM-DD)* — completed task

Finding Dependencies

Each task has a **Dependencies:** field:

  • None — can run immediately
  • 1.1 — depends on task 1.1
  • 1.1, 1.2 — depends on both tasks 1.1 and 1.2
  • Milestone 1 — depends on all tasks in milestone 1

A dependency is met when the referenced task(s) have [x].

Updating Task Status

When marking a task complete, replace:

### 2.1 [ ] Add API endpoint

with:

### 2.1 [x] Add API endpoint *(completed 2026-03-21)*

Updating Plan Status

  • When first task starts: change | Status | draft | to | Status | in-progress |
  • When all tasks complete: change to | Status | complete |

Task Execution Flow

When implementing a task from the plan:

1. Read Full Context

  • Read the entire plan file (not just the current task)
  • Understand what was built before (completed tasks)
  • Understand what comes next (future tasks)
  • Check architecture decisions section for relevant context

2. Implement

  • Follow the task's What specification
  • Modify only the Files listed (unless the task clearly requires additional files)
  • Follow existing codebase patterns and style guides

3. Verify (Acceptance Gate — mandatory)

Go through each bullet in the task's Acceptance criteria one by one and explicitly confirm it passes:

  • Run the exact commands or checks described
  • For UI changes: use browser automation, take screenshots
  • For backend changes: make API calls, check database

If any criterion fails:

  1. Fix the issue and re-verify all criteria (retry 1)
  2. If still failing, fix again and re-verify (retry 2)
  3. After 2 retries still failing: stop, do NOT mark [x], and report to the user exactly which criterion failed and what you observed. Do not guess further.

Only proceed to the next step when all acceptance criteria pass.

4. Run Code Quality Checks

  • Run whatever code quality tooling the project provides (linting, type checking, tests)
  • If the project has a dedicated code-checks command or script, use it

5. Update Plan

  • Mark task [x] with completion date
  • Update plan status if needed
  • Add notes to Architecture Decisions if you learned something important

6. Commit

Create a commit with message format:

Plan <N.M>: <Task Title>

Include both the code changes AND the plan file update in the same commit.

7. Report Progress

Show:

  • What was completed
  • Current progress (X/Y tasks, percentage)
  • What's next (next executable task)

Multi-Agent Execution

For tasks that have independent subtasks (e.g., frontend + backend work), use parallel agents:

Task 2.1: Add user settings page
+-- Agent 1 (backend-specialist): Create API endpoint
+-- Agent 2 (frontend-specialist): Create React component
+-- Merge results, verify integration

Only parallelize when the task spec explicitly mentions independent frontend/backend work.


Handling Plan Changes

If during implementation you discover the plan needs changes:

  1. Minor adjustment (file paths wrong, small scope change): Update the plan file directly and note it
  2. Significant change (new task needed, task should be removed, reordering): Flag to user before changing
  3. Architecture change: Update the Architecture Decisions section and discuss with user

Never silently deviate from the plan. If you need to do something different from what's specified, say so.


Integration Points

The plan system works with whatever tools and commands the project provides:

WhatHow
Creating plans/plan <description> command
Code qualityRun project-specific checks after each task
PR creationUse project's PR workflow when milestone or full plan is complete
Self-reviewReview changes before marking milestone complete
Ticket trackingPlan metadata links to issue tracker ticket if applicable

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.68%
按下载量换算57

Claude

32.92%
按下载量换算51

Cursor

18.24%
按下载量换算28

Gemini CLI

9.13%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills