Global behavior
AGENTS.md holds durable rules that should apply across projects: verify before stating, fix root causes, respect approval boundaries, and communicate like a human.
The public version of how I work with coding agents today. One shared operating brain, four focused workflows, and a thin adapter for each runtime — packaged so you can understand it before you install it.
bash <(curl -fsSL https://dormizrahi.com/install-v2)macOS or Linux · Codex, Claude Code, or both · Existing matching files are backed up first.
Version 1 treated Claude's global CLAUDE.md as the whole brain. It also pushed every project into one fixed project-brain folder and stored each workflow as a large slash command. That worked, but it mixed permanent behavior, project facts, current status, and procedures into one system.
Version 2 separates those jobs. The global brain says how the agent should work with you. Each project says what is special about that project. Code and configuration own facts the agent can inspect. Sprint or tracker files own current work. Skills hold procedures that should load only when needed.
The result is smaller where it should be small, deeper where it needs depth, and much harder to make stale. Codex and Claude use the same behavioral source instead of slowly drifting into two different collaborators.
AGENTS.md is the canonical source. Codex reads it directly. Claude gets a tiny CLAUDE.md that imports it and adds only Claude-specific wiring.
Source of truth
~/.codex/AGENTS.mdCollaboration rules, verification discipline, approval boundaries, communication style, and information ownership.
Claude adapter
~/.claude/CLAUDE.mdImports the canonical brain and describes only Claude's skill and style-hook wiring.
On-demand workflows
~/.agents/skills/ + ~/.claude/skills/The same four procedures are exposed to both agents without bloating every conversation.
AGENTS.md holds durable rules that should apply across projects: verify before stating, fix root causes, respect approval boundaries, and communicate like a human.
A project AGENTS.md contains only unusual local rules and pointers. A project CLAUDE.md imports it instead of duplicating it.
Code, configuration, migrations, logs, and live inspection remain authoritative. The brain tells the agent to look; it does not cache facts that will rot.
The project's existing sprint, session, issue tracker, or handoff system owns status. V2 does not force a new folder or vocabulary onto the project.
Skills hold conditional workflows. They load when their trigger matches instead of living in the global context on every turn.
These replace the three giant v1 commands. Claude exposes them as slash commands; Codex can invoke them naturally or through a skill mention.
init-projectInitializes or audits lean project instructions. It verifies the repository first and does not create a brain folder unless the project already owns one.
sprintTurns an outcome into bounded, ordered work using the planning format the project already has.
handoffCaptures verified progress, failures, changed state, and the exact next action in the project's existing session system.
orient-statusAnswers “what are we doing?” from current evidence instead of paraphrasing stale conversation memory.
Claims about files, runtime behavior, tests, and external facts must come from something inspected or run. Unknowns stay labeled unknown.
The agent establishes what the user is trying to achieve before choosing a technical mechanism.
Safe reads, diagnostics, and approved local work continue without ceremony. Pushes, deployments, destructive deletion, purchases, and messages to others still wait for explicit approval.
The style layer leads with the answer and removes filler without reducing English to cryptic fragments.
| Path | Owner |
|---|---|
| ~/.codex/AGENTS.md | Canonical global brain |
| ~/.claude/CLAUDE.md | Thin Claude adapter |
| ~/.agents/skills/<skill>/ | Shared Codex skill copies |
| ~/.claude/skills/<skill>/ | Claude skill copies |
| ~/.claude/rules/conversation-style.md | Full Claude response-style rule |
| ~/.claude/hooks/conversation-style-*.js | Session and per-prompt style reinforcement |
| ~/.claude/settings.json | Two hook entries merged; other settings preserved |
| ~/.agents/backups/brain-v2-install-*/ | Pre-install copies of replaced files |
The installer asks three personalization questions, prints every destination, backs up matching files, and then writes the package. Read the source or run it locally first if you want to inspect every line.
bash <(curl -fsSL https://dormizrahi.com/install-v2)