surrogate-protocol-mcp 3.0.0 → 3.0.1
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 +21 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,13 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
A Model Context Protocol (MCP) server for multi-agent coding orchestration. Enables Claude Code to spawn autonomous coding agents with isolated worktrees, file locks, and validation gates.
|
|
4
4
|
|
|
5
|
-
## What's New in
|
|
5
|
+
## What's New in 3.0.0
|
|
6
6
|
|
|
7
|
-
🚀 **
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
7
|
+
🚀 **Google-Level Agentic Platform Upgrade**
|
|
8
|
+
|
|
9
|
+
**Phase 1 - Spanner State Management:**
|
|
10
|
+
- SQLite with WAL mode replaces YAML (99.9% faster lock acquisition: 10s → <1ms)
|
|
11
|
+
- ACID transactions eliminate race conditions
|
|
12
|
+
- Automatic migration from YAML with backup/rollback support
|
|
13
|
+
|
|
14
|
+
**Phase 2 - CitC Workspace Isolation:**
|
|
15
|
+
- Pre-provisioned workspace pools for instant allocation (<500ms)
|
|
16
|
+
- Atomic workspace provisioning via filesystem operations
|
|
17
|
+
- Graveyard-based async cleanup for non-blocking decommissioning
|
|
18
|
+
|
|
19
|
+
**Phase 3 - Intelligence Layer:**
|
|
20
|
+
- Blaze-lite dependency graph for selective test execution (50% reduction)
|
|
21
|
+
- Tricorder semantic review with 5 built-in rules (90% compliance)
|
|
22
|
+
- Automated architecture compliance checking
|
|
23
|
+
|
|
24
|
+
**Hotfix:**
|
|
25
|
+
- Fixed HAS_CHANGES gate failing on manually merged branches
|
|
12
26
|
|
|
13
27
|
## Features
|
|
14
28
|
|
|
@@ -25,7 +39,7 @@ A Model Context Protocol (MCP) server for multi-agent coding orchestration. Enab
|
|
|
25
39
|
### For Claude Code
|
|
26
40
|
|
|
27
41
|
```bash
|
|
28
|
-
claude mcp add surrogate-protocol-mcp --scope user npx surrogate-protocol-mcp@latest
|
|
42
|
+
claude mcp add surrogate-protocol-mcp --scope user -- npx surrogate-protocol-mcp@latest
|
|
29
43
|
```
|
|
30
44
|
|
|
31
45
|
### For Codex
|
package/package.json
CHANGED