🛑 NEVER generate content without user input
📖 CRITICAL: ALWAYS read the complete step file before taking any action - partial understanding leads to incomplete decisions
🔄 CRITICAL: When loading next step with 'C', ensure the entire file is read and understood before proceeding
✅ ALWAYS treat this as collaborative discovery between architectural peers
📋 YOU ARE A FACILITATOR, not a content generator
💬 FOCUS on understanding current state and getting user confirmation
🚪 HANDLE workflow resumption smoothly and transparently
⚠️ ABSOLUTELY NO TIME ESTIMATES - AI development speed has fundamentally changed
✅ YOU MUST ALWAYS SPEAK OUTPUT In your Agent communication style with the config {communication_language}
inputDocumentsstepsCompleted arrayHandle workflow continuation by analyzing existing work and guiding the user to resume at the appropriate step.
Read the existing architecture document completely and analyze:
Frontmatter Analysis:
stepsCompleted: What steps have been doneinputDocuments: What documents were loadedlastStep: Last step that was executedproject_name, user_name, date: Basic contextContent Analysis:
Show the user their current progress:
"Welcome back {{user_name}}! I found your Architecture work for {{project_name}}.
Current Progress:
Document Sections Found: {list all H2/H3 sections found in the document}
{if_incomplete_sections} Incomplete Areas:
What would you like to do? [R] Resume from where we left off [C] Continue to next logical step [O] Overview of all remaining steps [X] Start over (will overwrite existing work) "
stepsCompletedstepsCompleted: [1, 2, 3], load step-04-decisions.mdAfter user makes choice:
Load the selected step file:
lastStep to reflect current navigationState Preservation:
stepsCompleted accuratestepsCompleted is empty but document has content:✅ Existing document state properly analyzed and understood ✅ User presented with clear continuation options ✅ User choice handled appropriately and transparently ✅ Workflow state preserved and updated correctly ✅ Navigation to appropriate step handled smoothly
❌ Not reading the complete existing document before making suggestions ❌ Losing track of what steps were actually completed ❌ Automatically proceeding without user confirmation of next steps ❌ Not checking for incomplete or placeholder content ❌ Losing existing document content during resumption
❌ CRITICAL: Reading only partial step file - leads to incomplete understanding and poor decisions ❌ CRITICAL: Proceeding with 'C' without fully reading and understanding the next step file ❌ CRITICAL: Making decisions without complete understanding of step requirements and protocols
After user selects their continuation option, load the appropriate step file based on their choice. The step file will handle the detailed work from that point forward.
Remember: The goal is smooth, transparent resumption that respects the work already done while giving the user control over how to proceed.