@muthuishere/crossmem 0.1.6 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -7
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**Portable context memory across local agent tools.**
|
|
4
4
|
|
|
5
|
-
`crossmem` discovers your local Claude Code, Codex, Devin, Copilot (VS Code and CLI), and OpenCode session stores, lists available sessions, and emits a clean context bundle that can be loaded into another agent session — so context follows you across tools and repos.
|
|
5
|
+
`crossmem` discovers your local Claude Code, Codex, Devin (CLI and desktop), Copilot (VS Code and CLI), and OpenCode session stores, lists available sessions, and emits a clean context bundle that can be loaded into another agent session — so context follows you across tools and repos.
|
|
6
6
|
|
|
7
7
|
It is primarily a fast, local-first context CLI. It sends no telemetry; everything is local reads.
|
|
8
8
|
|
|
@@ -78,12 +78,25 @@ Every command has built-in help: `crossmem help load`, `crossmem --version`.
|
|
|
78
78
|
|
|
79
79
|
`crossmem` reads these on-disk stores (read-only):
|
|
80
80
|
|
|
81
|
-
| Tool | Store |
|
|
82
|
-
| --- | --- |
|
|
83
|
-
| Claude Code | `~/.claude/projects/<encoded-workspace>/*.jsonl` (+ per-project `memory/`) |
|
|
84
|
-
| Codex | `~/.codex/sessions/YYYY/MM/DD/*.jsonl`, `~/.codex/history.jsonl` |
|
|
85
|
-
| Copilot (VS Code) | `~/Library/Application Support/Code/User/workspaceStorage/<id>/.../*.jsonl` |
|
|
86
|
-
|
|
|
81
|
+
| Tool | Store (macOS / Linux) | Store (Windows) |
|
|
82
|
+
| --- | --- | --- |
|
|
83
|
+
| Claude Code | `~/.claude/projects/<encoded-workspace>/*.jsonl` (+ per-project `memory/`) | same |
|
|
84
|
+
| Codex | `~/.codex/sessions/YYYY/MM/DD/*.jsonl`, `~/.codex/history.jsonl` | same |
|
|
85
|
+
| Copilot (VS Code) | `~/Library/Application Support/Code/User/workspaceStorage/<id>/.../*.jsonl` (macOS), `~/.config/Code/User/...` (Linux) | `%APPDATA%\Code\User\workspaceStorage\<id>\...` |
|
|
86
|
+
| Copilot CLI | `~/.copilot/session-store.db` (SQLite) | same |
|
|
87
|
+
| Devin CLI | `~/.local/share/devin/cli/sessions.db` (SQLite) | `%APPDATA%\Cognition\cli\sessions.db` |
|
|
88
|
+
| Devin desktop | `~/.codeium/windsurf/cascade/*.pb` — encrypted, discovery only | same |
|
|
89
|
+
| OpenCode | `~/.local/share/opencode/opencode*.db` (SQLite) | `%APPDATA%\opencode\opencode*.db` |
|
|
90
|
+
|
|
91
|
+
The Devin desktop app stores its own Cascade conversations encrypted, so they cannot be read; desktop work driven through its `devin-cli` connector lands in the Devin CLI store and *is* readable. `$CLAUDE_CONFIG_DIR` / `$CODEX_HOME` are honored when set, and `%LOCALAPPDATA%`, `$XDG_DATA_HOME`, VS Code Insiders, and the old Windsurf folders are checked too.
|
|
92
|
+
|
|
93
|
+
Run `crossmem config` to see which of these were found on your machine. If a tool keeps its sessions elsewhere, repoint it in `~/.config/crossmemcli/config.json`:
|
|
94
|
+
|
|
95
|
+
```json
|
|
96
|
+
{ "stores": { "devin:sqlite-sessions": "D:/agents/Cognition/cli/sessions.db" } }
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
Keys are `provider:kind` (from `crossmem scan`) or a bare `provider`; values take `~`, `%VAR%`, `$VAR`, and `*` globs. Use `extraStores` instead of `stores` to add a location without dropping the built-in ones, and `crossmem config --init` to write a starter file.
|
|
87
100
|
|
|
88
101
|
## Bundles & guardrails
|
|
89
102
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@muthuishere/crossmem",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"description": "Portable context memory across local agent tools.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"crossmem",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"README.md"
|
|
35
35
|
],
|
|
36
36
|
"optionalDependencies": {
|
|
37
|
-
"@muthuishere/crossmem-darwin-arm64": "0.1.
|
|
38
|
-
"@muthuishere/crossmem-darwin-x64": "0.1.
|
|
39
|
-
"@muthuishere/crossmem-linux-arm64": "0.1.
|
|
40
|
-
"@muthuishere/crossmem-linux-x64": "0.1.
|
|
41
|
-
"@muthuishere/crossmem-windows-x64": "0.1.
|
|
37
|
+
"@muthuishere/crossmem-darwin-arm64": "0.1.9",
|
|
38
|
+
"@muthuishere/crossmem-darwin-x64": "0.1.9",
|
|
39
|
+
"@muthuishere/crossmem-linux-arm64": "0.1.9",
|
|
40
|
+
"@muthuishere/crossmem-linux-x64": "0.1.9",
|
|
41
|
+
"@muthuishere/crossmem-windows-x64": "0.1.9"
|
|
42
42
|
},
|
|
43
43
|
"os": [
|
|
44
44
|
"darwin",
|