@heretyc/subagent-mcp 2.12.11 → 2.12.12
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/index.js +1 -1
- package/dist/routing-table.json +347 -1775
- package/dist/routing.js +3 -2
- package/package.json +1 -1
package/dist/routing.js
CHANGED
|
@@ -19,8 +19,9 @@ export const LAUNCH_EFFORTS = ["medium", "high", "xhigh", "max", "ultracode"];
|
|
|
19
19
|
export const HAIKU_EFFORT = "none";
|
|
20
20
|
/**
|
|
21
21
|
* FULL table model id -> SHORT launch id. Only launchable models appear here.
|
|
22
|
-
*
|
|
23
|
-
*
|
|
22
|
+
* The shipped routing table is expected to contain only these launchable ids.
|
|
23
|
+
* The undefined-map skip in buildCandidates remains a safety net for stale or
|
|
24
|
+
* hand-authored tables, never a primary filtering mechanism.
|
|
24
25
|
* For models with aliases (e.g., opus and opus-4-8 both refer to claude-opus-4-8),
|
|
25
26
|
* map to a Set of valid short ids to check membership during filtering.
|
|
26
27
|
*/
|
package/package.json
CHANGED