Quick Start
Get Sci running and connected to Claude Code in under 5 minutes.
Prerequisites
- Docker Desktop
- Node.js 18+
- Claude Code (or any MCP-compatible agent)
Install
bash
git clone https://github.com/sovereign-cognitive-identity/sci
cd sci
npm installStart the database
bash
docker compose up -dThis starts Postgres 16 with pgvector. The schema is applied automatically on first run.
Build
bash
npm run buildFirst-run setup
bash
sci setupThis runs a 4-step wizard:
- Verifies the database connection
- Checks the schema
- Shows current memory counts
- Generates a trusted token for Claude Code
Copy the claude mcp add command it outputs and run it.
Restart Claude Code
After running claude mcp add, restart Claude Code. The sci MCP server will be available with four tools:
memory_recall— semantic search across all memorymemory_store— store a new episodic memorymemory_identity— retrieve your identity factsmemory_status— health check
Seed your memory (optional but recommended)
Export your Claude conversation history from claude.ai/settings/account → Privacy → Export Data.
Then:
bash
sci import --claude ~/Downloads/conversations.jsonThis seeds episodic memories and runs identity extraction, so Sci immediately knows your projects, preferences, and context.
Verify the privacy guarantee
Before trusting Sci with real conversations, run:
bash
node demo/privacy-demo.mjsThis proves in under 10 seconds that your real name never appears in outbound text. All 6 checks must pass.
What's next
- Connect additional agents — scope Cursor to your work profile, give a third-party agent read-only access
- Choose a storage backend — move your data to Dropbox, S3, or iCloud
- Set up nightly consolidation — let Sci learn from your conversations automatically