@everme/dsh 0.6.1 → 0.6.3

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -8,7 +8,7 @@ The Cordis plugin complements `@everme/memory-mcp`:
8
8
  - `session/event` captures the completed DSH turn, including tool calls and results, and writes it through `/mem/agent-memory`.
9
9
  - `session/flush` waits for pending EverMe writes so DSH persistence checkpoints do not race the memory upload.
10
10
  - Recall and save failures degrade open: DSH continues without blocking the user turn.
11
- - The MCP server remains available through `npx -y @everme/memory-mcp@latest` for explicit `mem_context`, `mem_search`, `mem_save_fact`, and `mem_save_turn` tool calls.
11
+ - The MCP server remains available through `npx -y @everme/memory-mcp@latest` for explicit read-only `mem_context` and `mem_search` tool calls (saving is automatic via the hooks).
12
12
 
13
13
  ## Install
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everme/dsh",
3
- "version": "0.6.1",
3
+ "version": "0.6.3",
4
4
  "type": "module",
5
5
  "description": "Native EverMe lifecycle hooks for DeepSeek Harness.",
6
6
  "license": "Apache-2.0",
@@ -43,7 +43,7 @@
43
43
  "registry": "https://registry.npmjs.org"
44
44
  },
45
45
  "dependencies": {
46
- "@everme/agent-sdk": "^0.6.1"
46
+ "@everme/agent-sdk": "^0.6.3"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "@deepseek-ai/dsh-llm": ">=0.1.0-rc.6 <0.2.0"