Two minutes to compound intelligence
Pick your tool. Copy the config. Your next AI session remembers everything.
Install once from npm. Works with any MCP-compatible client.
terminal$ npm install @frankx/starlight-intelligence-system
Every adapter speaks the same MCP protocol. Pick yours and paste.
Best for deep work — persistent sessions and rich tool access.
mcp config{
"mcpServers": {
"starlight-sis": {
"command": "node",
"args": ["node_modules/@frankx/starlight-intelligence-system/dist/mcp-server.js"]
}
}
}Best for IDE-native editing with memory-aware completions.
mcp config{
"mcpServers": {
"starlight-sis": {
"command": "node",
"args": ["node_modules/@frankx/starlight-intelligence-system/dist/mcp-server.js"]
}
}
}Best for terminal-first workflows with OpenAI reasoning.
mcp config{
"mcpServers": {
"starlight-sis": {
"command": "node",
"args": ["node_modules/@frankx/starlight-intelligence-system/dist/mcp-server.js"]
}
}
}Best for massive context — feed your whole vault in one shot.
mcp config{
"mcpServers": {
"starlight-sis": {
"command": "node",
"args": ["node_modules/@frankx/starlight-intelligence-system/dist/mcp-server.js"]
}
}
}Best for multi-model routing — swap models without losing memory.
mcp config{
"mcp": {
"starlight-sis": {
"type": "local",
"command": ["node", "node_modules/@frankx/starlight-intelligence-system/dist/mcp-server.js"]
}
}
}Run the MCP server directly to confirm it starts and lists its tools.
terminal$ npx @frankx/starlight-intelligence-system --list-tools → sis_append_entry → sis_recent_entries → sis_vault_search → sis_stats
In any configured tool, just tell the agent to remember something. Under the hood it calls sis_append_entry.
terminal// in Claude Code, just ask: "Remember that we chose Next.js 16 for the App Router streaming work." // or call the tool directly: sis_append_entry( vault: "technical", insight: "Chose Next.js 16 for App Router streaming", confidence: "high" )
That entry is now a plain JSONL line in vaults/frank/technical.jsonl. Every tool with the MCP configured can read it. Your memory compounds across every session.