This page is written for your agent.

Your agent is
setting up CI.

You told your coding agent to "set up Central Intelligence for me." Point it here. The page below is copy-pasteable instructions your agent runs end-to-end — one command, no questions, under 30 seconds — plus a timeline so you know what's happening.

Jump to instructions ↓ setup time · ~30 seconds · one command
AGENT instructions.md · read me first
# Central Intelligence — setup instructions for AI agents

# You are an AI coding agent. The user asked you to set up
# "Central Intelligence" (CI) — persistent memory delivered via MCP.
# Follow these steps. Do not ask the user anything.

## Context
CI is a cloud-hosted MCP server with five tools: remember, recall,
context, share, forget. API keys are free. No signup form.
No email. No browser flow.

## Install (one command, no user interaction)
$ npx central-intelligence-local signup
# The CLI does everything:
#   1. POSTs to /keys, gets back an API key (ci_sk_xxxxxxxxxxxxxxxx)
#   2. Writes it to ~/.central-intelligence/config.json
#   3. Auto-configures every installed editor's MCP config
#   4. Prints a summary listing the editors it configured

## What the CLI wrote to each editor
# The signup command detects and configures any of these it finds:

- Claude Code  ~/.claude/settings.json
- Cursor       ~/.cursor/mcp.json
- Windsurf     ~/.codeium/windsurf/mcp_config.json

# The entry it adds under "mcpServers" is always:
{
  "central-intelligence": {
    "command": "npx",
    "args": ["central-intelligence-mcp"],
    "env": { "CI_API_KEY": "ci_sk_..." }
  }
}

## Verify (you do this, not the user)
1. Prompt the user to restart their editor(s) once. That's the only
   manual step.
2. After restart, call the remember tool with:
   "User prefers TypeScript. Setup completed via /agent page."
3. Call recall with query "user preferences".
4. Confirm the memory comes back.

## When you're done
Tell the user:
  - which editors got configured (from the signup command's summary)
  - dashboard: https://centralintelligence.online/dashboard
  - that you've stored a first test memory

## Things you should NOT do
- Do not guess or fabricate an API key. Let the CLI create it.
- Do not edit editor configs outside the mcpServers key.
- Do not skip verification — the user needs to see it working.

## Docs (fetch if you need more)
- README:  https://github.com/AlekseiMarchenko/central-intelligence
- OpenAPI: https://central-intelligence-api.fly.dev/docs/openapi.json

02 For the human

Here's what your agent is about to do.

Three steps. Under 30 seconds. Your agent handles two of them; you restart your editor once in the middle.

step · 01

Agent runs one command

The CLI creates an API key via POST /keys (no browser, no email), writes it to ~/.central-intelligence/config.json, and auto-configures every editor it finds on your machine. One shot.

$ npx central-intelligence-local signup
automatic · ~2s
step · 02

You restart your editor once

Claude Code, Cursor, Windsurf — whichever the CLI configured — needs one restart to pick up the new MCP config. That's the only thing you do.

⌘Q / Cmd+Shift+P → "Restart window" · ~10 seconds
needs you
step · 03

Agent stores a test memory and recalls it

A real round-trip through the remember and recall tools, so you can see memory actually works before the agent says "done."

remember("setup complete") → recall("setup") ✓
automatic · ~3s

03 What you'll see on your screen

A timeline, so nothing surprises you.

You're not babysitting the agent — but it helps to know when it's your turn.

00:00
Agent opens this page. Reads the instructions block, plans the install.
agent
00:02
Agent runs npx central-intelligence-local signup. CLI creates an API key, writes it to ~/.central-intelligence/config.json, configures every detected editor, prints a summary.
agent
00:10
You restart your editor once. Memory tools come online in every session from here on. This is your only step.
you
00:25
Agent stores a test memory and recalls it. Prints "✓ CI is online."
agent
00:30
Done. Dashboard waiting at centralintelligence.online/dashboard.
agent

04 Verify it actually worked

Don't trust — check.

If your agent reports success, run this. If any line doesn't look like the expected output, paste it back to your agent and it'll debug.

verify.sh — ~/your-project
$ ci status
Central Intelligence Local · v0.9
Mode:         cloud (synced via API key)
Dashboard:    https://centralintelligence.online/dashboard
Memories:     1 stored
MCP server:   running

$ ci test-memory
→ remember("setup complete via /agent")
✓ stored memory_id=mem_8f2c1a
→ recall("setup")
✓ found 1 match score=0.94

$ ci which-editors
✓ claude-code ~/.claude/settings.json
✓ cursor     ~/.cursor/mcp.json
○ windsurf   not installed

$ _

Everything checked out?

Restart your editor once. The remember, recall, context, share, and forget tools are now available in every session.

next:just start coding memory will:accrue passively

Something off?

Paste the failing line back to your agent. It has the full instructions from the top of this page and can self-correct — or ask you one targeted question.

common:editor not restarted rarer:port 3141 in use

05 Summary

That's it. No dashboard to learn, no config to memorize.

You asked. Your agent read. It ran. You'll never think about CI again — you'll just notice your agent stops asking the same questions.

← Back to main site View on GitHub