Quick 2-phase workflow for trivial changes - typos, colors, config updates (5-15 min)
Perfect for:
Time estimate: 5-15 minutes
Success criteria:
Phase 1: Make Change → Locate, change, verify
Phase 2: Deploy → Test + deploy via quality script
Goal: Locate the code, make the change, verify locally.
Locate the code
# Find file by name
find src/ -name "*filename*"
# Find file by content
grep -r "text to find" src/
Make the change
Verify locally
DO:
DON'T:
Even for quick changes, follow conventions:
Field naming:
// ✅ CORRECT
activity.text = "New text"
activity.icon = "🏃"
// ❌ WRONG (even for quick changes)
activity.name = "New text"
activity.emoji = "🏃"
Colors:
// ✅ CORRECT (accessibility)