Human Plan Manager
Manage short-term plans and detailed implementation schemes in a structured, trackable way.
Who is it for? Anyone who needs to organize tasks, track progress, or document step-by-step execution plans.
What makes it different?
- - Structured: separates high-level overview from detailed implementation
- Trackable: uses tables and checkboxes for clear status visibility
- Lightweight: just Markdown files, no external tools needed
Quick Start
- 1. Create
plans/plans-overview.md from the overview template - Add your plan items to the table
- If a plan needs detailed steps, create INLINECODE1
- Update
plans/detailed/index.md to link the new plan - Update statuses weekly (or as plans change)
Directory Structure
CODEBLOCK0
When to Use
- - Creating a new plan or todo list
- Viewing or updating existing plan status
- Breaking a plan into detailed steps
- Recording detailed implementation documentation
- Structured project plan management
Example: Refactoring the Auth Module
Step 1 — Add to plans/plans-overview.md:
CODEBLOCK1
Step 2 — Create plans/detailed/01-auth-refactor.md:
CODEBLOCK2
Step 3 — Update plans/detailed/index.md:
CODEBLOCK3
Templates
All templates live in templates/:
- -
plans-overview.md — High-level plan board with status table and priority lists index.md — Index of all detailed plansdetailed-plan.md — Step-by-step implementation plan with checkboxes
Tips
- - Keep plan names concise; use kebab-case for filenames (
01-auth-refactor.md) - Update
last_updated in frontmatter whenever the overview changes - Use checkboxes (
- [ ]) in detailed plans to track subtask progress - Archive completed plans by moving them to the "Completed Items" section
人类计划管理器
以结构化、可追踪的方式管理短期计划和详细实施方案。
适用人群: 任何需要组织任务、追踪进度或记录分步执行计划的人。
独特优势:
- - 结构化:将高层概览与详细实施分离
- 可追踪:使用表格和复选框实现清晰的状态可见性
- 轻量化:仅需Markdown文件,无需外部工具
快速开始
- 1. 根据概览模板创建 plans/plans-overview.md
- 将计划项添加到表格中
- 若计划需要详细步骤,创建 plans/detailed/XX-{计划名称}.md
- 更新 plans/detailed/index.md 以链接新计划
- 每周(或计划变更时)更新状态
目录结构
text
plans/
├── plans-overview.md ← 来自 templates/plans-overview.md
└── detailed/
├── index.md ← 来自 templates/index.md
└── XX-{计划名称}.md ← 来自 templates/detailed-plan.md
使用场景
- - 创建新计划或待办清单
- 查看或更新现有计划状态
- 将计划拆解为详细步骤
- 记录详细的实施文档
- 结构化项目计划管理
示例:重构认证模块
步骤1 — 添加到 plans/plans-overview.md:
markdown
| 1 |||| 认证模块重构 |||| 进行中 |||| 高 |||| 待定 |||| 待定 |||| 拆分为服务层 |
步骤2 — 创建 plans/detailed/01-auth-refactor.md:
markdown
详细计划 - 认证模块重构
计划ID:#1
目标
将认证逻辑提取到专用服务层,并附带单元测试。
时间安排
待定
截止日期
待定
实施步骤
1. 提取服务层
- - [ ] 从控制器中移出认证逻辑
- [ ] 定义服务接口
2. 添加测试
预估时间
4-6小时
步骤3 — 更新 plans/detailed/index.md:
markdown
| #1 | 认证模块重构 | 待定 | 待定 | 01-auth-refactor.md |
模板
所有模板位于 templates/ 目录:
- - plans-overview.md — 包含状态表格和优先级列表的高层计划看板
- index.md — 所有详细计划的索引
- detailed-plan.md — 带复选框的分步实施计划
提示
- - 保持计划名称简洁;文件名使用短横线命名法(01-auth-refactor.md)
- 概览变更时更新前置元数据中的 last_updated
- 在详细计划中使用复选框(- [ ])追踪子任务进度
- 将已完成计划移至已完成项部分进行归档