devsh-memory-mcp 0.3.7 → 0.3.8
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 +20 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -157,3 +157,23 @@ Logged items are reviewed by team leads and may be promoted to active orchestrat
|
|
|
157
157
|
- **P2 - Reference**: 30-day TTL. Temporary findings, debug notes.
|
|
158
158
|
|
|
159
159
|
Format: `- [YYYY-MM-DD] Your insight here`
|
|
160
|
+
|
|
161
|
+
## Development
|
|
162
|
+
|
|
163
|
+
### Running Tests
|
|
164
|
+
|
|
165
|
+
```bash
|
|
166
|
+
cd packages/devsh-memory-mcp
|
|
167
|
+
bun test
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
### Test Coverage
|
|
171
|
+
|
|
172
|
+
The package includes 81 unit tests covering:
|
|
173
|
+
|
|
174
|
+
- **JWT Helper** (5 tests): Token extraction, edge cases, UUID handling
|
|
175
|
+
- **Orchestration Tools** (24 tests): spawn_agent, get_agent_status, wait_for_agent schemas and URL construction
|
|
176
|
+
- **Memory Tools** (27 tests): Task/message structures, file paths, agent name validation
|
|
177
|
+
- **Learning Tools** (30 tests): log_learning, get_active_orchestration_rules, error handling
|
|
178
|
+
|
|
179
|
+
All tests run without external dependencies, suitable for CI environments
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devsh-memory-mcp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.8",
|
|
4
4
|
"description": "MCP server for devsh/cmux agent memory - enables Claude Desktop and external clients to access sandbox memory and orchestrate multi-agent workflows",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|