···11# Global Agent Rules
2233+## Communication
44+55+- **Ask before acting when uncertain**: If a task is ambiguous, has multiple reasonable interpretations, or you're not confident about the approach, stop and ask the user clarifying questions before proceeding. Don't guess or assume — it's better to ask one round of questions than to go down the wrong path.
66+- **Confirm large or risky changes**: Before making sweeping refactors, deleting files, or changing architecture, describe your plan and get explicit approval.
77+- **Prefer incremental steps**: Break large tasks into smaller steps and check in with the user between steps rather than doing everything at once.
88+39## Workflow
410511- **Commit after verification**: After a successful verification step (e.g. `cargo check` with 0 errors), always create a jj revision: `jj desc -m "description of changes" && jj new`