Start an implementation session from an existing plan. Discovers available plans, checks environment setup, and invokes the technical-implementation skill.
Starts an implementation session from an existing plan. Discovers available plans, checks environment setup, and invokes the technical-implementation skill.
/plugin marketplace add leeovery/claude-technical-workflows/plugin install leeovery-claude-technical-workflows@leeovery/claude-technical-workflowsFollow these steps EXACTLY as written. Do not skip steps or combine them.
Before beginning, discover existing work and gather necessary information.
Use simple, individual commands. Never combine multiple operations into bash loops or one-liners. Execute commands one at a time.
Scan the codebase for plans:
Find plans: Look in docs/workflow/planning/
ls docs/workflow/planning/ to list plan files{topic}.mdCheck plan format: For each plan file
head -10 docs/workflow/planning/{topic}.md to read the frontmatterformat: fieldhead commands for each topicShow what you found.
Note: If no plans exist, inform the user that this workflow is designed to be executed in sequence. They need to create plans from specifications prior to implementation using
/start-planning.
Auto-select: If exactly one plan exists, automatically select it and proceed to Step 3. Inform the user which plan was selected. Do not ask for confirmation.
Plans found:
{topic-1}
{topic-2}
Which plan would you like to implement?
IMPORTANT: This step is for information gathering only. Do NOT execute any setup commands at this stage. The technical-implementation skill will handle execution when invoked.
After the user selects a plan:
docs/workflow/environment-setup.md existsdocs/workflow/environment-setup.md, commit and push to Gitskills/technical-implementation/references/environment-setup.md for format guidanceAsk the user about implementation scope:
How would you like to proceed?
1. **Implement all phases** - Work through the entire plan sequentially
2. **Implement specific phase** - Focus on one phase (e.g., "Phase 1")
3. **Implement specific task** - Focus on a single task
Which approach?
If they choose a specific phase or task, ask them to specify which one.
Note: Do NOT verify that the phase or task exists. Accept the user's answer and pass it to the skill. Validation happens during the implementation phase.
Invoke the technical-implementation skill for this conversation.
Pass to the technical-implementation skill:
docs/workflow/planning/{topic}.mdExample handoff:
Implementation session for: {topic}
Plan: docs/workflow/planning/{topic}.md
Format: {format}
Scope: All phases
Environment setup: Completed (or: Not needed)
Begin implementation using the technical-implementation skill.