
Plan Execute
- Updated December 29, 2025
- aliok/aliok-claude-plugins
plan-execute is a Claude Code skill in the Automation & Workflows category. Two-command planning and execution workflow
Key points
- plan-execute
- Automation & Workflows
- AI-coding skill
Plan Execute by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add aliok/aliok-claude-plugins/plugin install plan-execute@aliok-claude-pluginsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | December 29, 2025 |
|---|---|
| Repository | aliok/aliok-claude-plugins ↗ |
What it does
Two-command planning and execution workflow
README.md
aliok's Claude Code Plugins
A collection of custom Claude Code plugins to enhance development workflows.
Available Plugins
plan-execute
A two-command workflow for systematic planning and execution of implementation tasks.
Commands:
/plan [task description]- Analyze task and create a structured, reviewable plan/execute-plan- Execute the plan systematically with progress tracking
Features:
- Separates planning from execution
- Creates reviewable plans you can edit before execution
- Systematic step-by-step execution
- Real-time progress tracking via TodoWrite
- Resumable if interrupted
- No skipped steps - ensures thorough implementation
Use Case: When you have a complex implementation task and want to:
- See the full plan before any code is written
- Review and potentially modify the approach
- Execute systematically with clear progress tracking
- Ensure nothing is forgotten or skipped
work-tracking
Maintain work continuity across sessions by logging work status and resuming from where you left off.
Commands:
/work-log- Capture current work status (what works, what doesn't, next steps)/work-continue- Resume from last logged work session
Features:
- Centralized work logs stored in
~/.claude-work-tracking/ - Tracks work across all projects in one place
- Analyzes git status, commits, and file changes
- Stores what's working, what's incomplete, and suggested next steps
- Resume work seamlessly across different sessions
Use Case:
When you're working on a feature (especially with /plan-execute) and need to stop mid-work:
- Run
/work-logto capture current status - Later, run
/work-continueto see where you left off and resume - Works across all projects - never lose track of what you were doing
Installation
Add the Marketplace
/plugin marketplace add aliok/aliok-claude-plugins
Install Specific Plugin
/plugin install plan-execute@aliok-claude-plugins
/plugin install work-tracking@aliok-claude-plugins
Usage Examples
plan-execute Plugin
# Create a plan
/plan add user authentication with JWT
# Claude explores your codebase and creates .claude/plans/plan.md
# Review the plan, edit if needed
# Execute when ready
/execute-plan
# Claude systematically implements each step with TodoWrite tracking
work-tracking Plugin
# While working on a feature, need to stop
/work-log
# Claude analyzes git status, commits, and changes
# Saves: what works, what doesn't work yet, next steps
# Later (same project or different project)
/work-continue
# Claude shows where you left off and asks if you want to continue
Plugin Structure
aliok-claude-plugins/
├── .claude-plugin/
│ └── marketplace.json # Marketplace catalog
├── plugins/
│ └── plan-execute/
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin manifest
│ └── commands/
│ ├── plan.md # /plan command
│ └── execute-plan.md # /execute-plan command
└── README.md
Development
See DEVELOPMENT.md for instructions on creating and testing plugins.
Contributing
Feel free to suggest improvements or report issues!
License
MIT