一键导入
atlas-quick
Quick 2-phase workflow for trivial changes - typos, colors, config updates (5-15 min)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Quick 2-phase workflow for trivial changes - typos, colors, config updates (5-15 min)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Implementation and troubleshooting agent - builds features and fixes bugs
DevOps expertise for deployment, CI/CD, infrastructure, and automation
Adversarial quality gate agent for code review - finds flaws before users do
Product management expertise for story creation, backlog management, validation, and release coordination
Security audits, vulnerability analysis, and security best practices enforcement
Full 9-phase workflow for complex features, epics, and security-critical changes (2-4 hours)
| name | atlas-quick |
| description | 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)
color: '#000000' // Black text
// ❌ WRONG (gray text not allowed)
color: '#666666'
Typography:
// ✅ CORRECT
<Typography>Hello</Typography>
// ⚠️ OK for quick change (but Typography preferred)
<Text style={{ fontFamily: 'Comic Relief' }}>Hello</Text>
Example 1: Fix typo
// Before
<Text>Wellcome to StackMap</Text>
// After
<Text>Welcome to StackMap</Text>
Example 2: Change color
// Before
backgroundColor: '#0000FF' // Blue
// After
backgroundColor: '#007AFF' // iOS Blue
Example 3: Update timeout
// Before
const SYNC_TIMEOUT = 30000 // 30 seconds
// After
const SYNC_TIMEOUT = 60000 // 60 seconds
Goal: Run tests and deploy via quality script.
Update PENDING_CHANGES.md
## Title: Fix welcome message typo
### Changes Made:
- Fixed typo: "Wellcome" → "Welcome"
Run quick validation
# Type checking (fast)
npm run typecheck
# If tests are fast enough, run them
npm test
Deploy to QUAL
./scripts/deploy.sh qual --all
Pre-deployment:
Deployment:
Post-deployment:
For truly trivial changes (typos, doc updates), you MAY skip running tests locally if:
However: Deployment script will run tests regardless. If they fail, you'll need to fix them.
Escalate to Iterative workflow if:
Escalate to Standard workflow if:
"Escalating to [Iterative|Standard] workflow. [REASON]"
Then restart from Phase 1 of new tier.
Use case: Fix typos, update copy, change labels
Pattern:
# Find the text
grep -r "old text" src/
# Change it
# (Update in editor)
# Verify
# (Visual check in app)
# Deploy
./scripts/deploy.sh qual --all
Time: 5-10 minutes
Use case: Update colors, adjust styles
Pattern:
# Find color usage
grep -r "#0000FF" src/
# Change it
backgroundColor: '#007AFF'
# Verify colors are accessible (no gray text)
# Deploy
./scripts/deploy.sh qual --all
Time: 5-10 minutes
Use case: Change timeouts, URLs, feature flags
Pattern:
# Find config
grep -r "TIMEOUT" src/config/
# Change value
const SYNC_TIMEOUT = 60000
# Verify value makes sense
# Deploy
./scripts/deploy.sh qual --all
Time: 5 minutes
Use case: Update README, comments, docs
Pattern:
# Update documentation file directly
# No tests needed for pure docs
# Deploy
./scripts/deploy.sh qual --all
Time: 5 minutes
"Fix typo in welcome text AND update button color AND adjust padding"
Problem: No longer a quick change. Each change has different risk.
Solution: Escalate to Iterative or make separate Quick changes.
"Change timeout from 30s to 60s AND add retry logic"
Problem: "Add retry logic" is not trivial.
Solution: Escalate to Standard workflow.
"Update button text in 5 components"
Problem: Multiple files = higher risk, needs review.
Solution: Escalate to Standard workflow (or make 5 separate Quick changes if truly independent).
Make change → Deploy immediately without checking
Problem: Might deploy broken change.
Solution: Always verify locally first.
Use this checklist for every Quick workflow:
Step 1: Locate
grep -r "Sync faild" src/
# Found: src/services/sync/syncService.js:142
Step 2: Change
// Before (line 142)
throw new Error('Sync faild due to network error')
// After
throw new Error('Sync failed due to network error')
Step 3: Verify
# Quick type check
npm run typecheck
# ✅ Pass
Step 1: Update PENDING_CHANGES.md
## Title: Fix typo in sync error message
### Changes Made:
- Fixed typo: "faild" → "failed" in sync error message
Step 2: Deploy
./scripts/deploy.sh qual --all
# Output:
# ✅ Type checking: Pass
# ✅ Tests: Pass (15/15)
# ✅ Build: Success
# ✅ Deployed: qual-api.stackmap.app
Total time: 5 minutes ✅
Don't use Quick if:
Default rule: When in doubt, use Standard workflow instead.
# Find code
grep -r "search term" src/
find src/ -name "*filename*"
# Verify
npm run typecheck
# Deploy
./scripts/deploy.sh qual --all
The Quick workflow is for trivial changes only. It's fast because:
Use it often for small fixes, but escalate quickly if anything feels non-trivial.
Remember: It's better to start with Quick and escalate than to skip phases in Standard workflow.