Development marketplace for dev-phase-manager core skills library
npx claudepluginhub uukuguy/dev-phase-managerProfessional phase and checkpoint management system for Claude Code - enabling context-aware, multi-phase development workflows
Professional phase and checkpoint management system for Claude Code
Dev Phase Manager is a non-invasive workflow enhancement plugin for Claude Code that enables context-aware, multi-phase development workflows with intelligent checkpoint management.
/clear operationsbrainstorming, writing-plans, subagent-driven-development# Add GitHub repository as marketplace
claude plugin marketplace add uukuguy/dev-phase-manager
# Install the plugin
claude plugin install dev-phase-manager
# Clone the repository
git clone https://github.com/uukuguy/dev-phase-manager.git
# Add local directory as marketplace
claude plugin marketplace add /path/to/dev-phase-manager
# Install the plugin
claude plugin install dev-phase-manager
# 1. Start a new phase
/start-phase "Phase 1 - Feature Implementation"
# 2. Design and plan
/brainstorming
/writing-plans
# 3. Save checkpoint before clearing context
/checkpoint-plan
/clear
# 4. Resume execution
/resume-plan
/subagent-driven-development
# 5. Complete phase
/end-phase
# Start Phase 1
/start-phase "Phase 1 - Core Features"
# ... work on Phase 1 ...
# Urgent: Start Phase 2 (suspends Phase 1)
/start-phase "Phase 2 - Critical Bugfix"
# → Prompts: Suspend Phase 1? (y)
# ... complete Phase 2 ...
/end-phase
# Resume Phase 1
/start-phase --resume phase1
# ... complete Phase 1 ...
/end-phase
Dev Phase Manager follows the dual-layer architecture pattern (same as superpowers):
dev-phase-manager/
├── commands/ ← User entry points (thin wrappers)
│ ├── start-phase.md ← One-line: invoke skill
│ ├── end-phase.md
│ ├── list-plan.md
│ ├── checkpoint-plan.md
│ ├── checkpoint-progress.md
│ ├── resume-plan.md
│ ├── mem-save.md ← NEW in v1.1.0
│ └── mem-search.md ← NEW in v1.1.0
└── skills/ ← Full skill logic
├── start-phase/SKILL.md
├── end-phase/SKILL.md
├── list-plan/SKILL.md
├── checkpoint-plan/SKILL.md
├── checkpoint-progress/SKILL.md
├── resume-plan/SKILL.md
├── mem-save/SKILL.md ← NEW in v1.1.0
└── mem-search/SKILL.md ← NEW in v1.1.0
commands/*.md are thin wrappers that invoke the corresponding skill:
---
description: "Start new phase or resume suspended phase"
disable-model-invocation: true
---
Invoke the dev-phase-manager:start-phase skill and follow it exactly as presented to you
skills/*/SKILL.md contain the complete behavior definition with all execution steps.
/checkpoint-planSave current plan execution state to filesystem.
Usage:
/checkpoint-plan
What it does:
docs/plans/docs/plans/.checkpoint.json/clearOutput:
✅ Checkpoint saved
Plan: Phase 5 - MCP Server
File: docs/plans/2026-02-22-mcp-server.md
Phase: design
Status: Design completed, ready for execution
Next steps:
1. /clear - Clear context
2. /resume-plan - Resume execution
/resume-planResume plan execution from saved checkpoint.
Usage:
/resume-plan
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.
Claude Code plugins for the Slidev presentation framework
Bundled plugins for actuating and debugging the Chrome browser.