# Assessment Step 6: Present Decision
**Purpose:** Present complete analysis to designer for informed decision.
**Input:** Comparison, opportunities, and risks
**Output:** Clear decision options with trade-offs
---
## Presentation Structure
### 1. Context Summary
What we're deciding and why
### 2. The Options
Clear description of each choice
### 3. Comparison Table
Side-by-side trade-offs
### 4. Recommendation
AI's suggestion based on analysis
### 5. Designer Choice
Let designer decide
---
## Step 1: Present Context
---
## Step 2: Present Options
---
## Step 3: Present Trade-Offs Table
---
## Step 4: Present Detailed Analysis
---
## Step 5: Present AI Recommendation
Based on analysis, provide recommendation with reasoning
---
## Step 6: Ask for Designer Decision
```
💭 Your Decision:
Based on this analysis, which approach fits your design intent?
[1] Reuse Button [btn-001]
→ Choose if: Visual consistency is paramount, purposes are actually the same
[2] Add "navigation" variant to Button [btn-001]
→ Choose if: You want button family, expect more button types
[3] Create new "Navigation Button" [btn-002]
→ Choose if: Semantic distinction matters, want independence
[4] I need more information
→ I can clarify any aspect of the analysis
Your choice (1/2/3/4):
```
---
## Step 7: Handle Designer Response
Based on designer's choice, route to appropriate operation
**If Choice 1 (Reuse):**
```
✅ Got it - reusing Button [btn-001]
I'll update the page spec to reference the existing component.
```
**Route to:** `07-execute-decision.md` with action: `reuse`
**If Choice 2 (Variant):**
```
✅ Got it - adding "navigation" variant to Button [btn-001]
I'll update the component definition and create the reference.
```
**Route to:** `07-execute-decision.md` with action: `add_variant`
**If Choice 3 (New):**
```
✅ Got it - creating new Navigation Button [btn-002]
I'll create the new component and set up the reference.
```
**Route to:** `07-execute-decision.md` with action: `create_new`
**If Choice 4 (More Info):**
```
📚 What would you like to know more about?
- Similarity calculation details
- Specific opportunities or risks
- How variants work
- Component boundaries
- Something else
Your question:
```
**Provide clarification, then re-present decision**
---
## Presentation Variations
### For High Similarity (80%+)
### For Low Similarity (40%-)
### For Borderline Cases
---
## Edge Cases
**Designer asks for recommendation:**
```
Based on the analysis, I recommend Option 3 (Create New).
But this is your design system - you know your project best.
What's most important to you?
- Consistency? → Reuse or Variant
- Clarity? → New
- Flexibility? → Variant
- Simplicity? → Reuse or New
```
**Designer is unsure:**
```
That's okay! This is a judgment call.
Here's a simple heuristic:
If a developer saw both buttons, would they think:
A) "Same button, different label" → Reuse
B) "Related buttons, different purposes" → Variant
C) "Different buttons entirely" → New
What's your gut feeling?
```
**Designer wants to defer decision:**
```
✅ No problem!
I'll create it as a new component for now.
You can always:
- Merge it later if you decide they're the same
- Convert it to a variant if you see a pattern
- Keep it separate if the distinction is valuable
Design systems evolve - this isn't permanent.
````
---
## Output Format
**For next step:**
```json
{
"decision": {
"choice": "create_new",
"component_id": "btn-002",
"reasoning": "Semantic distinction matters",
"designer_notes": "Navigation and submission are different actions"
}
}
````
---
**This step presents and captures the decision. Execution happens in the next step.**