@lobu/gateway 3.0.5 → 3.0.6

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.
Files changed (175) hide show
  1. package/package.json +2 -2
  2. package/src/__tests__/agent-config-routes.test.ts +254 -0
  3. package/src/__tests__/agent-history-routes.test.ts +72 -0
  4. package/src/__tests__/agent-routes.test.ts +68 -0
  5. package/src/__tests__/agent-schedules-routes.test.ts +59 -0
  6. package/src/__tests__/agent-settings-store.test.ts +323 -0
  7. package/src/__tests__/chat-instance-manager-slack.test.ts +204 -0
  8. package/src/__tests__/chat-response-bridge.test.ts +131 -0
  9. package/src/__tests__/config-memory-plugins.test.ts +92 -0
  10. package/src/__tests__/config-request-store.test.ts +127 -0
  11. package/src/__tests__/connection-routes.test.ts +144 -0
  12. package/src/__tests__/core-services-store-selection.test.ts +92 -0
  13. package/src/__tests__/docker-deployment.test.ts +1211 -0
  14. package/src/__tests__/embedded-deployment.test.ts +342 -0
  15. package/src/__tests__/grant-store.test.ts +148 -0
  16. package/src/__tests__/http-proxy.test.ts +281 -0
  17. package/src/__tests__/instruction-service.test.ts +37 -0
  18. package/src/__tests__/link-buttons.test.ts +112 -0
  19. package/src/__tests__/lobu.test.ts +32 -0
  20. package/src/__tests__/mcp-config-service.test.ts +347 -0
  21. package/src/__tests__/mcp-proxy.test.ts +696 -0
  22. package/src/__tests__/message-handler-bridge.test.ts +17 -0
  23. package/src/__tests__/model-selection.test.ts +172 -0
  24. package/src/__tests__/oauth-templates.test.ts +39 -0
  25. package/src/__tests__/platform-adapter-slack-send.test.ts +114 -0
  26. package/src/__tests__/platform-helpers-model-resolution.test.ts +253 -0
  27. package/src/__tests__/provider-inheritance.test.ts +212 -0
  28. package/src/__tests__/routes/cli-auth.test.ts +337 -0
  29. package/src/__tests__/routes/interactions.test.ts +121 -0
  30. package/src/__tests__/secret-proxy.test.ts +85 -0
  31. package/src/__tests__/session-manager.test.ts +572 -0
  32. package/src/__tests__/setup.ts +133 -0
  33. package/src/__tests__/skill-and-mcp-registry.test.ts +203 -0
  34. package/src/__tests__/slack-routes.test.ts +161 -0
  35. package/src/__tests__/system-config-resolver.test.ts +75 -0
  36. package/src/__tests__/system-message-limiter.test.ts +89 -0
  37. package/src/__tests__/system-skills-service.test.ts +362 -0
  38. package/src/__tests__/transcription-service.test.ts +222 -0
  39. package/src/__tests__/utils/rate-limiter.test.ts +102 -0
  40. package/src/__tests__/worker-connection-manager.test.ts +497 -0
  41. package/src/__tests__/worker-job-router.test.ts +722 -0
  42. package/src/api/index.ts +1 -0
  43. package/src/api/platform.ts +292 -0
  44. package/src/api/response-renderer.ts +157 -0
  45. package/src/auth/agent-metadata-store.ts +168 -0
  46. package/src/auth/api-auth-middleware.ts +69 -0
  47. package/src/auth/api-key-provider-module.ts +213 -0
  48. package/src/auth/base-provider-module.ts +201 -0
  49. package/src/auth/chatgpt/chatgpt-oauth-module.ts +185 -0
  50. package/src/auth/chatgpt/device-code-client.ts +218 -0
  51. package/src/auth/chatgpt/index.ts +1 -0
  52. package/src/auth/claude/oauth-module.ts +280 -0
  53. package/src/auth/cli/token-service.ts +249 -0
  54. package/src/auth/external/client.ts +560 -0
  55. package/src/auth/external/device-code-client.ts +225 -0
  56. package/src/auth/mcp/config-service.ts +392 -0
  57. package/src/auth/mcp/proxy.ts +1088 -0
  58. package/src/auth/mcp/string-substitution.ts +17 -0
  59. package/src/auth/mcp/tool-cache.ts +90 -0
  60. package/src/auth/oauth/base-client.ts +267 -0
  61. package/src/auth/oauth/client.ts +153 -0
  62. package/src/auth/oauth/credentials.ts +7 -0
  63. package/src/auth/oauth/providers.ts +69 -0
  64. package/src/auth/oauth/state-store.ts +150 -0
  65. package/src/auth/oauth-templates.ts +179 -0
  66. package/src/auth/provider-catalog.ts +220 -0
  67. package/src/auth/provider-model-options.ts +41 -0
  68. package/src/auth/settings/agent-settings-store.ts +565 -0
  69. package/src/auth/settings/auth-profiles-manager.ts +216 -0
  70. package/src/auth/settings/index.ts +12 -0
  71. package/src/auth/settings/model-preference-store.ts +52 -0
  72. package/src/auth/settings/model-selection.ts +135 -0
  73. package/src/auth/settings/resolved-settings-view.ts +298 -0
  74. package/src/auth/settings/template-utils.ts +44 -0
  75. package/src/auth/settings/token-service.ts +88 -0
  76. package/src/auth/system-env-store.ts +98 -0
  77. package/src/auth/user-agents-store.ts +68 -0
  78. package/src/channels/binding-service.ts +214 -0
  79. package/src/channels/index.ts +4 -0
  80. package/src/cli/gateway.ts +1304 -0
  81. package/src/cli/index.ts +74 -0
  82. package/src/commands/built-in-commands.ts +80 -0
  83. package/src/commands/command-dispatcher.ts +94 -0
  84. package/src/commands/command-reply-adapters.ts +27 -0
  85. package/src/config/file-loader.ts +618 -0
  86. package/src/config/index.ts +588 -0
  87. package/src/config/network-allowlist.ts +71 -0
  88. package/src/connections/chat-instance-manager.ts +1284 -0
  89. package/src/connections/chat-response-bridge.ts +618 -0
  90. package/src/connections/index.ts +7 -0
  91. package/src/connections/interaction-bridge.ts +831 -0
  92. package/src/connections/message-handler-bridge.ts +415 -0
  93. package/src/connections/platform-auth-methods.ts +15 -0
  94. package/src/connections/types.ts +84 -0
  95. package/src/gateway/connection-manager.ts +291 -0
  96. package/src/gateway/index.ts +700 -0
  97. package/src/gateway/job-router.ts +201 -0
  98. package/src/gateway-main.ts +200 -0
  99. package/src/index.ts +41 -0
  100. package/src/infrastructure/queue/index.ts +12 -0
  101. package/src/infrastructure/queue/queue-producer.ts +148 -0
  102. package/src/infrastructure/queue/redis-queue.ts +361 -0
  103. package/src/infrastructure/queue/types.ts +133 -0
  104. package/src/infrastructure/redis/system-message-limiter.ts +94 -0
  105. package/src/interactions/config-request-store.ts +198 -0
  106. package/src/interactions.ts +363 -0
  107. package/src/lobu.ts +311 -0
  108. package/src/metrics/prometheus.ts +159 -0
  109. package/src/modules/module-system.ts +179 -0
  110. package/src/orchestration/base-deployment-manager.ts +900 -0
  111. package/src/orchestration/deployment-utils.ts +98 -0
  112. package/src/orchestration/impl/docker-deployment.ts +620 -0
  113. package/src/orchestration/impl/embedded-deployment.ts +268 -0
  114. package/src/orchestration/impl/index.ts +8 -0
  115. package/src/orchestration/impl/k8s/deployment.ts +1061 -0
  116. package/src/orchestration/impl/k8s/helpers.ts +610 -0
  117. package/src/orchestration/impl/k8s/index.ts +1 -0
  118. package/src/orchestration/index.ts +333 -0
  119. package/src/orchestration/message-consumer.ts +584 -0
  120. package/src/orchestration/scheduled-wakeup.ts +704 -0
  121. package/src/permissions/approval-policy.ts +36 -0
  122. package/src/permissions/grant-store.ts +219 -0
  123. package/src/platform/file-handler.ts +66 -0
  124. package/src/platform/link-buttons.ts +57 -0
  125. package/src/platform/renderer-utils.ts +44 -0
  126. package/src/platform/response-renderer.ts +84 -0
  127. package/src/platform/unified-thread-consumer.ts +187 -0
  128. package/src/platform.ts +318 -0
  129. package/src/proxy/http-proxy.ts +752 -0
  130. package/src/proxy/proxy-manager.ts +81 -0
  131. package/src/proxy/secret-proxy.ts +402 -0
  132. package/src/proxy/token-refresh-job.ts +143 -0
  133. package/src/routes/internal/audio.ts +141 -0
  134. package/src/routes/internal/device-auth.ts +566 -0
  135. package/src/routes/internal/files.ts +226 -0
  136. package/src/routes/internal/history.ts +69 -0
  137. package/src/routes/internal/images.ts +127 -0
  138. package/src/routes/internal/interactions.ts +84 -0
  139. package/src/routes/internal/middleware.ts +23 -0
  140. package/src/routes/internal/schedule.ts +226 -0
  141. package/src/routes/internal/types.ts +22 -0
  142. package/src/routes/openapi-auto.ts +239 -0
  143. package/src/routes/public/agent-access.ts +23 -0
  144. package/src/routes/public/agent-config.ts +675 -0
  145. package/src/routes/public/agent-history.ts +422 -0
  146. package/src/routes/public/agent-schedules.ts +296 -0
  147. package/src/routes/public/agent.ts +1086 -0
  148. package/src/routes/public/agents.ts +373 -0
  149. package/src/routes/public/channels.ts +191 -0
  150. package/src/routes/public/cli-auth.ts +883 -0
  151. package/src/routes/public/connections.ts +574 -0
  152. package/src/routes/public/landing.ts +16 -0
  153. package/src/routes/public/oauth.ts +147 -0
  154. package/src/routes/public/settings-auth.ts +104 -0
  155. package/src/routes/public/slack.ts +173 -0
  156. package/src/routes/shared/agent-ownership.ts +101 -0
  157. package/src/routes/shared/token-verifier.ts +34 -0
  158. package/src/services/core-services.ts +1053 -0
  159. package/src/services/image-generation-service.ts +257 -0
  160. package/src/services/instruction-service.ts +318 -0
  161. package/src/services/mcp-registry.ts +94 -0
  162. package/src/services/platform-helpers.ts +287 -0
  163. package/src/services/session-manager.ts +262 -0
  164. package/src/services/settings-resolver.ts +74 -0
  165. package/src/services/system-config-resolver.ts +90 -0
  166. package/src/services/system-skills-service.ts +229 -0
  167. package/src/services/transcription-service.ts +684 -0
  168. package/src/session.ts +110 -0
  169. package/src/spaces/index.ts +1 -0
  170. package/src/spaces/space-resolver.ts +17 -0
  171. package/src/stores/in-memory-agent-store.ts +403 -0
  172. package/src/stores/redis-agent-store.ts +279 -0
  173. package/src/utils/public-url.ts +44 -0
  174. package/src/utils/rate-limiter.ts +94 -0
  175. package/tsconfig.json +33 -0
