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

ultraplanultraplan 搜索

Agent Skill

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

总安装

1,175

周安装

48

GitHub Stars

3

下载量

380
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/6missedcalls/ultraplan --skill ultraplan

简介

用于查找、检索和筛选相关信息。ultraplan 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 注意是否会触发联网或文件读写操作。

SKILL.md

UltraPlan: Deep Implementation Planning

Task

$ARGUMENTS

Activation

You are entering a deep planning session. This is NOT quick planning — this is a thorough, multi-phase process that produces a battle-tested implementation plan before any code is written.

CRITICAL: READ-ONLY MODE. You MUST NOT create, modify, or delete any files except the plan file. No edits, no commits, no installs, no state changes. You do NOT have access to file editing tools for anything other than the plan file. This supersedes any other instructions.

Setup

Check for existing plan: If .ultraplan/plan.md already exists, read it first. Ask the user: "I found an existing plan — continue refining it, or start fresh?" If continuing, skip to the phase that makes sense given the plan's current state.

New plan: Create the plan file at .ultraplan/plan.md:

mkdir -p .ultraplan

Gather git context immediately (read-only):

git status --short
git log --oneline -5
git branch --show-current

This grounds the plan in the repo's actual state — current branch, recent work, uncommitted changes.

Write an initial skeleton to .ultraplan/plan.md — headers and rough notes only. You'll fill it in incrementally as you learn. Don't wait until the end to start writing.

Context survival: The plan file on disk is your persistent state. If the conversation gets long and context compresses, the plan file survives. Always write findings to the file incrementally — don't hold state only in conversation memory.


The Planning Loop

Repeat this cycle until the plan is complete:

  1. Explore — Use Glob, Grep, Read, and Bash (read-only: ls, git status, git log, git diff, find, cat, head, tail) to read code. Actively search for existing functions, utilities, and patterns that can be reused — avoid proposing new code when suitable implementations already exist. Use the Explore agent type to parallelize complex searches without filling your context.
  2. Update the plan file — After each discovery, immediately capture what you learned in .ultraplan/plan.md. Don't wait until the end.
  3. Ask the user — When you hit an ambiguity or decision you can't resolve from code alone, use AskUserQuestion. Batch related questions together. Then go back to step 1.

Phase 1: Requirements Interview

Goal: Build a shared understanding of what needs to happen and why.

First turn strategy: Quickly scan 3-5 key files to form an initial understanding. Then write a skeleton plan (headers and rough notes) and ask the user your first round of questions. Don't explore exhaustively before engaging the user.

Interview rules:

  • Never ask what you could find out by reading the code
  • Batch related questions together in a single AskUserQuestion call (use multi-question format)
  • Focus on things only the user can answer: requirements, preferences, tradeoffs, edge case priorities
  • Scale depth to the task — vague feature requests need many rounds; focused bug fixes may need one or none

Good questions:

  • "The auth system uses JWT — should I keep that pattern or is there a reason to switch?"
  • "I found 3 places this pattern is used. Should the change propagate to all of them?"
  • "There's a tradeoff between X (simpler) and Y (more extensible). Which matters more here?"
  • "While exploring I found [adjacent issue]. Include it in this plan or track separately?"
  • "The minimum viable change is [X]. The complete change also needs [Y, Z]. Where should I draw the line?"

Bad questions (find the answer yourself):

  • "What framework are you using?"
  • "Where is the config file?"
  • "What does this function do?"

Phase 2: Deep Codebase Exploration

Goal: Comprehensive understanding of every file and pattern that will be affected.

Launch parallel Explore agents (Agent tool, subagent_type: "Explore") for efficiency. Each agent is a file search specialist — give it a specific, focused mission:

When to use how many agents:

  • 1 agent: task is isolated to known files, user provided specific file paths, small targeted change
  • 2 agents: scope is uncertain, two distinct areas of the codebase are involved
  • 3 agents: multiple areas involved, need to understand existing patterns before planning

Exploration strategies by task type:

Breadth-first discovery:

  • Agent 1: Data layer (models, schemas, database)
  • Agent 2: Business logic (services, utilities, core)
  • Agent 3: Presentation layer (components, routes, API endpoints)

Feature trace:

  • Agent 1: Trace from UI → API → service → database
  • Agent 2: Find all related tests and similar features as reference implementations

Impact analysis:

  • Agent 1: What directly changes
  • Agent 2: What indirectly depends on the changed code (imports, callers, consumers)

For each exploration, capture in the plan file:

  • Existing functions/utilities to reuse (with file_path:line_number)
  • Architectural patterns the codebase follows
  • Dependencies and coupling between components
  • Test infrastructure available
  • Similar features to use as reference implementations

Phase 3: Architecture Design

Goal: Design the implementation approach grounded in what you found.

Launch Plan agents (Agent tool, subagent_type: "Plan") with comprehensive context from Phase 2 including file paths and code traces, requirements from Phase 1, and a request for detailed implementation strategy.

For complex tasks with genuine architectural ambiguity, launch multiple Plan agents with different perspectives in parallel. Each agent receives the same context but a different design lens:

Task TypePerspective APerspective BPerspective C
New featureSimplicity — minimal files, lowest riskPerformance — optimized data flowMaintainability — clean, extensible
Bug fixRoot cause — fix the underlying issueWorkaround — minimal change, ship fastPrevention — fix + add guards
RefactoringMinimal — smallest diff that worksClean architecture — proper separationIncremental — phased migration

Each Plan agent must end with:

### Critical Files for Implementation
List 3-5 files most critical for implementing this plan:
- path/to/file1.ts
- path/to/file2.ts
- path/to/file3.ts

Phase 4: Plan Synthesis

