@codeam/shared 2.61.52 → 2.61.56
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +12 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -393,7 +393,7 @@ var LINKED_AGENT_IDS = [
|
|
|
393
393
|
"coderabbit",
|
|
394
394
|
"gemini",
|
|
395
395
|
"kimi",
|
|
396
|
-
"
|
|
396
|
+
"openrouter",
|
|
397
397
|
"opencode",
|
|
398
398
|
HOUSE_AGENT_ID
|
|
399
399
|
];
|
|
@@ -416,11 +416,14 @@ var PUBLIC_TO_INTERNAL = {
|
|
|
416
416
|
// opencode is a real, distinct agent (its own binary + ACP server) — it does
|
|
417
417
|
// NOT map onto another runtime. Public id === internal id.
|
|
418
418
|
opencode: "opencode",
|
|
419
|
-
//
|
|
420
|
-
//
|
|
421
|
-
//
|
|
422
|
-
//
|
|
423
|
-
|
|
419
|
+
// OpenRouter runs Claude Code under the hood, pointed at OpenRouter's hosted
|
|
420
|
+
// "Anthropic Skin" (https://openrouter.ai/api — native Anthropic Messages
|
|
421
|
+
// protocol) with the user's vaulted `sk-or-…` key as ANTHROPIC_AUTH_TOKEN,
|
|
422
|
+
// instead of the house MiniMax proxy. Same internal runtime as the house
|
|
423
|
+
// agent — `claude` — differing only in WHERE the Anthropic env is pointed (a
|
|
424
|
+
// buildOpenRouterBootstrap variant). The endpoint is FIXED (hosted), so there
|
|
425
|
+
// is no per-user base URL — just the key.
|
|
426
|
+
openrouter: "claude",
|
|
424
427
|
// The house agent runs Claude Code under the hood (pointed at the
|
|
425
428
|
// MiniMax proxy). Its internal runtime is therefore `claude`.
|
|
426
429
|
[HOUSE_AGENT_ID]: "claude"
|
|
@@ -1121,8 +1124,9 @@ var INTEGRATION_REGISTRY = {
|
|
|
1121
1124
|
// vercel.com/.well-known/oauth-authorization-server): authorize
|
|
1122
1125
|
// https://vercel.com/oauth/authorize, token
|
|
1123
1126
|
// https://vercel.com/api/login/oauth/token, PKCE S256, token-endpoint auth
|
|
1124
|
-
// 'none' (public).
|
|
1125
|
-
|
|
1127
|
+
// 'none' (public). LIVE — the headless Bearer against mcp.vercel.com was
|
|
1128
|
+
// verified (2026-07-27).
|
|
1129
|
+
enabled: true,
|
|
1126
1130
|
auth: {
|
|
1127
1131
|
kind: "oauth_redirect",
|
|
1128
1132
|
scopes: ["openid", "offline_access"]
|
|
@@ -1430,7 +1434,6 @@ var UPCOMING_INTEGRATION_IDS = [
|
|
|
1430
1434
|
"clickup",
|
|
1431
1435
|
"figma",
|
|
1432
1436
|
"trello",
|
|
1433
|
-
"vercel",
|
|
1434
1437
|
"supabase",
|
|
1435
1438
|
"asana",
|
|
1436
1439
|
"postman",
|