name: 'step-07-create-scenario-folder' description: 'Create the physical folder structure and overview documents for the scenario'
nextStepFile: './step-08-page-context.md' workflowFile: '../workflow.md'
Create the physical folder structure and overview documents for the scenario based on all discovery data gathered in steps 1-6.
{communication_language}Determine scenario number:
C-UX-Scenarios/Create physical folder structure:
C-UX-Scenarios/{{scenario_num}}-{{scenario-slug}}/ directoryGenerate 00-scenario-overview.md:
File: C-UX-Scenarios/{{scenario_num}}-{{scenario-slug}}/00-scenario-overview.md
Content:
# Scenario {{scenario_num}}: {{scenario_name}}
**Project Structure:** Multiple scenarios
---
## Core Feature
{{core_feature}}
---
## User Journey
### Entry Point
{{entry_point}}
### Mental State
{{mental_state}}
When users arrive, they are feeling:
- **Trigger:** [what just happened]
- **Hope:** [what they're hoping for]
- **Worry:** [what they're worried about]
---
## Success Goals
### Business Success
{{business_success}}
### User Success
{{user_success}}
---
## Shortest Path
{{#each page in pages_list}}
{{@index + 1}}. **{{page.name}}** - {{page.description}}
{{/each}}
---
## Pages in This Scenario
{{#each page in pages_list}}
- `{{scenario_num}}.{{@index + 1}}-{{page.slug}}/`
{{/each}}
---
## Trigger Map Connections
[Link to relevant personas and driving forces from Trigger Map]
---
**Created:** {{date}}
**Status:** Ready for design
Generate scenario-tracking.yaml:
File: C-UX-Scenarios/{{scenario_num}}-{{scenario-slug}}/scenario-tracking.yaml
Content:
scenario_number: {{scenario_num}}
scenario_name: "{{scenario_name}}"
core_feature: "{{core_feature}}"
entry_point: "{{entry_point}}"
mental_state: "{{mental_state}}"
business_success: "{{business_success}}"
user_success: "{{user_success}}"
pages_list:
{{#each page in pages_list}}
- name: "{{page.name}}"
slug: "{{page.slug}}"
page_number: "{{scenario_num}}.{{@index + 1}}"
description: "{{page.description}}"
status: "not_started"
{{/each}}
current_page_index: 0
total_pages: {{pages_list.length}}
Note: Individual page folders and documents will be created when you run the page-init workshop for each page.
**Scenario structure created:** **Scenario {{scenario_num}}:** {{scenario_name}} **Folder:** - `C-UX-Scenarios/{{scenario_num}}-{{scenario-slug}}/` **Documents:** - `00-scenario-overview.md` (detailed scenario metadata) - `scenario-tracking.yaml` (progress tracking) **Journey Overview:** - **Start:** {{entry_point}} ({{mental_state}}) - **End:** {{business_success}} + {{user_success}} - **Pages planned:** {{pages_list.length}} **Next Step:** - Run the page-init workshop to define and create the first page in this scenario The scenario container is ready!Display: "Select an Option: [C] Continue to Page Initialization Workshop | [M] Return to Activity Menu"
ONLY WHEN the user selects an option from the menu and the scenario structure has been created will you proceed to the next step or return as directed.
Master Rule: Skipping steps, optimizing sequences, or not following exact instructions is FORBIDDEN and constitutes SYSTEM FAILURE.