@algosuite/vo-mcp 0.2.0-beta.23 → 0.2.0-beta.24
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/dist/agent-auth-probe-cli.mjs +1386 -0
- package/dist/autostart-cli.js +29 -3
- package/dist/autostart-cli.js.map +2 -2
- package/dist/ci/check-local-pr-overlap.js +47142 -42080
- package/dist/cli.js +3 -10
- package/dist/cli.js.map +2 -2
- package/dist/index.js +3 -10
- package/dist/index.js.map +2 -2
- package/dist/install-cli.js +28 -2
- package/dist/install-cli.js.map +2 -2
- package/dist/runner-cli.js +3548 -1091
- package/dist/runner-cli.js.map +4 -4
- package/dist/runner-supervisor.js +218 -64
- package/dist/runner-supervisor.js.map +4 -4
- package/dist/thresholds.json +62 -0
- package/package.json +1 -1
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.1.0",
|
|
3
|
+
"comment": "ADR-003 auto-router tunables. Calibration PRs edit THIS FILE (data, not code). rungBounds = minimum difficulty for each rung (R1 is everything below R2). bands = rung range the router may use per global dispatch mode; explicit task.tier is NEVER clamped.",
|
|
4
|
+
"rungBounds": { "R2": 25, "R3": 45, "R4": 65, "R5": 80 },
|
|
5
|
+
"bands": {
|
|
6
|
+
"fast": ["R1", "R2"],
|
|
7
|
+
"standard": ["R1", "R4"],
|
|
8
|
+
"deep": ["R2", "R5"],
|
|
9
|
+
"ultra": ["R3", "R5"],
|
|
10
|
+
"ultracode": ["R4", "R5"]
|
|
11
|
+
},
|
|
12
|
+
"rungs": {
|
|
13
|
+
"R1": { "tier": "cheap", "claudeEffort": "low", "codexEffort": "low", "maxTurns": 80, "maxBudgetUsd": 1 },
|
|
14
|
+
"R2": { "tier": "cheap", "claudeEffort": "medium", "codexEffort": "medium", "maxTurns": 160, "maxBudgetUsd": 3 },
|
|
15
|
+
"R3": { "tier": "mid", "claudeEffort": "high", "codexEffort": "medium", "maxTurns": 240, "maxBudgetUsd": 10 },
|
|
16
|
+
"R4": { "tier": "best", "claudeEffort": "high", "codexEffort": "high", "maxTurns": 400, "maxBudgetUsd": 25 },
|
|
17
|
+
"R5": { "tier": "best", "claudeEffort": "xhigh", "codexEffort": "xhigh", "maxTurns": 800, "maxBudgetUsd": 50 }
|
|
18
|
+
},
|
|
19
|
+
"classBaseDifficulty": {
|
|
20
|
+
"chore": 15,
|
|
21
|
+
"docs": 20,
|
|
22
|
+
"test": 30,
|
|
23
|
+
"bugfix": 45,
|
|
24
|
+
"feature": 60,
|
|
25
|
+
"refactor": 60,
|
|
26
|
+
"research": 65,
|
|
27
|
+
"incident": 72,
|
|
28
|
+
"architecture": 80,
|
|
29
|
+
"general": 50
|
|
30
|
+
},
|
|
31
|
+
"modifiers": {
|
|
32
|
+
"evidenceRichBugfixDelta": -15,
|
|
33
|
+
"evidencePoorBugfixDelta": 20,
|
|
34
|
+
"scopeAmplifierDelta": 5,
|
|
35
|
+
"scopeAmplifierCap": 15,
|
|
36
|
+
"manyPathsDelta": 10,
|
|
37
|
+
"manyPathsThreshold": 3,
|
|
38
|
+
"veryManyPathsDelta": 15,
|
|
39
|
+
"veryManyPathsThreshold": 6,
|
|
40
|
+
"downMarkerDelta": -15,
|
|
41
|
+
"upMarkerDelta": 15,
|
|
42
|
+
"shortVaguePromptDelta": 10,
|
|
43
|
+
"shortVaguePromptMaxChars": 200,
|
|
44
|
+
"longPromptDelta": 5,
|
|
45
|
+
"longPromptMinChars": 4000,
|
|
46
|
+
"lowBudgetDelta": -10,
|
|
47
|
+
"lowBudgetMaxUsd": 2,
|
|
48
|
+
"roadmapPhaseDelta": 5,
|
|
49
|
+
"difficultyFloor": 5,
|
|
50
|
+
"difficultyCeiling": 100
|
|
51
|
+
},
|
|
52
|
+
"escapeHatch": { "minDifficulty": 65, "minCeilingRung": "R3" },
|
|
53
|
+
"operatorTierDefaultRung": { "cheap": "R2", "mid": "R3", "best": "R4" },
|
|
54
|
+
"shadowFanOut": {
|
|
55
|
+
"comment": "SHADOW-ONLY (never read by live routing). v0 fan-out gate inspired by the information-bottleneck framing of arXiv 2607.16133 — a conservative documented heuristic, NOT the paper's exact criterion. Fan-out is judged to add signal only when expected disagreement is high AND single-model confidence is low. Kept in sync with DEFAULT_SHADOW_FAN_OUT in role-cost-shadow.mjs (the in-code safe defaults when this key is absent).",
|
|
56
|
+
"minDisagreementSignal": 0.4,
|
|
57
|
+
"maxSingleModelConfidence": 0.6,
|
|
58
|
+
"minPanelSize": 2,
|
|
59
|
+
"defaultPanelSize": 3,
|
|
60
|
+
"neverFanOutClasses": ["chore", "docs"]
|
|
61
|
+
}
|
|
62
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@algosuite/vo-mcp",
|
|
3
|
-
"version": "0.2.0-beta.
|
|
3
|
+
"version": "0.2.0-beta.24",
|
|
4
4
|
"description": "AlgoHQ MCP server — open protocol surface for the HQ consensus and ratchet tool family. Stdio transport, cross-vendor MCP client compatible (Claude Code, Claude Desktop, Codex, Cursor, Continue).",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|