v1.0.0 to v2.1.0

58 added, 464 removed. Audit A to A.

---
name: project-planner
- description: Break down large projects into dependency-aware tasks with progress tracking
- and visualization. This skill should be used when users want to plan complex implementations,
- create task breakdowns with dependencies, or visualize project structure.
+ description: Break a large or ambiguous project into a dependency-ordered task
+ list with a Mermaid dependency diagram and critical-path analysis, using the
+ Task tool suite (TaskCreate/TaskUpdate/TaskList). Trigger on "plan this
+ project", "break this into tasks", "what's the dependency order",
+ "create a task breakdown", or "map out the milestones for X". Planning
+ only — it does not implement code (use implement-feature for that) and it
+ does not diagram existing code (use docs-diagram for architecture diagrams
+ of what already exists).
metadata:
author: mgiovani
- version: 1.0.0
- source: https://github.com/mgiovani/skills
- disable-model-invocation: true
+ version: 2.1.0
argument-hint: <project_description>
allowed-tools: Read, Write, Grep, Glob, Task, TaskCreate, TaskUpdate, TaskList, TaskGet,
WebFetch, AskUserQuestion
context: fork
agent: general-purpose
---
# Project Planner
- > **Cross-Platform AI Agent Skill**
- > This skill works with any AI agent platform that supports the skills.sh standard.
-
- # Project Planner
-
- Break down large, complex projects into manageable tasks with clear dependencies, progress tracking, and visual diagrams.
+ Break a large, complex project into manageable tasks with clear dependencies, progress tracking, and a visual diagram.
## Project to Plan
- command arguments
+ $ARGUMENTS
## Planning Workflow
- ### Phase 0: Project Analysis
-
- **Step 0.1: Understand Project Scope**
-
- Use lightweight exploration for token-efficient codebase analysis:
-
- **Step 0.2: Clarify Requirements**
-
- If the project description is vague or has multiple valid approaches, use `interactive clarification` to clarify:
- - What are the must-have vs nice-to-have features?
- - Are there specific architectural constraints?
- - What's the target completion timeline?
- - Should this integrate with existing systems?
- - Are there specific technology preferences?
-
- ### Phase 1: Task Breakdown
-
- **Step 1.1: Identify Major Milestones**
-
- Break the project into 3-7 major milestones. Each milestone represents a significant deliverable or phase:
-
- **Example for a new authentication system**:
- 1. Discovery & Planning
- 2. Database schema and migrations
- 3. Core authentication logic
- 4. API endpoints
- 5. Frontend integration
- 6. Testing & verification
- 7. Documentation & deployment
-
- **Step 1.2: Create Tasks for Each Milestone**
-
- For each milestone, create tasks that are:
- - **Specific**: Clear deliverable and acceptance criteria
- - **Measurable**: Can be marked completed objectively
- - **Achievable**: Can be completed in a reasonable timeframe
- - **Relevant**: Contributes to the milestone goal
- - **Time-bound**: Not open-ended
-
- **Task Granularity Guidelines**:
- - **Too large**: "Build the authentication system" (breaks into 10+ subtasks)
- - **Too small**: "Import bcrypt library" (trivial step within a larger task)
- - **Just right**: "Implement password hashing with bcrypt and validation"
-
- ### Phase 2: Dependency Mapping
-
- **Step 2.1: Identify Task Dependencies**
-
- For each task, determine:
- - **Prerequisites**: Which tasks must complete before this can start?
- - **Blockers**: Which tasks does this one block?
- - **Parallelizable**: Which tasks can run concurrently?
-
- **Dependency Types**:
- - **Sequential**: Task B requires output from Task A
- - **Parallel**: Tasks A and B can run simultaneously
- - **Convergence**: Tasks A and B must both complete before Task C
-
- **Step 2.2: Set Up Task Dependencies**
-
- ```
- # Example: Authentication system task chain
- TaskCreate: subject="Set up auth database tables", description="..."
- TaskCreate: subject="Implement password hashing", description="..."
- TaskCreate: subject="Create JWT token service", description="..."
- TaskCreate: subject="Build login API endpoint", description="..."
- TaskCreate: subject="Build registration API endpoint", description="..."
- TaskCreate: subject="Add auth middleware", description="..."
- TaskCreate: subject="Frontend login form", description="..."
- TaskCreate: subject="Frontend registration form", description="..."
- TaskCreate: subject="Integration tests", description="..."
-
- # Sequential dependencies
- TaskUpdate: { taskId: "2", addBlockedBy: ["1"] } # Hash needs DB schema
- TaskUpdate: { taskId: "3", addBlockedBy: ["1"] } # JWT needs DB schema
- TaskUpdate: { taskId: "4", addBlockedBy: ["2", "3"] } # Login needs hash + JWT
- TaskUpdate: { taskId: "5", addBlockedBy: ["2", "3"] } # Registration needs hash + JWT
- TaskUpdate: { taskId: "6", addBlockedBy: ["4", "5"] } # Middleware after endpoints
- TaskUpdate: { taskId: "7", addBlockedBy: ["4", "6"] } # Frontend needs API + middleware
- TaskUpdate: { taskId: "8", addBlockedBy: ["5", "6"] } # Frontend needs API + middleware
- TaskUpdate: { taskId: "9", addBlockedBy: ["7", "8"] } # Tests after all frontend
- ### Phase 3: Visualization
-
- **Step 3.1: Generate Dependency Diagram**
-
- Create a Mermaid diagram showing the task dependency graph:
-
- ```mermaid
- graph TD
- A[Set up auth database tables] --> B[Implement password hashing]
- A --> C[Create JWT token service]
- B --> D[Build login API endpoint]
- C --> D
- B --> E[Build registration API endpoint]
- C --> E
- D --> F[Add auth middleware]
- E --> F
- D --> G[Frontend login form]
- F --> G
- E --> H[Frontend registration form]
- F --> H
- G --> I[Integration tests]
- H --> I
- **Diagram Guidelines**:
- - Use clear, concise node labels
- - Show critical path in a different color if possible
- - Group related tasks visually
- - Include milestone markers
- - Add estimates if available
-
- **Step 3.2: Document Critical Path**
-
- Identify and highlight the critical path (longest sequential chain):
- ```
- Critical Path: Database → Password Hashing → Login API → Middleware → Frontend Login → Tests
- Estimated Duration: [X days/weeks]
- ### Phase 4: Task Templates
-
- **Step 4.1: Create Task Templates**
-
- For common project types, provide reusable templates:
-
- **Web Feature Template**:
- ```
- 1. Discovery & Requirements
- 2. Database schema (if needed)
- 3. Backend API implementation
- 4. Frontend component implementation
- 5. Integration & E2E tests
- 6. Documentation
- 7. Deployment
- **Bug Fix Template**:
- ```
- 1. Reproduce bug
- 2. Root cause analysis
- 3. Plan fix
- 4. Implement fix
- 5. Verify with tests
- 6. Commit and document
- **Refactoring Template**:
- ```
- 1. Identify refactoring scope
- 2. Write characterization tests
- 3. Plan refactoring approach
- 4. Incremental refactoring (with commits)
- 5. Verify no behavior changes
- 6. Update documentation
- ### Phase 5: Progress Tracking
-
- **Step 5.1: Initial Task List**
-
- After creating all tasks and dependencies, show the full plan:
- ```
- TaskList
- **Step 5.2: Track Implementation Progress**
-
- As work progresses, update task status:
- ```
- TaskUpdate: { taskId: "1", status: "in_progress" }
- # ... work ...
- TaskUpdate: { taskId: "1", status: "completed" }
- TaskList # Show updated progress
- **Step 5.3: Handle Blockers**
-
- If a task becomes blocked by external factors:
- ```
- TaskUpdate:
- taskId: "4"
- metadata: { blocked_reason: "Waiting for design mockups from UI team" }
- Use `interactive clarification` to notify stakeholders and get resolution timeline.
-
- ## Common Project Patterns
-
- ### Pattern 1: API + Frontend Feature
-
- **Parallel Work Opportunity**: Backend and frontend can be built simultaneously with agreed API contract.
-
- ```
- Discovery → API Contract Definition → (API Implementation || Frontend Implementation) → Integration → Testing
- **Tasks**:
- 1. Discover project structure
- 2. Define API contract (OpenAPI/Swagger)
- 3. Implement API endpoints (parallel)
- 4. Implement frontend component (parallel)
- 5. Integration testing (after both)
- 6. E2E testing
- 7. Documentation and deployment
-
- ### Pattern 2: Database Migration
-
- **Strict Sequential**: Schema changes before code changes.
-
- ```
- Discovery → Schema Design → Migration Script → Update Models → Update Queries → Tests → Deploy
- **Tasks**:
- 1. Discover existing schema
- 2. Design new schema/changes
- 3. Write migration script
- 4. Update ORM models
- 5. Update application queries
- 6. Update tests
- 7. Test migration on staging
- 8. Deploy to production
-
- ### Pattern 3: Library Integration
-
- **Research First**: Understand library before implementation.
-
- ```
- Discovery → Research Library → Proof of Concept → Integration → Tests → Documentation
- **Tasks**:
- 1. Discover project patterns
- 2. Research library documentation (Context7)
- 3. Create proof of concept
- 4. Integrate into existing code
- 5. Write unit tests
- 6. Write integration tests
- 7. Document usage patterns
-
- ## Advanced Features
-
- ### Multi-Phase Projects
-
- For very large projects, create meta-tasks (epics) with sub-task hierarchies:
-
- ```
- Epic: "User Authentication System"
- Milestone 1: "Core Auth"
- - Task 1.1: Database schema
- - Task 1.2: Password hashing
- - Task 1.3: JWT service
- Milestone 2: "API Endpoints"
- - Task 2.1: Login endpoint
- - Task 2.2: Registration endpoint
- - Task 2.3: Password reset endpoint
- Milestone 3: "Frontend Integration"
- - Task 3.1: Login form
- - Task 3.2: Registration form
- - Task 3.3: Password reset form
- Use metadata to track parent-child relationships:
- ```
- TaskCreate:
- subject: "Milestone 1: Core Auth"
- description: "..."
- metadata: { type: "milestone", epic: "authentication" }
-
- TaskCreate:
- subject: "Database schema"
- description: "..."
- metadata: { type: "task", milestone: "1", epic: "authentication" }
- ### Risk Assessment
-
- Identify high-risk tasks that may cause delays:
- - Tasks with unclear requirements
- - Tasks depending on external factors
- - Tasks using unfamiliar technology
- - Tasks with tight coupling to many other tasks
-
- Mark high-risk tasks in metadata:
- ```
- TaskCreate:
- subject: "Implement OAuth provider"
- description: "..."
- metadata: { risk: "high", risk_reason: "Unfamiliar with OAuth flow" }
- ### Resource Allocation
-
- For team projects, track task ownership:
- ```
- TaskCreate:
- subject: "Build API endpoint"
- description: "..."
- metadata: { assigned_to: "backend-team", estimated_hours: 8 }
- ## Output Format
-
- Provide a summary including:
- - Total number of tasks created
- - Dependency graph visualization (Mermaid)
- - Critical path analysis
- - Estimated timeline (if applicable)
- - Next steps to start implementation
- - Risk areas identified
-
- ## Usage Examples
-
- ```bash
- # Plan a new feature
- project-planner Implement user authentication with OAuth2 and JWT
-
- # Plan a refactoring
- project-planner Refactor payment module to use strategy pattern
-
- # Plan a bug fix (for complex bugs)
- project-planner Fix memory leak in WebSocket connection handling
-
- # Plan a migration
- project-planner Migrate from REST API to GraphQL
- ## Best Practices
-
- 1. **Start with discovery**: Always understand the project before planning
- 2. **Right-size tasks**: Not too big, not too small (aim for 2-8 hours per task)
- 3. **Clear dependencies**: Make prerequisites explicit with `blockedBy`
- 4. **Identify parallel work**: Maximize concurrent progress
- 5. **Visualize the plan**: Mermaid diagrams help communicate structure
- 6. **Track progress**: Use `TaskList` regularly to show status
- 7. **Adapt as needed**: Update tasks and dependencies as requirements change
- 8. **Document decisions**: Use task descriptions to capture context and rationale
-
- ## References
-
- For detailed patterns and examples:
- - [references/task-patterns.md](references/task-patterns.md) - Reusable task breakdown patterns
- - [references/dependency-examples.md](references/dependency-examples.md) - Complex dependency examples
-
- ## Claude Code Enhanced Features
-
- This skill includes the following Claude Code-specific enhancements:
-
- ## Project to Plan
-
- $ARGUMENTS
+ This skill has exactly two possible outputs: a full plan (Phases 0-4), or — when the scope fails the gate in Step 0.2 — clarifying questions and nothing else. Never both in the same turn.
- ## Planning Workflow
+ **Portability:** No `Task`/`TaskCreate` tools in this environment? Do the analysis yourself instead of delegating to an Explore agent, and track the resulting tasks as a plain markdown checklist (`- [ ] Task name — blocked by: ...`) instead of `TaskCreate` calls. The phases and the dependency diagram are the deliverable; the Task tool is just Claude Code's way of tracking them. In an eval or sandbox run, never call the real session `Task`/`TaskCreate`/`TaskUpdate`/`TaskList` tools — those mutate the operator's actual task list. If the prompt instead asks you to record intended calls into a file (e.g. `outputs/tasks.json`), do that instead and treat it as the graded deliverable.
### Phase 0: Project Analysis
**Step 0.1: Understand Project Scope**
- Use Haiku-powered Explore agent for token-efficient codebase analysis:
+ Use a Haiku-powered Explore agent for token-efficient codebase analysis:
```
Use Task tool with Explore agent:
- prompt: "Analyze the project to understand:
1. Read CLAUDE.md and README.md for project context
2. Identify project type (web app, API, CLI, library, etc.)
3. Map out major components and modules
4. Note technology stack and frameworks
5. Identify existing patterns and conventions
6. Find similar completed features to reference
Return a structured summary of the project architecture."
- subagent_type: "Explore"
- model: "haiku" # Token-efficient for exploration
```
- **Step 0.2: Clarify Requirements**
-
- If the project description is vague or has multiple valid approaches, use `AskUserQuestion` to clarify:
- - What are the must-have vs nice-to-have features?
- - Are there specific architectural constraints?
- - What's the target completion timeline?
- - Should this integrate with existing systems?
- - Are there specific technology preferences?
-
- ### Phase 1: Task Breakdown
-
- **Step 1.1: Identify Major Milestones**
+ **Step 0.2: Scope Gate**
- Break the project into 3-7 major milestones. Each milestone represents a significant deliverable or phase:
+ Check whether the request names a concrete deliverable and rough boundaries (what's in, what's out). If it doesn't — e.g. "improve the app", "make things better", "plan our roadmap" with no target named — stop. End the response with 2-3 clarifying questions (via `AskUserQuestion` or plain prose) about the concrete deliverable, scope boundaries, or target outcome, and produce nothing else: no task breakdown, no `TaskCreate` calls, no Mermaid diagram, no files. A 25-task plan built on invented scope is worse than no plan, because the user must now audit every task against what they actually meant, instead of just answering the question. Do not soften this into "ask, then proceed with reasonable assumptions anyway" — the questions are the entire response.
- **Example for a new authentication system**:
- 1. Discovery & Planning
- 2. Database schema and migrations
- 3. Core authentication logic
- 4. API endpoints
- 5. Frontend integration
- 6. Testing & verification
- 7. Documentation & deployment
+ If the deliverable and boundaries are clear but secondary details are missing (timeline, tech stack preference, team size), that's not a scope gate failure — ask about those with `AskUserQuestion`, flag the assumption you're using if the user doesn't answer, and continue to Phase 1.
- **Step 1.2: Create Tasks for Each Milestone**
+ ### Phase 1: Task Breakdown
- For each milestone, create tasks that are:
- - **Specific**: Clear deliverable and acceptance criteria
- - **Measurable**: Can be marked completed objectively
- - **Achievable**: Can be completed in a reasonable timeframe
- - **Relevant**: Contributes to the milestone goal
- - **Time-bound**: Not open-ended
+ Break the project into 3-7 major milestones (significant deliverables or phases), then create tasks under each milestone.
**Task Granularity Guidelines**:
- **Too large**: "Build the authentication system" (breaks into 10+ subtasks)
- **Too small**: "Import bcrypt library" (trivial step within a larger task)
- - **Just right**: "Implement password hashing with bcrypt and validation"
+ - **Just right**: "Implement password hashing with bcrypt and validation" — aim for 2-8 hours of work per task
### Phase 2: Dependency Mapping
- **Step 2.1: Identify Task Dependencies**
-
- For each task, determine:
- - **Prerequisites**: Which tasks must complete before this can start?
- - **Blockers**: Which tasks does this one block?
- - **Parallelizable**: Which tasks can run concurrently?
-
- **Dependency Types**:
- - **Sequential**: Task B requires output from Task A
- - **Parallel**: Tasks A and B can run simultaneously
- - **Convergence**: Tasks A and B must both complete before Task C
-
- **Step 2.2: Set Up Task Dependencies**
+ For each task, determine its prerequisites (`blockedBy`), what it blocks, and what can run in parallel. Most real dependency graphs are composed from a few recurring shapes — sequential chain, parallel-then-converge, diamond, staged/time-gated rollout, multi-team fan-out. See [references/dependency-shapes.md](references/dependency-shapes.md) when the structure isn't a plain chain.
+ **Worked example** (auth system):
```
- # Example: Authentication system task chain
TaskCreate: subject="Set up auth database tables", description="..."
TaskCreate: subject="Implement password hashing", description="..."
TaskCreate: subject="Create JWT token service", description="..."
TaskCreate: subject="Build login API endpoint", description="..."
TaskCreate: subject="Build registration API endpoint", description="..."
TaskCreate: subject="Add auth middleware", description="..."
- TaskCreate: subject="Frontend login form", description="..."
- TaskCreate: subject="Frontend registration form", description="..."
- TaskCreate: subject="Integration tests", description="..."
- # Sequential dependencies
- TaskUpdate: { taskId: "2", addBlockedBy: ["1"] } # Hash needs DB schema
- TaskUpdate: { taskId: "3", addBlockedBy: ["1"] } # JWT needs DB schema
- TaskUpdate: { taskId: "4", addBlockedBy: ["2", "3"] } # Login needs hash + JWT
- TaskUpdate: { taskId: "5", addBlockedBy: ["2", "3"] } # Registration needs hash + JWT
- TaskUpdate: { taskId: "6", addBlockedBy: ["4", "5"] } # Middleware after endpoints
- TaskUpdate: { taskId: "7", addBlockedBy: ["4", "6"] } # Frontend needs API + middleware
- TaskUpdate: { taskId: "8", addBlockedBy: ["5", "6"] } # Frontend needs API + middleware
- TaskUpdate: { taskId: "9", addBlockedBy: ["7", "8"] } # Tests after all frontend
+ TaskUpdate: { taskId: "2", addBlockedBy: ["1"] } # hashing needs DB schema
+ TaskUpdate: { taskId: "3", addBlockedBy: ["1"] } # JWT needs DB schema
+ TaskUpdate: { taskId: "4", addBlockedBy: ["2", "3"] } # login needs hash + JWT
+ TaskUpdate: { taskId: "5", addBlockedBy: ["2", "3"] } # registration needs hash + JWT
+ TaskUpdate: { taskId: "6", addBlockedBy: ["4", "5"] } # middleware after endpoints
```
### Phase 3: Visualization
- **Step 3.1: Generate Dependency Diagram**
+ Don't start this phase until every task in the plan has its `blockedBy` relations recorded (real `TaskUpdate` calls, or the `outputs/tasks.json` equivalent in a sandboxed run). That recorded data is the single source of truth for both the diagram and the critical path — never hand-draw an edge or a chain from memory/intuition about what "should" depend on what. A diagram that disagrees with the actual dependencies is worse than no diagram: downstream work gets sequenced off the picture, not the data, and nobody notices until it breaks.
- Create a Mermaid diagram showing the task dependency graph:
+ **Step 3.1 — Draw the diagram mechanically from recorded edges.** For every `addBlockedBy` entry recorded in Phase 2, emit exactly one Mermaid edge, `<blocker> --> <task>`. One recorded relation, one edge — no more, no fewer. A task with an empty `addBlockedBy` gets no incoming edge, full stop, even if it feels like it should logically follow something.
```mermaid
graph TD
A[Set up auth database tables] --> B[Implement password hashing]
A --> C[Create JWT token service]
B --> D[Build login API endpoint]
C --> D
B --> E[Build registration API endpoint]
C --> E
D --> F[Add auth middleware]
E --> F
- D --> G[Frontend login form]
- F --> G
- E --> H[Frontend registration form]
- F --> H
- G --> I[Integration tests]
- H --> I
```
- **Diagram Guidelines**:
- - Use clear, concise node labels
- - Show critical path in a different color if possible
- - Group related tasks visually
- - Include milestone markers
- - Add estimates if available
-
- **Step 3.2: Document Critical Path**
-
- Identify and highlight the critical path (longest sequential chain):
+ **Step 3.2 — Compute the critical path by walking those same edges.** Find the longest chain (by task count, or by summed duration if the user gave time estimates) from an unblocked task to a task nothing else depends on, using only edges drawn in Step 3.1. State it as task names:
```
- Critical Path: Database → Password Hashing → Login API → Middleware → Frontend Login → Tests
- Estimated Duration: [X days/weeks]
+ Critical Path: Database → Password Hashing → Login API → Middleware
+ Estimated Duration: [X days/weeks, only if the user gave time estimates]
```
- ### Phase 4: Task Templates
-
- **Step 4.1: Create Task Templates**
-
- For common project types, provide reusable templates:
+ **Step 3.3 — Self-check before presenting.** Check both directions: every Mermaid edge maps to a recorded `addBlockedBy` relation, and every recorded `addBlockedBy` relation appears as an edge. Same check for the critical path — every link in the stated chain must be an edge from Step 3.1. Fix any mismatch in the diagram/path (never in the underlying data) and re-check before showing it to the user.
- **Web Feature Template**:
- ```
- 1. Discovery & Requirements
- 2. Database schema (if needed)
- 3. Backend API implementation
- 4. Frontend component implementation
- 5. Integration & E2E tests
- 6. Documentation
- 7. Deployment
- ```
+ ### Phase 4: Progress Tracking
- **Bug Fix Template**:
- ```
- 1. Reproduce bug
- 2. Root cause analysis
- 3. Plan fix
- 4. Implement fix
- 5. Verify with tests
- 6. Commit and document
- ```
+ After creating all tasks and dependencies, run `TaskList` to show the full plan (or, in a sandboxed run recording to `outputs/tasks.json`, record the intended `TaskList` call there). As implementation proceeds, update task status via `TaskUpdate` (`in_progress` → `completed`) and re-run `TaskList` to show progress. If a task becomes blocked by an external factor, record it in `TaskUpdate`'s `metadata` and use `AskUserQuestion` to surface it rather than silently stalling.
- **Refactoring Template**:
- ```
- 1. Identify refactoring scope
- 2. Write characterization tests
- 3. Plan refactoring approach
- 4. Incremental refactoring (with commits)
- 5. Verify no behavior changes
- 6. Update documentation
- ```
+ ## Output Format
- ### Phase 5: Progress Tracking
+ Provide a summary including:
+ - Total number of tasks created
+ - Dependency graph visualization (Mermaid)
+ - Critical path analysis
+ - Estimated timeline (only if the user supplied time estimates — never invent durations)
+ - Next steps to start implementation
+ - Risk areas identified
- **Step 5.1: Initial Task List**
+ ## Usage Examples
- After creating all tasks and dependencies, show the full plan:
```
- TaskList
+ project-planner Implement user authentication with OAuth2 and JWT
+ project-planner Refactor payment module to use strategy pattern
+ project-planner Fix memory leak in WebSocket connection handling
+ project-planner Migrate from REST API to GraphQL
```
- **Step 5.2: Track Implementation Progress**
-
- As work progresses, update task status:
- ```
- TaskUpdate: { taskId: "1", status: "in_progress" }
- # ... work ...
- TaskUpdate: { taskId: "1", status: "completed" }
- TaskList # Show updated progress
- ```
+ ## Best Practices
- **Step 5.3: Handle Blockers**
+ 1. Start with discovery — understand the project before planning it
+ 2. Right-size tasks: not "the whole feature," not "one import statement"
+ 3. Make prerequisites explicit with `blockedBy`, not prose
+ 4. Derive the diagram and critical path from recorded `blockedBy` data, never from memory — self-check both directions before presenting
+ 5. Maximize parallel work where tasks are genuinely independent
+ 6. Track progress with `TaskList`; adapt tasks/dependencies as requirements change
+ 7. Capture rationale in task descriptions, not just the deliverable
- If a task becomes blocked by external factors:
- ```
- TaskUpdate:
- taskId: "4"
- metadata: { blocked_reason: "Waiting for design mockups from UI team" }
- ```
+ ## References
- Use `AskUserQuestion` to notify stakeholders and get resolution timeline.
+ - [references/dependency-shapes.md](references/dependency-shapes.md) — load when the dependency structure isn't a plain sequential chain (parallel/converge, diamond, staged rollout, multi-team fan-out)