CRITICAL: Never implement feedback without first classifying it and stating when it should be addressed.
| Type | What It Is | When to Address |
|---|---|---|
| Bug/Issue | Something broken, error, not working | Now — fix immediately, iterate until resolved |
| Quick Adjustment | Small tweak, change X to Y | Now — implement immediately |
| Addition | New requirement that fits current dialog | Later step — add to plan |
| Change Request | Outside current dialog scope | Future session — document in Change Requests |
If a fix takes less than 2 minutes, do it immediately.
From David Allen's "Getting Things Done": planning overhead should not exceed task complexity.
| Situation | Action |
|---|---|
| Missing condition check | Fix now, log as sub-step |
| Wrong variable name | Fix now, log as sub-step |
| Needs new component | Add to plan |
| Architectural change | Add to plan |
Pattern: Do the fix → Log as sub-step (e.g., 20a-1) → Continue main task
When user reports something:
User says: "This is broken" / "Error occurred" / "Not working"
Agent response:
This is a bug — [brief description].
Let's call it 10A and let me add it to the plan, then fix it.
Required sequence:
If user reports multiple issues: list each separately, add ALL to plan first, then fix one by one.
User says: "Change X to Y" / "Make this button go here"
Agent response: "Quick adjustment — I'll implement this now." Then implement.
User says: "We should also add X"
Agent response: "This is an addition that fits the current dialog. I'll add it to Step {N}. Confirm?"
User says: "We need a settings page"
Agent response:
This is outside the current dialog scope.
It doesn't block {feature name}.
I'll add it to Change Requests for a future session. Confirm?
WAIT for user confirmation. If user says "do it now" → treat as quick adjustment.
NEVER immediately implement without classifying. ALWAYS classify, state timing, then confirm or act.
The extra seconds to classify and confirm build trust and ensure alignment.