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 your deployment process
: 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 your project conventions:
Check for .atlas/conventions.md:
If your project has this file, review relevant sections:
Common conventions to verify:
// Example: Field naming (customize for your project)
// ✅ Use project's standard field names
user.displayName = "John"
// ❌ Don't use deprecated field names
user.username = "John" // If your project prefers displayName
// Example: Colors (customize for your project)
// ✅ Use project's color system