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

plan计划

Agent Skill

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

总安装

13,379

周安装

536

GitHub Stars

6

下载量

4,331
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/hyperb1iss/hyperskills --skill plan

简介

plan 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或来源线索快速定位结果。
  • 通过 npx skills add 命令从 hyperb1iss/hyperskills 仓库安装。
  • 安装前需确认权限范围和维护状态,避免触发联网或文件操作。
  • 建议参考原始 README 了解具体规划逻辑和使用方式。

SKILL.md

Structured Planning

Verification-driven task decomposition with Sibyl-native tracking. Mined from 200+ real planning sessions — the plans that actually survived contact with code.

Core insight: Plans fail when steps can't be verified. Decompose until every step has a concrete check. Track in Sibyl so plans survive context windows.

The Process

digraph planning {
    rankdir=TB;
    node [shape=box];

    "1. SCOPE" [style=filled, fillcolor="#e8e8ff"];
    "2. EXPLORE" [style=filled, fillcolor="#ffe8e8"];
    "3. DECOMPOSE" [style=filled, fillcolor="#e8ffe8"];
    "4. VERIFY & APPROVE" [style=filled, fillcolor="#fff8e0"];
    "5. TRACK" [style=filled, fillcolor="#e8e8ff"];

    "1. SCOPE" -> "2. EXPLORE";
    "2. EXPLORE" -> "3. DECOMPOSE";
    "3. DECOMPOSE" -> "4. VERIFY & APPROVE";
    "4. VERIFY & APPROVE" -> "5. TRACK";
    "4. VERIFY & APPROVE" -> "3. DECOMPOSE" [label="gaps found", style=dashed];
}

Phase 1: SCOPE

Bound the work before exploring it.

Actions

  1. Search Sibyl for related tasks, decisions, prior plans: sibyl search "<feature keywords>" sibyl task list -s todo
  2. Define success criteria — what does "done" look like?

- Measurable outcomes (tests pass, endpoint returns X, UI renders Y) - NOT vague goals ("improve performance" → "p95 latency < 200ms")

  1. Identify constraints:

- Files/modules that CAN'T change - Dependencies that must be respected - Timeline or budget considerations

  1. Classify complexity: Scale Description Planning Depth Quick fix < 3 files, clear solution Skip to implementation Feature 3-10 files, known patterns Light plan (this skill) Epic 10+ files, new patterns Full plan + orchestration Redesign Architecture change Full plan + research first

Gate

If this is a quick fix, stop planning and go build. Planning a 5-minute fix is waste.


Phase 2: EXPLORE

Understand the codebase surface area before decomposing.

Actions

  1. Map the impact surface — which files/modules will this touch?

- Spawn an Explore agent if the scope is uncertain - Read the actual code, don't guess from file names

  1. Identify existing patterns:

- How does similar functionality work in this codebase? - What conventions exist? (naming, file structure, test patterns)

  1. Find the dependencies:

- What must exist before this can work? - What will break if we change X?

Output

A mental model of the change surface:

"This touches: [module A] (new endpoint), [module B] (type changes), [module C] (tests). Pattern follows [existing feature X]. Depends on [infrastructure Y] being available."

Phase 3: DECOMPOSE

Break work into verifiable steps. Every step must have a check.

The Verification Rule

A step without a verification method is not a step — it's a hope.

For each task, define:

FieldDescription
WhatSpecific implementation action
FilesExact files to create/modify
VerifyHow to confirm it works
Depends onWhich tasks must complete first

Verification Methods

MethodWhen to Use
typecheckType changes, interface additions
testLogic, edge cases, integrations
lintStyle, formatting, import order
buildBuild system changes
visualUI changes (screenshot or browser check)
curl/httpieAPI endpoint changes
manualOnly when no automation exists

Decomposition Heuristics

  • 2-5 minute tasks are the sweet spot. If a task takes > 15 minutes, break it further.
  • One concern per task. "Add endpoint AND write tests" is two tasks.
  • Order by dependency, not difficulty. Foundation first.
  • Mark parallelizable tasks. Tasks with no shared files can run simultaneously.

Task Format

## Task [N]: [Imperative title]

