Markdown-based AI memory system with decay scoring, episodic logging, MCP server, and auto-curated CORE.md
Go to file
Cal Corum 194990d424 feat: auto-create edges on memory_store in MCP server
Automatically find and link related memories after every store operation,
removing reliance on Claude manually creating edges. Uses recall + type
heuristics to choose edge types (SOLVES, BUILDS_ON, RELATED_TO) and
returns created edge IDs in the store response for optional review.

Key design choices:
- Keyword-only fallback requires tag overlap to prevent spurious edges
- Similarity threshold (0.4) filters before max-edge cap (3)
- Edge description arrow matches actual from/to direction
- Failures never break the store operation

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-28 22:07:05 -06:00
scripts Initial commit: extract cognitive-memory app from skill directory 2026-02-28 16:02:28 -06:00
systemd Initial commit: extract cognitive-memory app from skill directory 2026-02-28 16:02:28 -06:00
.gitignore Initial commit: extract cognitive-memory app from skill directory 2026-02-28 16:02:28 -06:00
analysis.py Initial commit: extract cognitive-memory app from skill directory 2026-02-28 16:02:28 -06:00
CLAUDE.md docs: add CLAUDE.md for project conventions 2026-02-28 16:07:30 -06:00
cli.py Initial commit: extract cognitive-memory app from skill directory 2026-02-28 16:02:28 -06:00
client.py Initial commit: extract cognitive-memory app from skill directory 2026-02-28 16:02:28 -06:00
common.py Initial commit: extract cognitive-memory app from skill directory 2026-02-28 16:02:28 -06:00
edges.py Initial commit: extract cognitive-memory app from skill directory 2026-02-28 16:02:28 -06:00
embeddings.py Initial commit: extract cognitive-memory app from skill directory 2026-02-28 16:02:28 -06:00
feature.json chore: update feature.json with current file inventory 2026-02-28 16:08:03 -06:00
mcp_server.py feat: auto-create edges on memory_store in MCP server 2026-02-28 22:07:05 -06:00