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

universal-planner通用规划师

Agent Skill

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

总安装

759

周安装

31

GitHub Stars

6

下载量

243
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/synapsync/synapse_registry --skill universal-planner

简介

universal-planner 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于通用规划、任务安排和资源分配等场景。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令添加指定技能。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Universal Planner

Assets

This skill uses a modular assets architecture. Detailed documentation, templates, and helpers are in the assets/ directory:

See assets/README.md for full directory documentation.


Purpose

Unified planning and execution skill for any software engineering scenario. This skill operates in two mutually exclusive modes:

  • PLAN mode — Produce professional, structured planning documentation. Detects the scenario (new project, feature, refactor, bug fix, tech debt, architecture) and activates the appropriate sub-mode. Never executes code.
  • EXECUTE mode — Consume plan output and implement it sprint-by-sprint, phase-by-phase, task-by-task using dual roles (Senior Developer + Scrum Master). Never creates plans.

Critical Rules

RULE 1 — MODE BOUNDARY: PLAN NEVER EXECUTES, EXECUTE NEVER PLANS PLAN mode produces documentation only — it MUST NOT implement, code, build, or deploy. EXECUTE mode implements existing plans only — it MUST NOT create new planning documents, modify strategy, or restructure sprints. This boundary is absolute.
RULE 2 — CONTEXT-FIRST: RESPECT EXISTING PATTERNS Before making any decision on an existing codebase, explore and understand the project's established patterns, conventions, and architecture. Every proposal and implementation MUST align with what already exists. Deviations must be documented and justified.
RULE 3 — ADAPTIVE MODE DETECTION Detect the top-level mode (PLAN vs EXECUTE) and planning sub-mode from the user's input. If ambiguous, ask. Never force a mode that doesn't match the scenario.
RULE 4 — PROFESSIONAL QUALITY In PLAN mode: output must read as if produced by a senior engineering team — no vague language, no placeholders. In EXECUTE mode: write production-quality code — clean, readable, properly tested.
RULE 5 — COMPLETENESS PLAN mode: generate ALL documents required by the active sub-mode. EXECUTE mode: complete ALL tasks in a phase before moving to the next.
RULE 6 — PLAN IS SOURCE OF TRUTH (EXECUTE MODE) The planning documents define what to build, how to structure it, and which patterns to follow. Every implementation decision must trace back to the plan. Do not improvise architecture or invent new patterns.
RULE 7 — CONVENTIONS ARE NON-NEGOTIABLE discovery/CONVENTIONS.md defines the project's DNA. Every planning proposal and every line of implementation code MUST follow these conventions.
RULE 8 — ASSUMPTION TRANSPARENCY When information is missing: PLAN mode documents assumptions in ANALYSIS.md. EXECUTE mode documents decisions in the Decision Log. Never silently assume.

Mode Detection

Top-Level: PLAN vs EXECUTE

ModeSignalsExample Inputs
PLANPlanning, analyzing, designing, "plan", "create a plan", new work without existing plan"Plan the auth system", "I need an app to track expenses"
EXECUTEImplementing, executing, "start working", "implement the plan", existing plan output present"Execute the project plan", "Start implementing Sprint 1"

Disambiguation: If the user's intent is unclear, ask:

"Do you want me to plan this work (produce documentation) or execute an existing plan (implement code)?"

PLAN Sub-Modes

When in PLAN mode, detect the planning sub-mode. See assets/modes/PLAN.md for the full detection table and capabilities matrix.

Sub-ModeSignals
NEW_PROJECTProduct idea, "build from scratch", no existing codebase
NEW_FEATUREAdding to existing project, "add", "implement"
REFACTORRestructure, reorganize, migrate patterns
BUG_FIXFix, broken, regression, error
TECH_DEBTCleanup, dead code, deprecated, missing tests
ARCHITECTURESystem design, scaling, infrastructure change

Asset Loading (Mode-Gated)

After detecting the mode, read ONLY the assets listed for that mode. Do NOT read assets for other modes — they waste context tokens.

