@codeam/shared 2.61.47 → 2.61.48
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.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -377,6 +377,7 @@ var LINKED_AGENT_IDS = [
|
|
|
377
377
|
"coderabbit",
|
|
378
378
|
"gemini",
|
|
379
379
|
"kimi",
|
|
380
|
+
"omniroute",
|
|
380
381
|
HOUSE_AGENT_ID
|
|
381
382
|
];
|
|
382
383
|
function isLinkedAgentId(value) {
|
|
@@ -395,6 +396,11 @@ var PUBLIC_TO_INTERNAL = {
|
|
|
395
396
|
coderabbit: "coderabbit",
|
|
396
397
|
gemini: "gemini",
|
|
397
398
|
kimi: "kimi",
|
|
399
|
+
// OmniRoute runs Claude Code under the hood, pointed at the user's OmniRoute
|
|
400
|
+
// gateway (their vaulted base URL + token) instead of the house MiniMax
|
|
401
|
+
// proxy. Same internal runtime as the house agent — `claude` — differing only
|
|
402
|
+
// in WHERE Anthropic env is pointed (a buildOmniRouteBootstrap variant).
|
|
403
|
+
omniroute: "claude",
|
|
398
404
|
// The house agent runs Claude Code under the hood (pointed at the
|
|
399
405
|
// MiniMax proxy). Its internal runtime is therefore `claude`.
|
|
400
406
|
[HOUSE_AGENT_ID]: "claude"
|