Install
npx skillscat add leeovery/claude-technical-workflows/view-plan Install via the SkillsCat registry.
SKILL.md
Display a readable summary of a plan's phases, tasks, and status.
Step 1: Identify the Plan
If no topic is specified, list available plans:
ls .workflows/planning/Ask the user which plan to view.
Step 2: Read the Plan Index
Read the plan file from .workflows/planning/{topic}/plan.md and check the format: field in the frontmatter.
Step 3: Load Format Reading Reference
Load the format's reading reference:
../technical-planning/references/output-formats/{format}/reading.mdThis file contains instructions for reading plans in that format.
Step 4: Read Plan Content
Follow the reading reference to locate and read the actual plan content.
Step 5: Present Summary
Display a readable summary:
Output the next fenced block as a code block:
Plan: {topic}
**Format:** {format}
### Phase 1: {phase name}
- [ ] Task 1.1: {description}
- [x] Task 1.2: {description}
### Phase 2: {phase name}
- [ ] Task 2.1: {description}
...Show:
- Phase names and acceptance criteria
- Task descriptions and status (if trackable)
- Any blocked or dependent tasks
Keep it scannable - this is for quick reference, not full detail.
Notes
- Some formats (like external issue trackers) may not be fully readable without API access - note this if applicable
- If status tracking isn't available in the format, just show the task structure