**Files:** `src/path/file.ts`, `tests/path/file.test.ts`
**Depends on:** Task [M]
**Parallel:** Yes/No (can run alongside Task [X])

### Implementation

[2-4 bullet points of what to do]

### Verify

- [ ] `pnpm typecheck` passes
- [ ] `pnpm test -- file.test.ts` passes
- [ ] [specific assertion about behavior]

Parallelizability Markers

Mark tasks that can run simultaneously for orchestration:

Wave 1 (foundation):  Task 1, Task 2  [parallel]
Wave 2 (core):        Task 3, Task 4  [parallel, depends on Wave 1]
Wave 3 (integration): Task 5          [sequential, depends on Wave 2]
Wave 4 (polish):      Task 6, Task 7  [parallel, depends on Wave 3]

Phase 4: VERIFY & APPROVE

Review the plan before executing it.

Self-Check

Before presenting to the user, verify:

  • Every task has a verification method
  • Dependencies form a DAG (no cycles)
  • No two parallel tasks modify the same files
  • Total scope matches the original success criteria
  • Nothing is over-engineered (YAGNI check)

Present for Approval

Show the plan as a structured list with waves:

## Plan: [Feature Name]

**Success criteria:** [measurable outcome]
**Estimated tasks:** [N] across [M] waves
**Parallelizable:** [X]% of tasks can run in parallel

### Wave 1: Foundation

- [ ] Task 1: [title] → verify: [method]
- [ ] Task 2: [title] → verify: [method]

### Wave 2: Core Implementation

- [ ] Task 3: [title] → verify: [method] (depends: 1)
- [ ] Task 4: [title] → verify: [method] (depends: 2)

### Wave 3: Integration

- [ ] Task 5: [title] → verify: [method] (depends: 3, 4)

Gap Analysis

After presenting, explicitly check:

  • "Is there anything missing from this plan?"
  • "Should any of these tasks be combined or split further?"
  • "Are the success criteria right?"

Phase 5: TRACK

Register the plan in Sibyl for persistence.

Actions

  1. Create a Sibyl task for the feature: sibyl task create --title "[Feature]" -d "[success criteria]" --complexity epic
  2. Create sub-tasks for each plan step: sibyl task create --title "Task 1: [title]" -e [epic-id] -d "[implementation + verify]"
  3. Record the plan decision: sibyl add "Plan: [feature]" "[N] tasks across [M] waves. Key decisions: [architectural choices]. Dependencies: [critical path]."

Adaptive Replanning

Plans change when they meet reality. When a task reveals unexpected complexity:

  1. Don't force through. Pause and reassess.
  2. Update the plan — add/remove/modify tasks.
  3. Update Sibyl — keep the tracking current.
  4. Communicate — "Task 3 revealed [X]. Adjusting plan: [changes]."

Execution Handoff

Once the plan is approved, hand off to the right tool:

SituationHandoff
3-5 simple tasks, user presentExecute directly with verification gates
5-15 tasks, mixed parallel/hyperskills:orchestrate with wave strategy
Large epic, 15+ tasksOrchestrate with Epic Parallel Build strategy
Needs more research first/hyperskills:research before executing

Trust Gradient for Execution

PhaseReview LevelWhen
Full ceremonyImplement + spec review + code reviewFirst 3-4 tasks
StandardImplement + spec reviewTasks 5-8, patterns stabilized
LightImplement + quick verifyLate tasks, established patterns

This is earned confidence, not cutting corners.


Anti-Patterns

Anti-PatternFix
Planning a five-minute fixBuild directly and verify
Tasks without verificationAdd a concrete check or split the task
Parallel tasks touching the same filesSequence them or repartition ownership
Planning from filenames onlyRead the actual code path before decomposing
Treating the first plan as permanentReplan when reality reveals new constraints

What This Skill is NOT

  • Not required for simple tasks. If the solution is obvious, just build it.
  • Not a design doc generator. Plans are action lists, not architecture documents.
  • Not a blocker. If the user says "just start building," start building. You can plan in parallel.
  • Not rigid. Plans adapt. The first plan is a hypothesis.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.3%
按下载量换算1,486

Claude

30.17%
按下载量换算1,307

Cursor

19.4%
按下载量换算840

Gemini CLI

9.67%
按下载量换算419

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills