You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+15-3Lines changed: 15 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,21 @@ This file is a thin entrypoint. The live source of truth lives in the linked doc
15
15
16
16
## Operating loop
17
17
18
-
1.**Context** - read the relevant source of truth first and use `context` when the Atelier MCP surface is available.
19
-
2.**Implement** - make the change, update directly related docs, and use `route` or `rescue` when needed.
20
-
3.**Record** - record the outcome with `record` or the host alias that exposes the same capability.
18
+
1.**Context** — call `mcp__atelier__context` with `task`, `files`, `domain` before touching any file.
19
+
2.**Implement** — use Atelier tools for ALL file I/O and shell ops (see [Tool substitution](docs/agent-os/tool-substitution.md)). Use `route` to get model recommendations before expensive steps. Use `rescue` on repeated failures.
20
+
3.**Record** — call `mcp__atelier__trace` at completion.
21
+
22
+
## Tool substitution — mandatory
23
+
24
+
| Use this | Instead of | Why |
25
+
|---|---|---|
26
+
|`mcp__atelier__read`|`Read` / `Bash(cat ...)`| outline-first, 80-95% fewer tokens on large files |
|`mcp__atelier__code op=search`|`Bash(grep -rn symbol ...)`| SCIP-indexed, zero subprocess cost |
31
+
32
+
**Bash is only for git commands and process management.** Do NOT use `Bash(cat file)`, `Bash(grep ...)`, or `Bash(find ...)` — use the atelier equivalents above.
0 commit comments