ModeRead These AssetsDo NOT Read
PLANoutput-resolve.md, PLAN.md, detected sub-mode .mdEXECUTE.md, config-resolver.md, decision-log.md, code-quality-standards.md, unrelated sub-mode files, examples/, validators/
EXECUTEoutput-resolve.md, EXECUTE.md, decision-log.md, code-quality-standards.mdPLAN.md, config-resolver.md, all sub-mode files, templates/, examples/, validators/

PLAN sub-mode loading: After detecting the sub-mode from user input, read ONLY that file (e.g., NEW_FEATURE.md). Do NOT read the other 5 sub-mode files. Templates are loaded on-demand as each workflow step references them.

On-demand helpers (both modes): troubleshooting.md — read only when issues arise. config-resolver.md — loaded only when output-resolve.md can't find existing config (first-time setup).


Quick Start

PLAN Mode

Use when planning any software work:

Plan the authentication system for the app.

Assets to read now: output-resolve.md + PLAN.md — then read only the detected sub-mode file from assets/modes/.

EXECUTE Mode

Use when implementing an existing plan:

Execute the project plan.

Assets to read now: output-resolve.md + EXECUTE.md + decision-log.md + code-quality-standards.md


Capabilities Matrix

CapabilityPLAN ModeEXECUTE Mode
Create planning documentsYesNo
Write/modify codeNoYes
Create CONVENTIONS.mdYesNo (read-only)
Modify sprint files (status, checkboxes)Yes (creation)Yes (updates)
Modify PROGRESS.mdYes (creation)Yes (updates)
Run verification commandsNoYes
Generate retrospectivesNoYes (optional)
Make architectural decisionsYes (in docs)No (follow plan)
Log implementation decisionsNoYes (Decision Log)

Mode Workflows (Quick Reference)

PLAN Mode Workflow

  1. Configuration Resolution → resolve {output_dir}
  2. Codebase Discoverydiscovery/CONVENTIONS.md (except NEW_PROJECT)
  3. Analysisanalysis/ANALYSIS.md
  4. Planningplanning/PLANNING.md
  5. Execution Planexecution/EXECUTION.md
  6. Sprint Plans (optional) → sprints/PROGRESS.md + sprints/SPRINT-*.md
  7. Handoff → summarize and stop

Full details: See assets/modes/PLAN.md

EXECUTE Mode Workflow

  1. Locate and Validate → verify plan directory exists and is complete
  2. Internalize Plan → read all planning documents
  3. Execute Active Sprint → phase-by-phase, task-by-task
  4. Complete Sprint → update tracking, verify graduation gates 3.5. Retrospective (optional) → capture learnings
  5. Project Completion → final metrics and report

Full details: See assets/modes/EXECUTE.md


Configuration Resolution

{output_dir} is the directory where universal-planner stores all planning documents. Resolve it once at the start:

  1. User message context — If the user's message contains file paths, extract {output_dir} from those paths
  2. Auto-discover — Scan for .agents/universal-planner/ in {cwd}
  3. Ask the user — If nothing found, ask where to save documents. Default suggestion: .agents/universal-planner/{project-name}/

No AGENTS.md. No branded blocks. The output directory is resolved at runtime.

See assets/helpers/output-resolve.md for the lightweight resolver. For full error handling, see assets/helpers/config-resolver.md.


Obsidian Output Standard