Goal: Write the final plan file — concise enough to scan in under a minute, detailed enough to execute without guessing.

Update .ultraplan/plan.md with the final structure:

# Implementation Plan: [Title]

## Context
[One line: what is being changed and why — the problem, what prompted it, intended outcome]

## Changes

### [Component/Module 1]
- **File**: `path/to/file.ts:line`
- **Change**: [Specific change description]
- **Reuses**: `existingFunction()` from `path/to/utils.ts:42`

### [Component/Module 2]
- **File**: `path/to/file2.ts:line`
- **Change**: [Specific change description]

## Implementation Sequence
1. [First step — file path and what changes]
2. [Second step — file path and what changes]
3. [Third step — file path and what changes]

## Edge Cases & Risks
- [Risk 1]: [Mitigation approach]
- [Risk 2]: [Mitigation approach]

## Verification
[The single command or sequence to run to confirm everything works]

Hard rules for the plan file:

  • Do NOT write a Context, Background, or Overview section longer than one line. The user just told you what they want.
  • Do NOT restate the user's request. Do NOT write prose paragraphs.
  • Do NOT include multiple alternatives — present only your recommended approach.
  • List the paths of files to be modified and what changes in each (one bullet per file).
  • Reference existing functions to reuse, with file:line.
  • End with the single verification command.
  • Hard limit: 40 lines. If the plan is longer, delete prose — not file paths.
  • Reject rate by plan size: 20% for plans under 2K chars, 50% for plans over 20K chars. Keep it tight.

Phase 5: Validation & Approval

Goal: Ensure the plan is correct and get user sign-off.

  1. Read every critical file referenced in the plan — verify paths exist and functions have expected signatures
  2. Confirm the implementation sequence has no circular dependencies
  3. Check that the verification command will actually test the changes
  4. Synthesize Plan agent outputs if multiple perspectives were used — pick the best approach, explain why in one sentence
  5. Present the final plan to the user

Then ask directly: "Ready to execute this plan, or do you want changes?"

Do NOT ask "Is this okay?" or "Any thoughts?" — be direct and specific. Do NOT use AskUserQuestion to ask about plan approval — that's what presenting the plan does.


Phase 6 (Optional): Adversarial Verification

When to use: For complex or high-risk plans (3+ file edits, backend/API changes, infrastructure changes).

After the plan is approved but BEFORE execution, spawn a verification agent to adversarially review the plan:

Launch an Agent (subagent_type: "general-purpose") with this prompt:

"You are an adversarial plan reviewer. Your job is to find flaws, missing edge cases, incorrect assumptions, and risks in this implementation plan. Read the plan at .ultraplan/plan.md, then read every critical file it references. For each file change proposed, verify: (1) the referenced function/line exists, (2) the proposed change is compatible with the current code, (3) no side effects are missed. Report: PASS if the plan is sound, FAIL with specific issues if not, PARTIAL if some parts check out but others can't be verified."

If the verifier reports FAIL: fix the plan, re-run the verifier. Repeat until PASS. If PARTIAL: report what was verified and what couldn't be to the user.


Post-Plan Execution Transition

When the user approves the plan:

  1. Read .ultraplan/plan.md one final time as your execution roadmap
  2. Follow the Implementation Sequence step by step — each step references exact files and changes
  3. Run the Verification command from the plan after implementation
  4. Report results faithfully — if verification fails, say so with the output

The plan file stays on disk as a record of what was agreed. Don't delete it after execution.


Complexity Scaling

Task SizeExplore AgentsPlan AgentsInterview DepthTime
Simple (1-2 files, clear approach)0-10Light — 1-2 questions5-10 min
Medium (3-5 files, some ambiguity)1-21Moderate — 3-5 questions15-20 min
Complex (many files, architectural decisions)2-31-2 (different perspectives)Deep — multiple rounds25-35 min
Major refactor (cross-cutting, high risk)32-3 (different perspectives)Extensive35-45 min

Skip agents entirely only for truly trivial tasks: typo fixes, single-line changes, simple renames.


Anti-Patterns

Real failure modes observed in production planning systems, with observed metrics:

  1. False completion claims: Never say "all tests pass" without running them. If you didn't verify, say so explicitly rather than implying success.
  2. Plan bloat: Mean good plan is ~6,200 characters. Plans over 20K have 50% rejection rate. Cut prose, keep file paths.
  3. Phantom file references: Citing functions or files that don't exist. Phase 5 validation catches this — never skip it.
  4. Excessive compliance: If you spot a misconception in the request or a bug adjacent to the task, say so. You're a collaborator, not an executor.
  5. Premature convergence: Don't finalize the plan in Phase 1. Explore first, converge later.
  6. Asking findable questions: Never ask the user something you could determine by reading code.
  7. Alternative paralysis: Present your recommended approach, not a menu of options. You're the architect — make the call.
  8. Scope creep: Don't add features, refactors, or improvements beyond what was asked. A bug fix doesn't need surrounding code cleaned up.

Ending Your Turn

Your turn should ONLY end by:

  • Using AskUserQuestion to gather more information (during planning phases)
  • Presenting the final plan for approval (when converged in Phase 5)

Never end your turn with just text. Always use a tool or present the plan.

Important: Use AskUserQuestion ONLY to clarify requirements or choose between approaches. Phrases like "Is this plan okay?", "Should I proceed?", "How does this plan look?", "Any changes before we start?" should NEVER be asked via AskUserQuestion — presenting the plan IS requesting approval.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

33.95%
按下载量换算129

Codex

33.07%
按下载量换算126

Cursor

17.97%
按下载量换算68

Gemini CLI

8.71%
按下载量换算33

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills