@lossless-claude/lcm 0.2.0 → 0.3.1
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.
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
},
|
|
8
8
|
"plugins": [
|
|
9
9
|
{
|
|
10
|
-
"name": "
|
|
10
|
+
"name": "lcm",
|
|
11
11
|
"source": {
|
|
12
12
|
"source": "github",
|
|
13
13
|
"repo": "lossless-claude/lcm"
|
|
14
14
|
},
|
|
15
15
|
"description": "Lossless context management — DAG-based summarization that preserves every message",
|
|
16
|
-
"version": "0.1
|
|
16
|
+
"version": "0.3.1",
|
|
17
17
|
"strict": true
|
|
18
18
|
}
|
|
19
19
|
]
|
package/dist/bin/lcm.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lossless-claude/lcm",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Never lose context again. lossless-claude compresses Claude Code sessions into searchable memory — every message preserved, every insight remembered.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/src/memory/index.js",
|
package/.claude-plugin/mcp.mjs
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
// MCP entrypoint for plugin system — delegates to the built lcm MCP server.
|
|
3
|
-
// Uses import.meta.url to resolve paths relative to this file, so it works
|
|
4
|
-
// regardless of how the plugin cache resolves ${CLAUDE_PLUGIN_ROOT}.
|
|
5
|
-
import { fileURLToPath } from "node:url";
|
|
6
|
-
import { join, dirname } from "node:path";
|
|
7
|
-
|
|
8
|
-
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
9
|
-
const serverModule = join(__dirname, "dist", "src", "mcp", "server.js");
|
|
10
|
-
|
|
11
|
-
const { startMcpServer } = await import(serverModule);
|
|
12
|
-
await startMcpServer();
|