You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Teaches Claude how to use the semantic-memory MCP server for persistent knowledge storage, retrieval, and graph traversal. Includes PreCompact hook to preserve insights before context compaction.",
4
+
"description": "Teaches Claude how to use the sem-mem MCP server for persistent knowledge storage, retrieval, and graph traversal. Includes PreCompact hook to preserve insights before context compaction.",
Default location: `~/.claude/semantic-memory/memory.db` (override with `MEMORY_DB_PATH` env var).
44
+
Default location: `~/.claude/sem-mem/memory.db` (override with `MEMORY_DB_PATH` env var).
45
45
46
46
Four tables: `insights`, `subjects` (with `insight_subjects` junction), `insight_relations`, `subject_relations`. Schema versioned via `schema_versions` table.
47
47
@@ -72,4 +72,4 @@ Migrations are Python functions in `storage.py` (named `_migrate_NNN_*`), tracke
72
72
73
73
## Plugin
74
74
75
-
This repo is also a Claude Code plugin (`claude plugin install semantic-memory@brainspace`). Plugin files live at the repo root: `.claude-plugin/`, `skills/`, `hooks/`. Includes a `using-semantic-memory` skill and a `PreCompact` hook.
75
+
This repo is also a Claude Code plugin (`claude plugin install sem-mem@brainspace`). Plugin files live at the repo root: `.claude-plugin/`, `skills/`, `hooks/`. Includes a `using-sem-mem` skill and a `PreCompact` hook.
Copy file name to clipboardExpand all lines: README.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# semantic-memory
1
+
# sem-mem
2
2
3
3
An MCP server that gives AI agents persistent, intent-based memory. Text is decomposed into atomic insights, classified into semantic frames, embedded as vectors, and stored in a SQLite knowledge graph with subject indexing.
4
4
@@ -43,14 +43,14 @@ export AWS_REGION=us-east-1
43
43
### 3. Install the Claude Code plugin
44
44
45
45
```bash
46
-
claude plugin install semantic-memory@brainspace
46
+
claude plugin install sem-mem@brainspace
47
47
```
48
48
49
49
### 4. Verify
50
50
51
51
```bash
52
52
uv run pytest # 85 tests pass
53
-
uv run semantic-memory# server starts
53
+
uv run sem-mem# server starts
54
54
```
55
55
56
56
## Configuration
@@ -61,7 +61,7 @@ uv run semantic-memory # server starts
61
61
|---|---|---|
62
62
|`OPENAI_API_KEY`| Yes*| Embedding generation via OpenAI (text-embedding-3-small) |
63
63
|`ANTHROPIC_API_KEY`| Yes*| Insight normalization via Anthropic (Claude Haiku) |
64
-
|`MEMORY_DB_PATH`| No | Database path. Default: `~/.claude/semantic-memory/memory.db`|
64
+
|`MEMORY_DB_PATH`| No | Database path. Default: `~/.claude/sem-mem/memory.db`|
65
65
|`EMBEDDING_PROVIDER`| No |`openai` (default) or `bedrock`|
66
66
|`LLM_PROVIDER`| No |`anthropic` (default) or `bedrock`|
67
67
|`AWS_PROFILE`| No | AWS SSO profile name (required for Bedrock) |
@@ -78,14 +78,14 @@ Add to your MCP settings (see `mcp-config-example.json`):
0 commit comments