
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
devsh-memory-mcp
Advanced tools
MCP server for devsh/cmux agent memory - enables Claude Desktop and external clients to access sandbox memory and orchestrate multi-agent workflows
MCP server for devsh/cmux agent memory - enables Claude Desktop, Cursor, and other MCP clients to access sandbox agent memory and orchestrate multi-agent workflows.
npm install -g devsh-memory-mcp
# or
npx devsh-memory-mcp
# Use default memory directory (/root/lifecycle/memory)
devsh-memory-mcp
# Specify custom directory
devsh-memory-mcp --dir /path/to/memory
# Set agent name for messaging
devsh-memory-mcp --agent my-agent
Add to your claude_desktop_config.json:
{
"mcpServers": {
"devsh-memory": {
"command": "npx",
"args": ["devsh-memory-mcp"]
}
}
}
With custom options:
{
"mcpServers": {
"devsh-memory": {
"command": "npx",
"args": ["devsh-memory-mcp", "--dir", "/path/to/memory", "--agent", "claude-desktop"]
}
}
}
| Tool | Description |
|---|---|
read_memory | Read knowledge, tasks, or mailbox memory |
list_daily_logs | List available daily log dates |
read_daily_log | Read a specific daily log |
search_memory | Search across all memory files |
| Tool | Description |
|---|---|
send_message | Send a message to another agent (or "*" for broadcast) |
get_my_messages | Get messages addressed to this agent |
mark_read | Mark a message as read |
| Tool | Description |
|---|---|
append_daily_log | Append content to today's daily log |
update_knowledge | Add an entry to a priority section (P0/P1/P2) |
add_task | Add a new task to TASKS.json |
update_task | Update the status of a task |
| Tool | Description |
|---|---|
spawn_agent | Spawn a sub-agent to work on a task |
get_agent_status | Get status of a spawned agent |
list_spawned_agents | List all agents in current orchestration |
wait_for_agent | Wait for agent to complete (polling) |
wait_for_events | Wait for events via SSE (event-driven, recommended) |
cancel_agent | Cancel a running/pending agent |
get_orchestration_summary | Get dashboard-style orchestration summary |
pull_orchestration_updates | Sync local PLAN.json with server (read) |
push_orchestration_updates | Push task status/completion to server (write) |
read_orchestration | Read PLAN.json, AGENTS.json, or EVENTS.jsonl |
append_event | Append an orchestration event to EVENTS.jsonl |
update_plan_task | Update task status in PLAN.json |
| Tool | Description |
|---|---|
bind_provider_session | Bind a Claude session ID or Codex thread ID to task |
get_provider_session | Get provider session binding for task resume |
| Tool | Description |
|---|---|
log_learning | Log an orchestration learning, error, or feature request to the server |
get_active_orchestration_rules | Fetch active orchestration rules for the team |
log_learning types:
learning - Discovered a better orchestration patternerror - Found an error pattern to avoidfeature_request - Missing capability that would helpLogged items are reviewed by team leads and may be promoted to active orchestration rules.
| Variable | Description |
|---|---|
CMUX_TASK_RUN_JWT | JWT for authenticating orchestration API calls |
CMUX_ORCHESTRATION_ID | Current orchestration session ID |
CMUX_API_BASE_URL | API base URL (default: https://cmux-www.karldigi.dev) |
/root/lifecycle/memory/
├── knowledge/
│ └── MEMORY.md # Long-term insights (P0/P1/P2 sections)
├── daily/
│ └── {date}.md # Daily session logs
├── orchestration/
│ ├── PLAN.json # Orchestration task plan
│ ├── AGENTS.json # Agent registry
│ └── EVENTS.jsonl # Orchestration event log
├── behavior/
│ ├── HOT.md # Active workflow preferences
│ ├── corrections.jsonl # User corrections log
│ ├── LEARNINGS.jsonl # Orchestration learnings
│ ├── ERRORS.jsonl # Error patterns
│ ├── FEATURE_REQUESTS.jsonl # Feature requests
│ └── skill-candidates.json # Repeated patterns
├── TASKS.json # Task registry
└── MAILBOX.json # Inter-agent messages
Format: - [YYYY-MM-DD] Your insight here
cd packages/devsh-memory-mcp
bun test
The package includes 81 unit tests covering:
All tests run without external dependencies, suitable for CI environments
FAQs
MCP server for devsh/cmux agent memory - enables Claude Desktop and external clients to access sandbox memory and orchestrate multi-agent workflows
We found that devsh-memory-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.