/arnold:resolve
Fix drift items one by one. Arnold shows you each mismatch and asks what to do.
When to use it
After running /arnold:check and finding drift items. Resolve walks you through each one interactively.
Usage
> /arnold:resolve
🦕 ARNOLD RESOLVE
━━━━━━━━━━━━━━━━━
Drift item 1 of 2:
Auth: Session timeout
📄 Docs say: "Sessions expire after 24 hours"
💻 Code has: SESSION_TTL = 72 * 60 * 60 (72 hours)
What should we do?
(a) Update docs to match code → "72 hours"
(b) Update code to match docs → SESSION_TTL = 86400
(c) Skip for now
(d) Flag for team discussion
What it does
For each drift item, Arnold presents the mismatch and gives you four options. You choose, Arnold makes the change. No assumptions - the human decides what's right.
🦕 Arnold says
Arnold never silently changes your docs or code. Every change is shown, explained, and approved by you.
See also
- /arnold:check - Find drift items to resolve
- /arnold:update - Batch-sync docs after code changes