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

plan-founder-review计划创始人审查

Agent Skill

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

总安装

1,388

周安装

59

GitHub Stars

公开资料未说明

下载量

486
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ulpi-io/skills --skill plan-founder-review

简介

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

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

SKILL.md

Founder Review

Inputs

  • $request: Optional plan name, direct plan path, or mode override such as auth-system, .ulpi/plans/foo.md, --quick, or foo --full.

Goal

Catch plan defects before agents execute them: phantom file paths, markdown/JSON drift, hidden prerequisites, bad task boundaries, unsafe rewrites, missing tests, and overconfident execution graphs.

Step 0: Resolve the target plan and review mode

Locate the plan to review:

  • if $request names a plan, resolve .ulpi/plans/<name>.md
  • if $request provides a direct path, use it
  • if no target is provided, select the most recently modified .md plan under .ulpi/plans/

Then:

  • read the full markdown plan
  • read the companion JSON file if present
  • extract title, mode, task count, task IDs, file paths, and dependency summary
  • determine whether review mode is FULL or QUICK

Load references/review-rubric.md for:

  • mode selection rules
  • section requirements per mode
  • verdict criteria

Stop early if:

  • no plan exists
  • the markdown plan cannot be read
  • the review target is too small for formal founder review and should just be executed directly

Success criteria: The target plan and review mode are explicit before detailed review starts.

Step 1: Run the codebase reality check

Verify the plan against the actual repository:

  • every filesToModify path exists
  • every filesToCreate path has a valid parent path or prior creator task
  • markdown and JSON agree on task IDs, file paths, and execution meaning
  • claimed reuse actually exists locally
  • the plan is not building functionality that already exists
  • if the plan introduces a public SQL, API, or CLI surface, the plan pins the real signature or example rather than hand-waving it

Load references/review-checklist.md and complete Section 1 in full.

Success criteria: The plan's file paths, reuse claims, and artifact consistency are reality-checked against the repo.

Step 2: Challenge scope and strategy

Review:

  • whether plan mode matches actual scope
  • whether every task serves the stated goal
  • whether non-goals are credible
  • whether the ship cut is believable
  • whether hidden prerequisites or scope creep exist

Load references/review-checklist.md and complete Section 2.

Success criteria: Scope, mode, and minimum shippable cut are defensible.

Step 3: Audit architecture, contracts, and dependencies

Review:

  • architecture diagram completeness
  • task-to-diagram consistency
  • producer/consumer contract clarity
  • dependency JSON realism
  • execution-summary consistency
  • ownership of shared wiring points such as routers, registries, manifests, startup hooks, or export barrels
  • semantic safety for rewrites, planners, optimizers, filters, or query composition

Load references/review-checklist.md and complete Section 3.

If review mode is QUICK, skip directly to Step 6 after this step.

Success criteria: The plan's architecture and dependency story is coherent and executable.

Step 4: Audit risk, recovery, and degraded-mode safety

For FULL review only, challenge:

  • failure-mode coverage
  • mitigation quality
  • rollback or containment strategy
  • degraded-mode semantics
  • malformed-output or upstream-failure handling

Load references/review-checklist.md and complete Section 4.

Success criteria: Critical risks are covered by actionable mitigations rather than vague warnings.

Step 5: Audit test coverage and execution feasibility

For FULL review only, challenge:

  • completeness of the test coverage map
  • appropriateness of test types
  • edge-case coverage in acceptance criteria
  • security-sensitive path coverage
  • DAG efficiency
  • agent matching
  • effort calibration
  • P0 foundation honesty
  • write-scope collisions or hidden overlap

Load references/review-checklist.md and complete Sections 5 and 6.

Success criteria: The plan is testable, executable, and not obviously over-constrained or under-specified.

Step 6: Score sections and deliver the verdict

Use references/review-rubric.md to:

  • score each reviewed section as PASS, WARN, or FAIL
  • classify findings as BLOCK, CONCERN, or OBSERVATION
  • determine APPROVE, REVISE, or REJECT

Then render a concise founder-review report that includes:

  • plan title and mode
  • verdict
  • section summary table
  • blocking issues
  • concerns
  • observations
  • recommended plan changes when revision is required

Do not ask the user procedural questions at the end of the review. Deliver the audit and let the main thread decide what happens next.

Success criteria: The verdict follows directly from evidence-backed findings and the rubric.

Guardrails

  • Do not modify the plan file as part of this skill.
  • Do not rubber-stamp a non-trivial plan.
  • Do not invent findings; a clean section can legitimately pass.
  • Do not add disable-model-invocation; this skill should remain callable when the user asks for plan review.
  • Do not add paths:; this is a generic review workflow.
  • Do not keep giant examples, quality scorecards, or gate tables inline in SKILL.md.
  • Do not use AskUserQuestion as a substitute for a verdict.
  • Do not forget that this skill runs best as a forked review workflow with separate reasoning budget.

When To Load References

  • references/personality.md Use at session start for review persona, traits, and communication style.
  • references/review-checklist.md Use for section-by-section audit checks and evidence requirements.
  • references/review-rubric.md Use for mode selection, verdict rules, section scoring, and finding classification (BLOCK/CONCERN/OBSERVATION gate tables).

Output Contract

Report:

  1. reviewed plan and selected mode
  2. verdict
  3. section status summary
  4. blocking issues
  5. concerns
  6. observations
  7. required plan changes when applicable

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.26%
按下载量换算157

Claude

28.57%
按下载量换算139

Cursor

20.59%
按下载量换算100

Gemini CLI

9.38%
按下载量换算46

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills