Configuration

Shared configuration across platforms

Cross-Platform Configuration

The `WARP.md` file is a symbolic link to `CLAUDE.md`. This enables configuration sharing between Warp Terminal and Claude Code.


  • Single source of truth: Update CLAUDE.md, both platforms see changes
  • Zero duplication: No drift between configs
  • Automatic sync: Changes propagate instantly

Platform-Specific Structure

PlatformConfig FileAgents Location
Claude CodeCLAUDE.md.claude/agents/
GitHub Copilotcopilot-instructions.md.github/agents/
Warp TerminalWARP.md → CLAUDE.mdInline in WARP.md
Factory AIAGENTS.md.factory/droids/
OpenCodeAGENTS.md.opencode/agent/
Cursor.cursor/rules/ (MDC).cursor/rules/
OpenAI/CodexAGENTS.md.codex/agents/
Windsurf.windsurfrulesInline

ls -la WARP.md
# Output: WARP.md -> CLAUDE.md

Troubleshooting

Symlink broken on Windows:

git config --global core.symlinks true
git checkout HEAD -- WARP.md

Recreate symlink:

rm WARP.md
ln -s CLAUDE.md WARP.md