Resume an interrupted SDD interview session
/plugin marketplace add sequenzia/claude-plugins/plugin install sequenzia-sdd-manager-plugins-sdd-manager@sequenzia/claude-pluginsinheritContinue an interrupted Spec Driven Development interview from where it left off.
Look for .claude/sdd-manager.state.json:
If not found:
/sdd-manager:create to start a new interview."Read the state file and validate:
current_project existsinterview_phase is validcollected_data is presentlast_updated is parseableIf invalid:
/sdd-manager:create, or (2) delete the state file?"Show the user what will be resumed:
## Resuming SDD Interview
**Project:** {current_project}
**Phase:** {interview_phase}
**Last Updated:** {last_updated}
**Already Collected:**
- Project Name: {project_name}
- Project Type: {project_type}
- Detail Level: {detail_level}
- ... (summary of collected data)
**Documents to Generate:**
- {document list}
**Next:** Continue with {next_questions_topic}
Ask user to confirm:
If start over:
/sdd-manager:createLaunch the sdd-interviewer agent with existing state:
The interviewer agent continues from saved phase:
{
"current_project": "project-name",
"interview_phase": "foundation|scope|problem|requirements|technical|design|generation",
"collected_data": {
"project_name": "...",
"project_type": "...",
"detail_level": "...",
"document_structure": "...",
"has_ui_components": false,
"needs_timeline": false,
"problem_statement": "...",
"success_metrics": [...],
"non_goals": [...],
"core_features": [...],
"user_stories": [...],
"constraints": [...],
"dependencies": [...],
"architecture_notes": "...",
"data_models": [...],
"api_requirements": [...],
"tech_stack": [...],
"user_flows": [...],
"key_screens": [...],
"interactions": [...],
"accessibility_requirements": [...]
},
"documents_to_generate": ["prd", "tech-spec", "design-spec"],
"last_updated": "ISO-timestamp"
}
# Resume an interrupted interview
/sdd-manager:resume
/sdd-manager:create/sdd-manager:create - Start new interview/sdd-manager:edit <project-name> - Edit existing documents/sdd-manager:list - View all projects