AgentSkillsCN

ultraplan

以文档驱动的工作流程编排系统。通过自动同步 Claude Tasks,创建 PROJECT.md、ROADMAP.md 与 PLAN.md。使用 /ultraplan:new-project 启动项目,使用 /ultraplan:status 查看进度。

SKILL.md
--- frontmatter
name: ultraplan
description: Document-driven workflow orchestration system. Creates PROJECT.md, ROADMAP.md, and PLAN.md with automatic Claude Tasks synchronization. Use /ultraplan:new-project to start, /ultraplan:status to check progress.
disable-model-invocation: true
allowed-tools: Read, Write, Bash, Glob, Grep, Task

Ultra Planner

Document-driven workflow orchestration for Claude Code.

Commands

CommandDescription
/ultraplan:new-projectInitialize new project with PROJECT.md, ROADMAP.md
/ultraplan:plan-phase NGenerate PLAN.md files for a specific phase
/ultraplan:statusShow current project state and progress

Quick Start

  1. Run /ultraplan:new-project to initialize
  2. Describe your project when prompted
  3. Review generated PROJECT.md and ROADMAP.md
  4. Run /ultraplan:plan-phase 1 to generate detailed plans for Phase 1
  5. Run /ultraplan:status to see progress

Directory Structure

code
.claude/
├── commands/               # Command definitions
│   ├── ultraplan-new-project.md
│   ├── ultraplan-plan-phase.md
│   └── ultraplan-status.md
├── agents/                 # Agent definitions
│   └── ultraplan-planner.md
└── skills/ultraplan/       # Skill definition and templates

.ultraplan/                 # Runtime state
├── config.json             # Project configuration
├── state/                  # Session state
└── logs/                   # Execution logs

PROJECT.md                  # Project definition
ROADMAP.md                  # Phase breakdown
STATE.md                    # Progress tracking

Configuration

Edit .ultraplan/config.json to customize:

  • mode: "interactive" (default) or "autopilot"
  • depth: "quick", "standard", or "comprehensive"
  • parallelization.max_workers: 1-5 (default 5)

References


Ultra Planner v1.0.0