@membank/cli 0.0.0-pr-4-20260427141819 → 0.0.0
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/dist/index.mjs +4 -1
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -674,7 +674,10 @@ var SetupOrchestrator = class {
|
|
|
674
674
|
};
|
|
675
675
|
//#endregion
|
|
676
676
|
//#region src/index.ts
|
|
677
|
-
if (process.argv.includes("--mcp"))
|
|
677
|
+
if (process.argv.includes("--mcp")) {
|
|
678
|
+
await startServer();
|
|
679
|
+
process.exit(0);
|
|
680
|
+
}
|
|
678
681
|
const program = new Command();
|
|
679
682
|
program.name("membank").description("LLM memory management system").option("--json", "emit machine-readable JSON only").option("-y, --yes", "skip all confirmation prompts").option("--mcp", "start the MCP stdio server (for harness integration)");
|
|
680
683
|
program.command("query <queryText>").description("search memories by semantic similarity").option("--type <type>", "filter by memory type (correction|preference|decision|learning|fact)").option("--limit <n>", "maximum number of results", "10").action(async (queryText, cmdOptions) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@membank/cli",
|
|
3
|
-
"version": "0.0.0
|
|
3
|
+
"version": "0.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"@huggingface/transformers": "^4.2.0",
|
|
18
18
|
"commander": "^14.0.3",
|
|
19
19
|
"ora": "^9.4.0",
|
|
20
|
-
"@membank/core": "0.0.0
|
|
21
|
-
"@membank/mcp": "0.0.0
|
|
20
|
+
"@membank/core": "0.0.0",
|
|
21
|
+
"@membank/mcp": "0.0.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/node": "^25.6.0",
|