@@ -0,0 +1,218 @@
1
+ import { createLogger } from "@lobu/core";
2
+
3
+ const logger = createLogger("chatgpt-device-code");
4
+
5
+ const CLIENT_ID = "app_EMoamEEZ73f0CkXaXp7hrann";
6
+ const DEVICE_CODE_URL =
7
+ "https://auth.openai.com/api/accounts/deviceauth/usercode";
8
+ const DEVICE_TOKEN_URL =
9
+ "https://auth.openai.com/api/accounts/deviceauth/token";
10
+ const TOKEN_EXCHANGE_URL = "https://auth.openai.com/oauth/token";
11
+ const DEVICE_REDIRECT_URI = "https://auth.openai.com/deviceauth/callback";
12
+ const OAUTH_SCOPE =
13
+ process.env.OPENAI_OAUTH_SCOPE ||
14
+ [
15
+ "openid",
16
+ "profile",
17
+ "email",
18
+ "offline_access",
19
+ "api.model.read",
20
+ "api.model.request",
21
+ "api.model.image.request",
22
+ "api.model.audio.request",
23
+ ].join(" ");
24
+ const JWT_CLAIM_PATH = "https://api.openai.com/auth";
25
+ const DEVICE_HEADERS = {
26
+ "Content-Type": "application/json",
27
+ "User-Agent": "reqwest/0.12.24",
28
+ };
29
+ const TOKEN_HEADERS = {
30
+ "Content-Type": "application/x-www-form-urlencoded",
31
+ "User-Agent": "reqwest/0.12.24",
32
+ };
33
+
34
+ export interface DeviceCodeResponse {
35
+ userCode: string;
36
+ deviceAuthId: string;
37
+ interval: number;
38
+ }
39
+
40
+ export interface DeviceTokenResult {
41
+ accessToken: string;
42
+ refreshToken: string;
43
+ expiresIn: number;
44
+ accountId?: string;
45
+ }
46
+
47
+ /**
48
+ * Client for OpenAI device code authentication flow.
49
+ * Based on sub-bridge's device code implementation.
50
+ */
51
+ export class ChatGPTDeviceCodeClient {
52
+ /**
53
+ * Request a device code from OpenAI.
54
+ * Returns user_code for display and device_auth_id for polling.
55
+ */
56
+ async requestDeviceCode(): Promise<DeviceCodeResponse> {
57
+ const response = await fetch(DEVICE_CODE_URL, {
58
+ method: "POST",
59
+ headers: DEVICE_HEADERS,
60
+ body: JSON.stringify({
61
+ client_id: CLIENT_ID,
62
+ scope: OAUTH_SCOPE,
63
+ }),
64
+ });
65
+
66
+ if (!response.ok) {
67
+ const text = await response.text().catch(() => "");
68
+ logger.error("Device code request failed", {
69
+ status: response.status,
70
+ body: text,
71
+ });
72
+ throw new Error(`Device code request failed: ${response.status}`);
73
+ }
74
+
75
+ const data = (await response.json()) as {
76
+ device_auth_id: string;
77
+ user_code: string;
78
+ interval?: number;
79
+ };
80
+
81
+ return {
82
+ userCode: data.user_code,
83
+ deviceAuthId: data.device_auth_id,
84
+ interval: typeof data.interval === "number" ? data.interval : 5,
85
+ };
86
+ }
87
+
88
+ /**
89
+ * Poll for token after user has authorized the device code.
90
+ * Returns null if still pending, throws on permanent failure.
91
+ */
92
+ async pollForToken(
93
+ deviceAuthId: string,
94
+ userCode: string
95
+ ): Promise<DeviceTokenResult | null> {
96
+ const response = await fetch(DEVICE_TOKEN_URL, {
97
+ method: "POST",
98
+ headers: DEVICE_HEADERS,
99
+ body: JSON.stringify({
100
+ device_auth_id: deviceAuthId,
101
+ user_code: userCode,
102
+ }),
103
+ });
104
+
105
+ // 403/404/429 = user hasn't authorized yet
106
+ if (
107
+ response.status === 403 ||
108
+ response.status === 404 ||
109
+ response.status === 429
110
+ ) {
111
+ return null;
112
+ }
113
+
114
+ if (!response.ok) {
115
+ const text = await response.text().catch(() => "");
116
+ logger.error("Device token poll failed", {
117
+ status: response.status,
118
+ body: text,
119
+ });
120
+ throw new Error(`Device token poll failed: ${response.status}`);
121
+ }
122
+
123
+ const data = (await response.json()) as {
124
+ authorization_code?: string;
125
+ code_verifier?: string;
126
+ };
127
+
128
+ if (!data.authorization_code || !data.code_verifier) {
129
+ logger.warn("Poll response missing authorization fields, still pending");
130
+ return null;
131
+ }
132
+
133
+ // Exchange authorization code for access token
134
+ return this.exchangeCode(data.authorization_code, data.code_verifier);
135
+ }
136
+
137
+ /**
138
+ * Exchange authorization code for access/refresh tokens.
139
+ */
140
+ private async exchangeCode(
141
+ authorizationCode: string,
142
+ codeVerifier: string
143
+ ): Promise<DeviceTokenResult> {
144
+ const response = await fetch(TOKEN_EXCHANGE_URL, {
145
+ method: "POST",
146
+ headers: TOKEN_HEADERS,
147
+ body: new URLSearchParams({
148
+ grant_type: "authorization_code",
149
+ client_id: CLIENT_ID,
150
+ code: authorizationCode,
151
+ code_verifier: codeVerifier,
152
+ redirect_uri: DEVICE_REDIRECT_URI,
153
+ scope: OAUTH_SCOPE,
154
+ }).toString(),
155
+ });
156
+
157
+ if (!response.ok) {
158
+ const text = await response.text().catch(() => "");
159
+ logger.error("Token exchange failed", {
160
+ status: response.status,
161
+ body: text,
162
+ });
163
+ throw new Error(`Token exchange failed: ${response.status}`);
164
+ }
165
+
166
+ const data = (await response.json()) as {
167
+ access_token: string;
168
+ refresh_token: string;
169
+ expires_in: number;
170
+ id_token?: string;
171
+ };
172
+
173
+ if (!data.access_token || !data.refresh_token) {
174
+ throw new Error("Token response missing required fields");
175
+ }
176
+
177
+ const accountId = this.extractAccountId(data.access_token);
178
+
179
+ return {
180
+ accessToken: data.access_token,
181
+ refreshToken: data.refresh_token,
182
+ expiresIn: data.expires_in,
183
+ accountId,
184
+ };
185
+ }
186
+
187
+ /**
188
+ * Extract account ID from JWT access token (informational only).
189
+ * Decodes the JWT payload without signature verification because the token
190
+ * was obtained directly from OpenAI's token endpoint over HTTPS.
191
+ * The extracted accountId is used only for logging/display, not for
192
+ * authorization decisions.
193
+ */
194
+ extractAccountId(accessToken: string): string | undefined {
195
+ try {
196
+ const parts = accessToken.split(".");
197
+ if (parts.length < 2) return undefined;
198
+
199
+ const payload = JSON.parse(
200
+ Buffer.from(parts[1]!, "base64url").toString("utf-8")
201
+ );
202
+
203
+ // OpenAI stores account info under the JWT_CLAIM_PATH
204
+ const authClaim = payload[JWT_CLAIM_PATH];
205
+ if (authClaim?.organization_id) {
206
+ return authClaim.organization_id;
207
+ }
208
+ if (authClaim?.chatgpt_account_id) {
209
+ return authClaim.chatgpt_account_id;
210
+ }
211
+
212
+ return undefined;
213
+ } catch (error) {
214
+ logger.warn("Failed to extract account ID from JWT", { error });
215
+ return undefined;
216
+ }
217
+ }
218
+ }
@@ -0,0 +1 @@
1
+ export { ChatGPTOAuthModule } from "./chatgpt-oauth-module";
@@ -0,0 +1,280 @@
1
+ import { createLogger } from "@lobu/core";
2
+ import type { ModelOption } from "../../modules/module-system";
3
+ import { BaseProviderModule } from "../base-provider-module";
4
+ import { resolveEnv } from "../mcp/string-substitution";
5
+ import type { OAuthCredentials } from "../oauth/credentials";
6
+ import {
7
+ type AuthProfilesManager,
8
+ createAuthProfileLabel,
9
+ } from "../settings/auth-profiles-manager";
10
+ import type { ModelPreferenceStore } from "../settings/model-preference-store";
11
+
12
+ const logger = createLogger("claude-oauth-module");
13
+
14
+ /**
15
+ * Claude OAuth Module - Handles credential injection and model preferences for Claude.
16
+ * OAuth login/logout is handled by the generic settings web page routes.
17
+ */
18
+ export class ClaudeOAuthModule extends BaseProviderModule {
19
+ private modelPreferenceStore: ModelPreferenceStore;
20
+
21
+ constructor(
22
+ authProfilesManager: AuthProfilesManager,
23
+ modelPreferenceStore: ModelPreferenceStore
24
+ ) {
25
+ super(
26
+ {
27
+ providerId: "claude",
28
+ providerDisplayName: "Claude",
29
+ providerIconUrl:
30
+ "https://www.google.com/s2/favicons?domain=anthropic.com&sz=128",
31
+ credentialEnvVarName: "CLAUDE_CODE_OAUTH_TOKEN",
32
+ secretEnvVarNames: [
33
+ "ANTHROPIC_API_KEY",
34
+ "ANTHROPIC_AUTH_TOKEN",
35
+ "CLAUDE_CODE_OAUTH_TOKEN",
36
+ ],
37
+ slug: "anthropic",
38
+ upstreamBaseUrl: "https://api.anthropic.com",
39
+ baseUrlEnvVarName: "ANTHROPIC_BASE_URL",
40
+ authType: "oauth",
41
+ supportedAuthTypes: ["oauth", "api-key"],
42
+ apiKeyInstructions:
43
+ 'Enter your <a href="https://console.anthropic.com/settings/keys" target="_blank" class="text-blue-600 underline">Anthropic API key</a>:',
44
+ apiKeyPlaceholder: "sk-ant-...",
45
+ catalogDescription: "Anthropic's Claude AI with OAuth authentication",
46
+ },
47
+ authProfilesManager
48
+ );
49
+ // Preserve existing module name
50
+ this.name = "claude-oauth";
51
+ this.modelPreferenceStore = modelPreferenceStore;
52
+ }
53
+
54
+ // ---- Overrides for multi-env-var logic ----
55
+
56
+ override hasSystemKey(): boolean {
57
+ return !!(
58
+ resolveEnv("ANTHROPIC_AUTH_TOKEN") ||
59
+ resolveEnv("CLAUDE_CODE_OAUTH_TOKEN")
60
+ );
61
+ }
62
+
63
+ override injectSystemKeyFallback(
64
+ envVars: Record<string, string>
65
+ ): Record<string, string> {
66
+ if (!envVars.ANTHROPIC_API_KEY && !envVars.CLAUDE_CODE_OAUTH_TOKEN) {
67
+ // Prefer ANTHROPIC_AUTH_TOKEN (explicit user config in .env) over
68
+ // ANTHROPIC_API_KEY (which may be injected by Claude Code's shell env).
69
+ const systemApiKey =
70
+ resolveEnv("ANTHROPIC_AUTH_TOKEN") || resolveEnv("ANTHROPIC_API_KEY");
71
+ const systemOAuthToken = resolveEnv("CLAUDE_CODE_OAUTH_TOKEN");
72
+
73
+ if (systemApiKey) {
74
+ envVars.ANTHROPIC_API_KEY = systemApiKey;
75
+ } else if (systemOAuthToken) {
76
+ envVars.CLAUDE_CODE_OAUTH_TOKEN = systemOAuthToken;
77
+ }
78
+ }
79
+ return envVars;
80
+ }
81
+
82
+ override async buildEnvVars(
83
+ agentId: string,
84
+ envVars: Record<string, string>
85
+ ): Promise<Record<string, string>> {
86
+ const profile = await this.authProfilesManager.getBestProfile(
87
+ agentId,
88
+ this.providerId
89
+ );
90
+
91
+ if (profile?.credential) {
92
+ logger.info(`Injecting ${profile.authType} profile for space ${agentId}`);
93
+ if (profile.authType === "oauth") {
94
+ envVars.CLAUDE_CODE_OAUTH_TOKEN = profile.credential;
95
+ } else {
96
+ envVars.ANTHROPIC_API_KEY = profile.credential;
97
+ }
98
+ }
99
+
100
+ // AGENT_DEFAULT_MODEL is now delivered dynamically via session context.
101
+ // No longer baked into static container env vars.
102
+
103
+ return envVars;
104
+ }
105
+
106
+ getCliBackendConfig() {
107
+ return {
108
+ name: "claude-code",
109
+ command: "npx",
110
+ args: ["-y", "acpx@latest", "claude", "--print"],
111
+ modelArg: "--model",
112
+ sessionArg: "--session",
113
+ };
114
+ }
115
+
116
+ async getModelOptions(
117
+ agentId: string,
118
+ userId: string
119
+ ): Promise<ModelOption[]> {
120
+ const availableModels = await this.fetchClaudeModels(agentId);
121
+ if (availableModels.length === 0) return [];
122
+
123
+ const preferredModel =
124
+ await this.modelPreferenceStore.getModelPreference(userId);
125
+ logger.debug("Building Claude model options", {
126
+ agentId,
127
+ userId,
128
+ preferredModel,
129
+ });
130
+ const defaultModel =
131
+ preferredModel ||
132
+ process.env.AGENT_DEFAULT_MODEL ||
133
+ "claude-sonnet-4-20250514";
134
+ const options: ModelOption[] = [];
135
+ const seen = new Set<string>();
136
+
137
+ const addOption = (value: string, label: string) => {
138
+ if (seen.has(value)) return;
139
+ seen.add(value);
140
+ options.push({ value, label });
141
+ };
142
+
143
+ const defaultEntry = availableModels.find((m) => m.id === defaultModel);
144
+ if (defaultEntry) {
145
+ addOption(defaultModel, defaultEntry.display_name || defaultModel);
146
+ }
147
+
148
+ for (const model of availableModels) {
149
+ addOption(model.id, model.display_name || model.id);
150
+ }
151
+
152
+ return options;
153
+ }
154
+
155
+ async setCredentials(agentId: string, credentials: unknown): Promise<void> {
156
+ await this.saveOAuthCredentials(agentId, credentials as OAuthCredentials);
157
+ }
158
+
159
+ async deleteCredentials(agentId: string): Promise<void> {
160
+ await this.authProfilesManager.deleteProviderProfiles(
161
+ agentId,
162
+ this.providerId
163
+ );
164
+ }
165
+
166
+ private async saveOAuthCredentials(
167
+ agentId: string,
168
+ credentials: OAuthCredentials
169
+ ): Promise<void> {
170
+ await this.authProfilesManager.upsertProfile({
171
+ agentId,
172
+ provider: this.providerId,
173
+ credential: credentials.accessToken,
174
+ authType: "oauth",
175
+ label: createAuthProfileLabel(
176
+ this.providerDisplayName,
177
+ credentials.accessToken
178
+ ),
179
+ metadata: {
180
+ refreshToken: credentials.refreshToken,
181
+ expiresAt: credentials.expiresAt,
182
+ },
183
+ makePrimary: true,
184
+ });
185
+ }
186
+
187
+ private static readonly FALLBACK_MODELS: Array<{
188
+ id: string;
189
+ display_name: string;
190
+ type: string;
191
+ }> = [
192
+ {
193
+ id: "claude-sonnet-4-20250514",
194
+ display_name: "Claude Sonnet 4",
195
+ type: "model",
196
+ },
197
+ {
198
+ id: "claude-opus-4-20250514",
199
+ display_name: "Claude Opus 4",
200
+ type: "model",
201
+ },
202
+ {
203
+ id: "claude-haiku-3-5-20241022",
204
+ display_name: "Claude Haiku 3.5",
205
+ type: "model",
206
+ },
207
+ ];
208
+
209
+ private async fetchClaudeModels(
210
+ agentId: string
211
+ ): Promise<Array<{ id: string; display_name: string; type: string }>> {
212
+ const profile = await this.authProfilesManager.getBestProfile(
213
+ agentId,
214
+ this.providerId
215
+ );
216
+
217
+ const oauthToken =
218
+ profile?.authType === "oauth" ? profile.credential : undefined;
219
+ const apiKey =
220
+ profile?.authType !== "oauth"
221
+ ? profile?.credential
222
+ : process.env.ANTHROPIC_AUTH_TOKEN || process.env.ANTHROPIC_API_KEY;
223
+
224
+ const headers: Record<string, string> = {
225
+ Accept: "application/json",
226
+ "anthropic-version": "2023-06-01",
227
+ };
228
+ if (oauthToken) {
229
+ headers.Authorization = `Bearer ${oauthToken}`;
230
+ } else if (apiKey) {
231
+ headers["x-api-key"] = apiKey;
232
+ } else {
233
+ return ClaudeOAuthModule.FALLBACK_MODELS;
234
+ }
235
+
236
+ const response = await fetch("https://api.anthropic.com/v1/models", {
237
+ headers,
238
+ }).catch((err) => {
239
+ logger.warn(
240
+ { error: err?.message, agentId },
241
+ "fetchClaudeModels: fetch failed"
242
+ );
243
+ return null;
244
+ });
245
+
246
+ if (!response || !response.ok) {
247
+ logger.warn(
248
+ {
249
+ agentId,
250
+ status: response?.status,
251
+ hasOauth: !!oauthToken,
252
+ hasApiKey: !!apiKey,
253
+ },
254
+ "fetchClaudeModels: non-ok response, using fallback models"
255
+ );
256
+ return ClaudeOAuthModule.FALLBACK_MODELS;
257
+ }
258
+
259
+ const payload = (await response.json().catch(() => ({}))) as {
260
+ data?: Array<{ id?: string; display_name?: string; type?: string }>;
261
+ };
262
+
263
+ const models = (payload.data || [])
264
+ .map((item) => {
265
+ const id = item.id?.trim();
266
+ if (!id) return null;
267
+ return {
268
+ id,
269
+ display_name: item.display_name || id,
270
+ type: item.type || "model",
271
+ };
272
+ })
273
+ .filter(
274
+ (item): item is { id: string; display_name: string; type: string } =>
275
+ Boolean(item)
276
+ );
277
+
278
+ return models.length > 0 ? models : ClaudeOAuthModule.FALLBACK_MODELS;
279
+ }
280
+ }