HipCortex Memory Engine & Cognitive OS for VS Code & Antigravity IDE (
|
| Tool | Purpose |
|---|---|
hipcortex_search |
Semantic + live_beliefs-aware search |
hipcortex_health |
Health + capability gate |
hipcortex_predict |
WorldModel single-step P(s'|s,a) |
hipcortex_rollout |
Multi-step Dirichlet / MCTS rollout (POST /worldmodel/rollout) |
hipcortex_graph_search |
PPR / related memories from seed UUID |
hipcortex_causal |
Causal attribution |
hipcortex_topo_ppr |
Topo graph Personalized PageRank (/topo/*) |
hipcortex_deconstruct |
Hypothesis → candidate edges (/topo/deconstruct) |
hipcortex_check_edge |
Contradiction / cycle check before link |
hipcortex_can_execute |
SelfModel gate |
MCP hosts use the Python MCP server (18 tools) via hipcortex install — parallel path; see sdk/mcp/README.md.
Headroom & Caveman (token savings)
- Headroom (Top-5): ~59–84% token reduction vs full history dump
- Caveman (Top-3): ~70–88% in tight debug loops
Configuration (settings.json)
{
"hipcortex.apiUrl": "http://127.0.0.1:3030",
"hipcortex.apiKey": "",
"hipcortex.autoStart": true,
"hipcortex.optimizationMode": "headroom"
}
Local development & packaging
cd vscode-extension
npm install
npm run compile
npm test
npx @vscode/vsce package --allow-missing-repository
Produces hipcortex-memory-0.5.8.vsix (version from package.json).
CI release workflow packages multi-OS VSIX after matrix binary builds.
Related
- Channel honesty: docs/channels.md ·
hipcortex channels - Capability matrix: docs/capabilities.md
- Host wizards: docs/hosts/README.md