Docs

Claude Code

Point Claude Code at the same project brain used by Codex, ChatGPT and API clients.

Use project-scoped keys and keep context pulls explicit at session start. CLAUDE.md is guidance; hooks or wrappers are needed for hard enforcement.

MCP config

{
  "mcpServers": {
    "aicontextbase": {
      "command": "C:\\Program Files\\nodejs\\npx.cmd",
      "args": ["tsx", "D:\\scripts\\aicontextbase\\apps\\mcp-server\\src\\index.ts"],
      "env": {
        "ACB_API_URL": "http://127.0.0.1:3003",
        "ACB_AGENT_KEY": "acb_live_xxx",
        "ACB_PROJECT_SLUG": "smakmail"
      }
    }
  }
}

CLAUDE.md snippet

# ACB integration

Before starting a task:
1. Call get_project_context for the current project.
2. Use the returned context as the active project truth.

After work:
1. Call record_task_summary.
2. Suggest durable facts with suggest_memory_update.
3. Do not claim memory was saved unless ACB returned success.

Daily flow

Pull context, build, send a task summary, let low-risk memory auto-commit, and route conflicts to Memory Inbox.