All documents generated or modified by this skill MUST follow these rules:

  1. Frontmatter: Every .md file includes the universal frontmatter schema (title, date, updated, project, type, status, version, tags, changelog, related)
  2. Types: Use conventions, analysis, plan, execution-plan, sprint-plan, progress, requirements, architecture, retrospective as appropriate
  3. Wiki-links: All inter-document references use [[filename]] syntax — never [text](relative-path.md)
  4. References: Every document ends with ## References listing Parent, Siblings, Children, and Input Documents
  5. Living documents: PROGRESS.md and sprint plans are living documents — bump version, update changelog, transition status on modification
  6. IDs: Use FR-/NFR- for requirements, ADR- for architecture decisions, T- for tasks, DEC- for decisions, K-/P-/L-/A- for retrospective items
  7. Bidirectional: If document A references B, document B must reference A in related and ## Referencias
  8. Metrics: Use | Metric | Before | After | Delta | Status | format for all quantitative data
  9. Gates: Sprint plans include ## Graduation Gate with verifiable checkbox criteria
  10. Carried Forward: Sprint 2+ includes ## Carried Forward from [[previous-sprint]] for incomplete items
  11. Sequential numbering: Use 01-, 02- prefixes where reading order matters
  12. Status transitions: Move status through draft → active → completed (or draft → active → failed) as work progresses

Frontmatter template for sprint plans:

---
title: "Sprint {N}: {Name}"
date: "YYYY-MM-DD"
updated: "YYYY-MM-DD"
project: "{project-name}"
type: "sprint-plan"
status: "draft"
version: "1.0"
sprint: {N}
phase: "{active-phases}"
progress: 0
previous_doc: "[[SPRINT-{N-1}-name]]"
next_doc: "[[SPRINT-{N+1}-name]]"
parent_doc: "[[PROGRESS]]"
tags: ["{project-name}", "sprint-{N}", "sprint-plan"]
changelog:
  - version: "1.0"
    date: "YYYY-MM-DD"
    changes: ["Initial sprint plan"]
related:
  - "[[PROGRESS]]"
  - "[[EXECUTION]]"
  - "[[SPRINT-{N-1}-name]]"
  - "[[SPRINT-{N+1}-name]]"
---

Mode-specific frontmatter extensions:

  • BUG_FIX: Add severity: "critical|high|medium|low" to ANALYSIS.md frontmatter
  • REFACTOR: Add scope_modules: ["module-a", "module-b"] to ANALYSIS.md frontmatter

Sprint Structure Standards

All sprint documents follow the Obsidian-native markdown standard with structured frontmatter, progress tracking, and cross-references.

Complete sprint formats: See assets/templates/SPRINT.md

Task granularity:

  • L1 - Sprint: Major milestone (3-7 days)
  • L2 - Phase: Logical grouping (0.5-2 days)
  • L3 - Task: Discrete work item (1-4 hours) with file paths, before/after code, verification
  • L4 - Subtask: Single action (5-30 min)

Every task must include: checkbox, file paths (when applicable), before/after code snippets, verification command, and reference to existing patterns/components.


Integration with Other Skills

SkillIntegration
code-analyzerUse before PLAN mode (REFACTOR or TECH_DEBT sub-mode) to get a detailed technical report as input
skill-creatorReference when building skills that complement planning outputs
obsidianSync planning output to vault or read notes for context. Invoke via Skill("obsidian") or say "sync to obsidian". Subagent fallback: read obsidian SKILL.md directly.

Troubleshooting

Common issues and resolutions for both PLAN and EXECUTE modes.

Full troubleshooting guide: See assets/helpers/troubleshooting.md


Limitations

  1. Mode boundary: PLAN mode cannot execute; EXECUTE mode cannot plan
  2. Requires input: PLAN mode needs a description of the work; EXECUTE mode needs plan output
  3. Assumptions must be validated: Inferred decisions need team review before implementation
  4. Technology recommendations are suggestions: The development team makes final choices
  5. Manual tracking: Sprint progress must be updated manually during execution
  6. No automated validation: Cannot verify plans match codebase reality — relies on thorough discovery
  7. Sequential execution: EXECUTE mode processes one sprint at a time, in order
  8. External blockers: Cannot resolve dependencies on external teams or services — logs them and moves on
  9. Context window: For projects with more than 4 sprints, consider executing sprints in separate sessions to avoid context exhaustion. EXECUTE mode can resume from the last incomplete sprint.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.13%
按下载量换算88

Claude

31.93%
按下载量换算78

Cursor

20.35%
按下载量换算49

Gemini CLI

8.94%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills