Skip to content

Commit a7898fe

Browse files
committed
feat: COMPLETE TEMPLATE SYSTEM - Advanced agile template copying/modification with vibe context integration, variable substitution, project-specific artifacts, scientific verification, and systematic cleanup
1 parent f630e53 commit a7898fe

3 files changed

Lines changed: 680 additions & 2 deletions

File tree

apps/universal_composition_app.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2347,9 +2347,16 @@ def create_vibe_agile_project(project_name, project_description, vibe_intensity,
23472347

23482348
# Set up first human interaction checkpoint
23492349
if 'next_human_interaction' in result and result['next_human_interaction']:
2350+
next_interaction = result['next_human_interaction']
2351+
if isinstance(next_interaction, dict) and 'phase' in next_interaction:
2352+
phase = next_interaction['phase']
2353+
else:
2354+
# Fallback to inception phase if structure is different
2355+
phase = 'inception'
2356+
23502357
st.session_state.active_interaction = {
23512358
'project_id': project_id,
2352-
'phase': result['next_human_interaction']['phase'],
2359+
'phase': phase,
23532360
'vibe_context': result['vibe_context']
23542361
}
23552362

0 commit comments

Comments
 (0)