# Workshop C: Placeholder Pages
**Trigger:** User wants to quickly map out a scenario structure without full specifications
---
## WORKSHOP GOAL
Rapidly create placeholder page documents with:
- Navigation structure
- Page names
- Page purposes
- Scenario context
This gives clarity to the overall flow before diving into detailed specifications.
---
## PHASE 1: TRIGGER DETECTION
---
## PHASE 2: SCENARIO CONTEXT
**Determine scenario context:**
- Read project structure from wds-workflow-status.yaml
- Check existing scenarios
- Determine if working with existing or new scenario
**Which scenario are we mapping out?**
{{#if existing_scenarios}}
Existing scenarios:
{{#each scenario in existing_scenarios}}
- {{scenario.number}}: {{scenario.name}}
{{/each}}
Type scenario number or "new" for a new scenario:
{{else}}
This will be your first scenario. What should we call it?
Scenario name:
{{/if}}
Store scenario_number and scenario_name
---
## PHASE 3: FLOW MAPPING
**How many pages will be in this scenario?**
Think about the steps a user goes through:
- Entry point / first page
- Middle steps (actions, decisions, inputs)
- Completion / exit page
Number of pages:
Store pages_count
---
## PHASE 4: PAGE ENUMERATION
For each page, gather:
1. **Page name** (examples: "Start Page", "Sign In", "Checkout")
2. **Page purpose** (1-2 sentences: what user accomplishes)
3. **User situation** (what just happened, what they're trying to do)
Store page_name, page_purpose, user_situation for each page
---
## PHASE 5: FLOW REVIEW
**Review the flow:**
- Type "good" to proceed
- Type "add" to insert a page
- Type "remove N" to remove page N
- Type "move N to M" to reorder
Action:
---
## PHASE 6: GENERATE DOCUMENTS
For each page in pages_list:
1. Create folder structure with sketches subfolder
2. Generate placeholder document using template
3. Create scenario overview document
4. Create scenario tracking file
**See:** [placeholder-templates.md](placeholder-templates.md) for all templates
---
## PHASE 7: COMPLETION
---
## ROUTING
**Based on user choice:**
- If user picks a page number → Route to Workshop B (Sketch Creation) for that page
- If user selects [N] → Route to scenario-init workshop
- If user selects [D] → Return to main UX design menu