@everme/dsh 0.6.0 → 0.6.2
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 +8 -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
|
|
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
|
|
|
@@ -20,7 +20,13 @@ evercli auth login
|
|
|
20
20
|
evercli plugin install dsh
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
`@everme/dsh` declares a native DSH bundle. EverCLI
|
|
23
|
+
`@everme/dsh` declares a native DSH bundle. EverCLI prefers the installed `dsh` launcher and falls back to `npx --yes @deepseek-ai/dsh@latest`, refreshes the dependency in both the `web` and `headless` profiles, and configures both profiles to start `@everme/memory-mcp@latest` through `npx` at runtime. The profiles share the credentials in `~/.dsh/.env`, while EverCLI manages separate MCP blocks in `~/.dsh/profiles/web/cordis.patch.yml` and `~/.dsh/profiles/headless/cordis.patch.yml`. The DSH install flow has a five-minute minimum operation budget so the first npm download is not clipped by EverCLI's default command timeout.
|
|
24
|
+
|
|
25
|
+
Web sessions recall and save automatically after restart. Headless tasks use the same lifecycle integration and wait for pending memory writes before the one-shot process exits:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
dsh --profile headless "summarize the decisions from my previous session"
|
|
29
|
+
```
|
|
24
30
|
|
|
25
31
|
## Cordis entry
|
|
26
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everme/dsh",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
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.
|
|
46
|
+
"@everme/agent-sdk": "^0.6.2"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"@deepseek-ai/dsh-llm": ">=0.1.0-rc.6 <0.2.0"
|