@everme/claude-code 0.3.2 → 0.3.4
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.
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"name": "everme",
|
|
11
11
|
"source": "./",
|
|
12
12
|
"description": "Automatic memory recall for Claude Code through the EverMe gateway. Saves and recalls per-session context using your EverMe account credentials.",
|
|
13
|
-
"version": "0.3.
|
|
13
|
+
"version": "0.3.4",
|
|
14
14
|
"homepage": "https://everme.evermind.ai",
|
|
15
15
|
"license": "Apache-2.0"
|
|
16
16
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "everme",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "EverMe — automatic memory recall for Claude Code. Recalls relevant context from past sessions before each prompt and saves new turns through the EverMe gateway.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "EverMind AI",
|
|
@@ -50,6 +50,9 @@ async function main() {
|
|
|
50
50
|
let count = 0;
|
|
51
51
|
let degraded = null;
|
|
52
52
|
try {
|
|
53
|
+
// The raw prompt can be a huge paste; the SDK's searchMemory clamps
|
|
54
|
+
// the query to the backend's MaxSearchQueryRunes limit, so we pass it
|
|
55
|
+
// through as-is rather than capping here too.
|
|
53
56
|
const res = await searchMemories(prompt, { topK: TOP_K });
|
|
54
57
|
// EverOS frequently returns score=null on episodic hits (decoded as
|
|
55
58
|
// 0 over the wire) — that's "unscored", not "score zero". Treat
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everme/claude-code",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "EverMe native plugin for Claude Code — automatic memory recall via SessionStart/UserPromptSubmit/Stop/SessionEnd hooks, plus /recall slash + bundled MCP server.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"README.md"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@everme/agent-sdk": "^0.3.
|
|
24
|
+
"@everme/agent-sdk": "^0.3.4"
|
|
25
25
|
},
|
|
26
26
|
"keywords": [
|
|
27
27
|
"evermind",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"homepage": "https://everme.evermind.ai",
|
|
38
38
|
"repository": {
|
|
39
39
|
"type": "git",
|
|
40
|
-
"url": "git+https://github.com/EverMind-AI/EverMe
|
|
40
|
+
"url": "git+https://github.com/EverMind-AI/EverMe.git",
|
|
41
41
|
"directory": "plugins/claude-code"
|
|
42
42
|
},
|
|
43
43
|
"bugs": {
|
|
44
|
-
"url": "https://github.com/EverMind-AI/EverMe
|
|
44
|
+
"url": "https://github.com/EverMind-AI/EverMe/issues"
|
|
45
45
|
},
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public",
|