@echomem/mcp 1.4.20 → 1.4.22
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 +1 -1
- package/assets/hud/echo-pricing-free-sticker.png +0 -0
- package/assets/hud/echo-pricing-power-sticker.png +0 -0
- package/assets/hud/echo-pricing-pro-sticker.png +0 -0
- package/assets/hud/scan-loop/frame-01-ready.png +0 -0
- package/assets/hud/scan-loop/frame-02-open.png +0 -0
- package/assets/hud/scan-loop/frame-03-pull.png +0 -0
- package/assets/hud/scan-loop/frame-04-read.png +0 -0
- package/assets/hud/scan-loop/frame-05-file.png +0 -0
- package/assets/hud/scan-loop/frame-06-close.png +0 -0
- package/dist/crypto.js +4 -0
- package/dist/encryption.js +14 -2
- package/dist/index.js +52 -117
- package/dist/migrate.js +38 -1
- package/dist/setup-page/client-core.js +286 -26
- package/dist/setup-page/client-extraction.js +322 -101
- package/dist/setup-page/client-lifecycle.js +46 -44
- package/dist/setup-page/client-report-audit.js +1 -1
- package/dist/setup-page/client-report-city.js +35 -22
- package/dist/setup-page/document.js +1 -1
- package/dist/setup-page/styles-extraction.js +455 -0
- package/dist/setup-page/styles-mvp.js +976 -0
- package/dist/setup-page/styles-website-alignment.js +237 -5
- package/dist/setup-page/styles.js +2 -0
- package/dist/setup-page.js +1 -0
- package/dist/setup-preview.js +142 -37
- package/dist/setup.js +527 -61
- package/dist/v1-contract.js +1 -11
- package/package.json +6 -2
package/dist/v1-contract.js
CHANGED
|
@@ -117,7 +117,7 @@ export function listToolSpecs(opts = {}) {
|
|
|
117
117
|
return [
|
|
118
118
|
{
|
|
119
119
|
name: canonicalToolNames.search,
|
|
120
|
-
description: withMcpVersion(`Recall the user's prior decisions, preferences, and project context from EchoMem — their long-term memory across ALL their AI tools, not just this session. Use it instead of re-deriving or re-asking what the user already settled. ${recallPlanNote} ${searchBillingReplyInstruction}${mapSection}\nReturns
|
|
120
|
+
description: withMcpVersion(`Recall the user's prior decisions, preferences, and project context from EchoMem — their long-term memory across ALL their AI tools, not just this session. Use it instead of re-deriving or re-asking what the user already settled. ${recallPlanNote} ${searchBillingReplyInstruction}${mapSection}\nReturns ranked memories only; the MCP host model writes the final answer. Current time: ${currentTime}.${updateSection}`),
|
|
121
121
|
inputSchema: {
|
|
122
122
|
type: "object",
|
|
123
123
|
properties: {
|
|
@@ -125,11 +125,6 @@ export function listToolSpecs(opts = {}) {
|
|
|
125
125
|
limit: { type: "number", default: 10 },
|
|
126
126
|
threshold: { type: "number", default: 0.1 },
|
|
127
127
|
timeFrameDays: { type: "number" },
|
|
128
|
-
includeAnswer: {
|
|
129
|
-
type: "boolean",
|
|
130
|
-
default: false,
|
|
131
|
-
description: "Default false: return only retrieved memories and skip answer generation. Set true for the legacy synthesized recall answer.",
|
|
132
|
-
},
|
|
133
128
|
triggerMessage: {
|
|
134
129
|
type: "string",
|
|
135
130
|
description: "Optional: the user's message that caused this recall. EchoMem stores only a redacted analytics preview and hash.",
|
|
@@ -148,11 +143,6 @@ export function listToolSpecs(opts = {}) {
|
|
|
148
143
|
limit: { type: "number", default: 10 },
|
|
149
144
|
threshold: { type: "number", default: 0.1 },
|
|
150
145
|
timeFrameDays: { type: "number" },
|
|
151
|
-
includeAnswer: {
|
|
152
|
-
type: "boolean",
|
|
153
|
-
default: false,
|
|
154
|
-
description: "Default false: return only retrieved memories and skip answer generation. Set true for the legacy synthesized recall answer.",
|
|
155
|
-
},
|
|
156
146
|
triggerMessage: {
|
|
157
147
|
type: "string",
|
|
158
148
|
description: "Optional: the user's message that caused this recall. EchoMem stores only a redacted analytics preview and hash.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@echomem/mcp",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.22",
|
|
4
4
|
"description": "EchoMem MCP bridge: cloud-first memory tools, local context HUD, and the Agent Doctor workspace forensics report (cost ledger + 3D repo city)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -22,7 +22,11 @@
|
|
|
22
22
|
"dev": "node dist/index.js",
|
|
23
23
|
"smoke": "node smoke.mjs",
|
|
24
24
|
"preview:extraction": "npm run build && node scripts/preview-extraction.mjs",
|
|
25
|
-
"test": "npm run build && node test/
|
|
25
|
+
"test:artifact": "npm run build && node test/package-artifact.test.mjs",
|
|
26
|
+
"test:registry": "node test/registry-artifact.test.mjs",
|
|
27
|
+
"test:registry-ui": "npm run build && node test/registry-ui.test.mjs",
|
|
28
|
+
"test:ui": "npm run build && node test/setup-ui.test.mjs",
|
|
29
|
+
"test": "npm run build && node test/local-data-paths.test.mjs && node test/crypto.test.mjs && node test/integration.test.mjs && node test/local-auth.test.mjs && node test/retrieval-only.test.mjs && node test/no-restart.test.mjs && node test/report.test.mjs && node test/forensics.test.mjs && node test/canonical-golden.test.mjs && node test/tools.test.mjs && node test/update-check.test.mjs && node test/delete.test.mjs && node test/low-touch-tools.test.mjs && node test/migrate.test.mjs && node test/restart-recovery.test.mjs && node test/hud.test.mjs",
|
|
26
30
|
"prepack": "npm run build && node scripts/bundle-city.mjs"
|
|
27
31
|
},
|
|
28
32
|
"dependencies": {
|