| name | phase-create |
| description | Create a new development phase with organized directory structure for research and execution tracking |
Create Phase
Create a new development phase with organized directory structure.
Usage
copilot-memory phase create --title "{{TITLE}}" --goal "{{GOAL}}"
Parameters
--title <title> — Phase title (required)
--goal <goal> — Phase goal or objective
--id <id> — Custom phase ID (optional, auto-generated if omitted)
--tags <tag1,tag2> — Tags
Example
copilot-memory phase create --title "Authentication" --goal "Implement OAuth2 with JWT"
What It Creates
- Phase directory at
.copilot-memory-vault/phases/{{PHASE_ID}}/
phase.md file with frontmatter
- Subdirectories:
research/, execution/, handoffs/
- Sets the phase as active in the tracker
Next Steps
- Add research:
copilot-memory phase research --title "Findings"
- Work on the phase
- Complete:
copilot-memory phase handoff --title "Phase Complete"