Loading...
Loading...
Compare original and translation side by side
Main Goal
├─ Sub-goal 1
│ ├─ Task 1.1 (atomic)
│ └─ Task 1.2 (atomic)
├─ Sub-goal 2
└─ Sub-goal 3Main Goal
├─ Sub-goal 1
│ ├─ Task 1.1 (atomic)
│ └─ Task 1.2 (atomic)
├─ Sub-goal 2
└─ Sub-goal 3| Type | Symbol | Example |
|---|---|---|
| Sequential | A → B → C | B needs A's output |
| Parallel | A─┐ B─┐ C─┘ | Independent, concurrent |
| Converging | A─┐ B─┼─> D | D needs A, B, C |
| Resource | A, B | Sequential or pooled |
| 类型 | 符号 | 示例 |
|---|---|---|
| 顺序依赖 | A → B → C | B需要A的输出 |
| 并行依赖 | A─┐ B─┐ C─┘ | 相互独立,可并发执行 |
| 汇聚依赖 | A─┐ B─┼─> D | D需要A、B、C的输出 |
| 资源依赖 | A, B | 顺序执行或资源共享 |
| Pattern | Use Case |
|---|---|
| Layer-Based | Architectural changes (data, logic, API, test, docs) |
| Feature-Based | New features (MVP, error handling, optimization, integration) |
| Phase-Based | Large projects (research, foundation, core, integration, polish) |
| Problem-Solution | Debugging (reproduce, diagnose, design, fix, verify, prevent) |
| 模式 | 适用场景 |
|---|---|
| 基于分层 | 架构变更(数据层、逻辑层、API、测试、文档) |
| 基于功能 | 新功能开发(MVP、错误处理、优化、集成) |
| 基于阶段 | 大型项目(调研、基础搭建、核心开发、集成、优化) |
| 问题-解决方案 | 调试工作(复现问题、诊断原因、设计方案、修复问题、验证、预防) |