@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 CHANGED
@@ -273,7 +273,7 @@ declare const HOUSE_AGENT_SUBTITLE = "Included \u2014 no setup";
273
273
  * endpoints and the mobile/web surfaces speak. The internal `AgentId`
274
274
  * (`'claude' | 'codex' | …`) is what the runtimes / provisioning key on.
275
275
  */
276
- type LinkedAgentId = 'claude_code' | 'codex' | 'cursor' | 'aider' | 'coderabbit' | 'gemini' | 'kimi' | 'omniroute' | 'opencode' | typeof HOUSE_AGENT_ID;
276
+ type LinkedAgentId = 'claude_code' | 'codex' | 'cursor' | 'aider' | 'coderabbit' | 'gemini' | 'kimi' | 'openrouter' | 'opencode' | typeof HOUSE_AGENT_ID;
277
277
  declare const LINKED_AGENT_IDS: readonly LinkedAgentId[];
278
278
  declare function isLinkedAgentId(value: string): value is LinkedAgentId;
279
279
  /**
@@ -556,7 +556,7 @@ interface IntegrationBranding {
556
556
  logoSvg: string;
557
557
  }
558
558
  declare const INTEGRATION_BRANDING: Record<string, IntegrationBranding>;
559
- declare const UPCOMING_INTEGRATION_IDS: readonly ["gmail", "clickup", "figma", "trello", "vercel", "supabase", "asana", "postman", "n8n", "stripe", "mixpanel", "pendo", "pagerduty", "amplitude"];
559
+ declare const UPCOMING_INTEGRATION_IDS: readonly ["gmail", "clickup", "figma", "trello", "supabase", "asana", "postman", "n8n", "stripe", "mixpanel", "pendo", "pagerduty", "amplitude"];
560
560
  declare function getIntegrationBranding(id: string): IntegrationBranding | null;
561
561
 
562
562
  /**
package/dist/index.d.ts CHANGED
@@ -273,7 +273,7 @@ declare const HOUSE_AGENT_SUBTITLE = "Included \u2014 no setup";
273
273
  * endpoints and the mobile/web surfaces speak. The internal `AgentId`
274
274
  * (`'claude' | 'codex' | …`) is what the runtimes / provisioning key on.
275
275
  */
276
- type LinkedAgentId = 'claude_code' | 'codex' | 'cursor' | 'aider' | 'coderabbit' | 'gemini' | 'kimi' | 'omniroute' | 'opencode' | typeof HOUSE_AGENT_ID;
276
+ type LinkedAgentId = 'claude_code' | 'codex' | 'cursor' | 'aider' | 'coderabbit' | 'gemini' | 'kimi' | 'openrouter' | 'opencode' | typeof HOUSE_AGENT_ID;
277
277
  declare const LINKED_AGENT_IDS: readonly LinkedAgentId[];
278
278
  declare function isLinkedAgentId(value: string): value is LinkedAgentId;
279
279
  /**
@@ -556,7 +556,7 @@ interface IntegrationBranding {
556
556
  logoSvg: string;
557
557
  }
558
558
  declare const INTEGRATION_BRANDING: Record<string, IntegrationBranding>;
559
- declare const UPCOMING_INTEGRATION_IDS: readonly ["gmail", "clickup", "figma", "trello", "vercel", "supabase", "asana", "postman", "n8n", "stripe", "mixpanel", "pendo", "pagerduty", "amplitude"];
559
+ declare const UPCOMING_INTEGRATION_IDS: readonly ["gmail", "clickup", "figma", "trello", "supabase", "asana", "postman", "n8n", "stripe", "mixpanel", "pendo", "pagerduty", "amplitude"];
560
560
  declare function getIntegrationBranding(id: string): IntegrationBranding | null;
561
561
 
562
562
  /**
package/dist/index.js CHANGED
@@ -475,7 +475,7 @@ var LINKED_AGENT_IDS = [
475
475
  "coderabbit",
476
476
  "gemini",
477
477
  "kimi",
478
- "omniroute",
478
+ "openrouter",
479
479
  "opencode",
480
480
  HOUSE_AGENT_ID
481
481
  ];
@@ -498,11 +498,14 @@ var PUBLIC_TO_INTERNAL = {
498
498
  // opencode is a real, distinct agent (its own binary + ACP server) — it does
499
499
  // NOT map onto another runtime. Public id === internal id.
500
500
  opencode: "opencode",
501
- // OmniRoute runs Claude Code under the hood, pointed at the user's OmniRoute
502
- // gateway (their vaulted base URL + token) instead of the house MiniMax
503
- // proxy. Same internal runtime as the house agent `claude` differing only
504
- // in WHERE Anthropic env is pointed (a buildOmniRouteBootstrap variant).
505
- omniroute: "claude",
501
+ // OpenRouter runs Claude Code under the hood, pointed at OpenRouter's hosted
502
+ // "Anthropic Skin" (https://openrouter.ai/api native Anthropic Messages
503
+ // protocol) with the user's vaulted `sk-or-…` key as ANTHROPIC_AUTH_TOKEN,
504
+ // instead of the house MiniMax proxy. Same internal runtime as the house
505
+ // agent — `claude` — differing only in WHERE the Anthropic env is pointed (a
506
+ // buildOpenRouterBootstrap variant). The endpoint is FIXED (hosted), so there
507
+ // is no per-user base URL — just the key.
508
+ openrouter: "claude",
506
509
  // The house agent runs Claude Code under the hood (pointed at the
507
510
  // MiniMax proxy). Its internal runtime is therefore `claude`.
508
511
  [HOUSE_AGENT_ID]: "claude"
@@ -1203,8 +1206,9 @@ var INTEGRATION_REGISTRY = {
1203
1206
  // vercel.com/.well-known/oauth-authorization-server): authorize
1204
1207
  // https://vercel.com/oauth/authorize, token
1205
1208
  // https://vercel.com/api/login/oauth/token, PKCE S256, token-endpoint auth
1206
- // 'none' (public). enabled:false until Step-8 live-verify of the Bearer.
1207
- enabled: false,
1209
+ // 'none' (public). LIVE the headless Bearer against mcp.vercel.com was
1210
+ // verified (2026-07-27).
1211
+ enabled: true,
1208
1212
  auth: {
1209
1213
  kind: "oauth_redirect",
1210
1214
  scopes: ["openid", "offline_access"]
@@ -1512,7 +1516,6 @@ var UPCOMING_INTEGRATION_IDS = [
1512
1516
  "clickup",
1513
1517
  "figma",
1514
1518
  "trello",
1515
- "vercel",
1516
1519
  "supabase",
1517
1520
  "asana",
1518
1521
  "postman",