@algosuite/vo-mcp 0.2.0-beta.49 → 0.2.0-beta.51
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 +2 -0
- package/dist/cli.js +595 -187
- package/dist/cli.js.map +4 -4
- package/dist/index.js +452 -157
- package/dist/index.js.map +4 -4
- package/dist/runner-cli.js +539 -98
- package/dist/runner-cli.js.map +4 -4
- package/dist/runner-supervisor.js +100 -32
- package/dist/runner-supervisor.js.map +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @algosuite/vo-mcp
|
|
2
2
|
|
|
3
|
+
> **Architecture mandate (ADR-004, 2026-08-16): thin runner, cloud brain.** This package must shrink to a thin executor + shim — spawn the agent, manage worktrees/pushes, hold credentials, carry the local half of the MCP transport. Prompt composition, routing, watcher/merge/repair decisions, policy tables and the consensus engine belong in `cloud-run/vo-control-plane` / `cloud-run/vo-moat-plane`, not here (this package is on the PUBLIC npm registry). Fixes may land here when that is the fastest way to unblock the loop, but every decision-making module in this bundle is migration debt: record it in the ADR-004 ledger and move it to the plane (HQ roadmap Phase 11). Do not add new decision logic here without a ledger row.
|
|
4
|
+
|
|
3
5
|
AlgoHQ MCP server — the open protocol surface that exposes HQ's consensus and ratchet tool family to any MCP-capable LLM client (Claude Code, Claude Desktop, Cursor, Continue, Codex, etc.).
|
|
4
6
|
|
|
5
7
|
The live AlgoHQ whiteboard is available to every MCP client through
|