File size: 51,144 Bytes
1dbc34b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 | /**
* OpenCode Provider - Executes queries using opencode CLI
*
* Extends CliProvider with OpenCode-specific configuration:
* - Event normalization for OpenCode's stream-json format
* - Dynamic model discovery via `opencode models` CLI command
* - NPX-based Windows execution strategy
* - Platform-specific npm global installation paths
*
* Spawns the opencode CLI with --output-format stream-json for streaming responses.
*/
import * as path from 'path';
import * as os from 'os';
import { execFile } from 'child_process';
import { promisify } from 'util';
import { CliProvider, type CliSpawnConfig } from './cli-provider.js';
const execFileAsync = promisify(execFile);
import type {
ProviderConfig,
ExecuteOptions,
ProviderMessage,
ModelDefinition,
InstallationStatus,
ContentBlock,
} from '@automaker/types';
import { type SubprocessOptions, getOpenCodeAuthIndicators } from '@automaker/platform';
import { createLogger } from '@automaker/utils';
// Create logger for OpenCode operations
const opencodeLogger = createLogger('OpencodeProvider');
// =============================================================================
// OpenCode Auth Types
// =============================================================================
export interface OpenCodeAuthStatus {
authenticated: boolean;
method: 'api_key' | 'oauth' | 'none';
hasOAuthToken?: boolean;
hasApiKey?: boolean;
}
// =============================================================================
// OpenCode Dynamic Model Types
// =============================================================================
/**
* Model information from `opencode models` CLI output
*/
export interface OpenCodeModelInfo {
/** Full model ID (e.g., "copilot/claude-sonnet-4-5") */
id: string;
/** Provider name (e.g., "copilot", "anthropic", "openai") */
provider: string;
/** Model name without provider prefix */
name: string;
/** Display name for UI */
displayName?: string;
}
/**
* Provider information from `opencode auth list` CLI output
*/
export interface OpenCodeProviderInfo {
/** Provider ID (e.g., "copilot", "anthropic") */
id: string;
/** Human-readable name */
name: string;
/** Whether the provider is authenticated */
authenticated: boolean;
/** Authentication method if authenticated */
authMethod?: 'oauth' | 'api_key';
}
/** Cache duration for dynamic model fetching (5 minutes) */
const MODEL_CACHE_DURATION_MS = 5 * 60 * 1000;
const OPENCODE_MODEL_ID_SEPARATOR = '/';
const OPENCODE_MODEL_ID_PATTERN = /^[a-z0-9.-]+\/\S+$/;
const OPENCODE_PROVIDER_PATTERN = /^[a-z0-9.-]+$/;
const OPENCODE_MODEL_NAME_PATTERN = /^[a-zA-Z0-9._:/-]+$/;
// =============================================================================
// OpenCode Stream Event Types
// =============================================================================
/**
* Part object within OpenCode events
*/
interface OpenCodePart {
id?: string;
sessionID?: string;
messageID?: string;
type: string;
text?: string;
reason?: string;
error?: string;
name?: string;
args?: unknown;
call_id?: string;
output?: string;
tokens?: {
input?: number;
output?: number;
reasoning?: number;
};
}
/**
* Base interface for all OpenCode stream events
* Format: {"type":"event_type","timestamp":...,"sessionID":"...","part":{...}}
*/
interface OpenCodeBaseEvent {
/** Event type identifier (step_start, text, step_finish, tool_call, etc.) */
type: string;
/** Unix timestamp */
timestamp?: number;
/** Session identifier */
sessionID?: string;
/** Event details */
part?: OpenCodePart;
}
/**
* Text event - Text output from the model
*/
export interface OpenCodeTextEvent extends OpenCodeBaseEvent {
type: 'text';
part: OpenCodePart & { type: 'text'; text: string };
}
/**
* Step start event - Begins an agentic loop iteration
*/
export interface OpenCodeStepStartEvent extends OpenCodeBaseEvent {
type: 'step_start';
part: OpenCodePart & { type: 'step-start' };
}
/**
* Step finish event - Completes an agentic loop iteration
*/
export interface OpenCodeStepFinishEvent extends OpenCodeBaseEvent {
type: 'step_finish';
part: OpenCodePart & { type: 'step-finish'; reason?: string };
}
/**
* Tool call event - Request to execute a tool
*/
export interface OpenCodeToolCallEvent extends OpenCodeBaseEvent {
type: 'tool_call';
part: OpenCodePart & { type: 'tool-call'; name: string; args?: unknown };
}
/**
* Tool result event - Output from a tool execution
*/
export interface OpenCodeToolResultEvent extends OpenCodeBaseEvent {
type: 'tool_result';
part: OpenCodePart & { type: 'tool-result'; output: string };
}
/**
* Error details object in error events
*/
interface OpenCodeErrorDetails {
name?: string;
message?: string;
data?: {
message?: string;
statusCode?: number;
isRetryable?: boolean;
};
}
/**
* Error event - An error occurred
*/
export interface OpenCodeErrorEvent extends OpenCodeBaseEvent {
type: 'error';
part?: OpenCodePart & { error: string };
error?: string | OpenCodeErrorDetails;
}
/**
* Tool error event - A tool execution failed
*/
export interface OpenCodeToolErrorEvent extends OpenCodeBaseEvent {
type: 'tool_error';
part?: OpenCodePart & { error: string };
}
/**
* Tool use event - The actual format emitted by OpenCode CLI when a tool is invoked.
* Contains the tool name, call ID, and the complete state (input, output, status).
* Note: OpenCode CLI emits 'tool_use' (not 'tool_call') as the event type.
*/
export interface OpenCodeToolUseEvent extends OpenCodeBaseEvent {
type: 'tool_use';
part: OpenCodePart & {
type: 'tool';
callID?: string;
tool?: string;
state?: {
status?: string;
input?: unknown;
output?: string;
title?: string;
metadata?: unknown;
time?: { start: number; end: number };
};
};
}
/**
* Union type of all OpenCode stream events
*/
export type OpenCodeStreamEvent =
| OpenCodeTextEvent
| OpenCodeStepStartEvent
| OpenCodeStepFinishEvent
| OpenCodeToolCallEvent
| OpenCodeToolUseEvent
| OpenCodeToolResultEvent
| OpenCodeErrorEvent
| OpenCodeToolErrorEvent;
// =============================================================================
// Tool Use ID Generation
// =============================================================================
/** Counter for generating unique tool use IDs when call_id is not provided */
let toolUseIdCounter = 0;
/**
* Generate a unique tool use ID for tool calls without explicit IDs
*/
function generateToolUseId(): string {
toolUseIdCounter += 1;
return `opencode-tool-${toolUseIdCounter}`;
}
/**
* Reset the tool use ID counter (useful for testing)
*/
export function resetToolUseIdCounter(): void {
toolUseIdCounter = 0;
}
// =============================================================================
// Provider Implementation
// =============================================================================
/**
* OpencodeProvider - Integrates opencode CLI as an AI provider
*
* OpenCode is an npm-distributed CLI tool that provides access to
* multiple AI model providers through a unified interface.
*
* Supports dynamic model discovery via `opencode models` CLI command,
* enabling access to 75+ providers including GitHub Copilot, Google,
* Anthropic, OpenAI, and more based on user authentication.
*/
export class OpencodeProvider extends CliProvider {
// ==========================================================================
// Dynamic Model Cache
// ==========================================================================
/** Cached model definitions */
private cachedModels: ModelDefinition[] | null = null;
/** Timestamp when cache expires */
private modelsCacheExpiry: number = 0;
/** Cached authenticated providers */
private cachedProviders: OpenCodeProviderInfo[] | null = null;
/** Whether model refresh is in progress */
private isRefreshing: boolean = false;
/** Promise that resolves when current refresh completes */
private refreshPromise: Promise<ModelDefinition[]> | null = null;
constructor(config: ProviderConfig = {}) {
super(config);
}
// ==========================================================================
// CliProvider Abstract Method Implementations
// ==========================================================================
getName(): string {
return 'opencode';
}
getCliName(): string {
return 'opencode';
}
getSpawnConfig(): CliSpawnConfig {
return {
windowsStrategy: 'npx',
npxPackage: 'opencode-ai@latest',
commonPaths: {
linux: [
path.join(os.homedir(), '.opencode/bin/opencode'),
path.join(os.homedir(), '.npm-global/bin/opencode'),
'/usr/local/bin/opencode',
'/usr/bin/opencode',
path.join(os.homedir(), '.local/bin/opencode'),
],
darwin: [
path.join(os.homedir(), '.opencode/bin/opencode'),
path.join(os.homedir(), '.npm-global/bin/opencode'),
'/usr/local/bin/opencode',
'/opt/homebrew/bin/opencode',
path.join(os.homedir(), '.local/bin/opencode'),
],
win32: [
path.join(os.homedir(), '.opencode', 'bin', 'opencode.exe'),
path.join(os.homedir(), 'AppData', 'Roaming', 'npm', 'opencode.cmd'),
path.join(os.homedir(), 'AppData', 'Roaming', 'npm', 'opencode'),
path.join(process.env.APPDATA || '', 'npm', 'opencode.cmd'),
],
},
};
}
/**
* Build CLI arguments for the `opencode run` command
*
* Arguments built:
* - 'run' subcommand for executing queries
* - '--format', 'json' for JSONL streaming output
* - '--model', '<model>' for model selection (if specified)
* - '--session', '<id>' for continuing an existing session (if sdkSessionId is set)
*
* The prompt is passed via stdin (piped) to avoid shell escaping issues.
* OpenCode CLI automatically reads from stdin when input is piped.
*
* @param options - Execution options containing model, cwd, etc.
* @returns Array of CLI arguments for opencode run
*/
buildCliArgs(options: ExecuteOptions): string[] {
const args: string[] = ['run'];
// Add JSON output format for JSONL parsing (not 'stream-json')
args.push('--format', 'json');
// Handle session resumption for conversation continuity.
// The opencode CLI supports `--session <id>` to continue an existing session.
// The sdkSessionId is captured from the sessionID field in previous stream events
// and persisted by AgentService for use in follow-up messages.
if (options.sdkSessionId) {
args.push('--session', options.sdkSessionId);
}
// Handle model selection
// Convert canonical prefix format (opencode-xxx) to CLI slash format (opencode/xxx)
// OpenCode CLI expects provider/model format (e.g., 'opencode/big-model')
if (options.model) {
// Strip opencode- prefix if present, then ensure slash format
const model = options.model.startsWith('opencode-')
? options.model.slice('opencode-'.length)
: options.model;
// If model has slash, it's already provider/model format; otherwise prepend opencode/
const cliModel = model.includes('/') ? model : `opencode/${model}`;
args.push('--model', cliModel);
}
// Note: OpenCode reads from stdin automatically when input is piped
// No '-' argument needed
return args;
}
// ==========================================================================
// Prompt Handling
// ==========================================================================
/**
* Extract prompt text from ExecuteOptions for passing via stdin
*
* Handles both string prompts and array-based prompts with content blocks.
* For array prompts with images, extracts only text content (images would
* need separate handling via file paths if OpenCode supports them).
*
* @param options - Execution options containing the prompt
* @returns Plain text prompt string
*/
private extractPromptText(options: ExecuteOptions): string {
if (typeof options.prompt === 'string') {
return options.prompt;
}
// Array-based prompt - extract text content
if (Array.isArray(options.prompt)) {
return options.prompt
.filter((block) => block.type === 'text' && block.text)
.map((block) => block.text)
.join('\n');
}
throw new Error('Invalid prompt format: expected string or content block array');
}
/**
* Build subprocess options with stdin data for prompt
*
* Extends the base class method to add stdinData containing the prompt.
* This allows passing prompts via stdin instead of CLI arguments,
* avoiding shell escaping issues with special characters.
*
* @param options - Execution options
* @param cliArgs - CLI arguments from buildCliArgs
* @returns SubprocessOptions with stdinData set
*/
protected buildSubprocessOptions(options: ExecuteOptions, cliArgs: string[]): SubprocessOptions {
const subprocessOptions = super.buildSubprocessOptions(options, cliArgs);
// Pass prompt via stdin to avoid shell interpretation of special characters
// like $(), backticks, quotes, etc. that may appear in prompts or file content
subprocessOptions.stdinData = this.extractPromptText(options);
return subprocessOptions;
}
/**
* Check if an error message indicates a session-not-found condition.
*
* Centralizes the pattern matching for session errors to avoid duplication.
* Strips ANSI escape codes first since opencode CLI uses colored stderr output
* (e.g. "\x1b[91m\x1b[1mError: \x1b[0mSession not found").
*
* IMPORTANT: Patterns must be specific enough to avoid false positives.
* Generic patterns like "notfounderror" or "resource not found" match
* non-session errors (e.g. "ProviderModelNotFoundError") which would
* trigger unnecessary retries that fail identically, producing confusing
* error messages like "OpenCode session could not be created".
*
* @param errorText - Raw error text (may contain ANSI codes)
* @returns true if the error indicates the session was not found
*/
private static isSessionNotFoundError(errorText: string): boolean {
const cleaned = OpencodeProvider.stripAnsiCodes(errorText).toLowerCase();
// Explicit session-related phrases β high confidence
if (
cleaned.includes('session not found') ||
cleaned.includes('session does not exist') ||
cleaned.includes('invalid session') ||
cleaned.includes('session expired') ||
cleaned.includes('no such session')
) {
return true;
}
// Generic "NotFoundError" / "resource not found" are only session errors
// when the message also references a session path or session ID.
// Without this guard, errors like "ProviderModelNotFoundError" or
// "Resource not found: /path/to/config.json" would false-positive.
if (cleaned.includes('notfounderror') || cleaned.includes('resource not found')) {
return cleaned.includes('/session/') || /\bsession\b/.test(cleaned);
}
return false;
}
/**
* Strip ANSI escape codes from a string.
*
* The OpenCode CLI uses colored stderr output (e.g. "\x1b[91m\x1b[1mError: \x1b[0m").
* These escape codes render as garbled text like "[91m[1mError: [0m" in the UI
* when passed through as-is. This utility removes them so error messages are
* clean and human-readable.
*/
private static stripAnsiCodes(text: string): string {
return text.replace(/\x1b\[[0-9;]*m/g, '');
}
/**
* Clean a CLI error message for display.
*
* Strips ANSI escape codes AND removes the redundant "Error: " prefix that
* the OpenCode CLI prepends to error messages in its colored stderr output
* (e.g. "\x1b[91m\x1b[1mError: \x1b[0mSession not found" β "Session not found").
*
* Without this, consumers that wrap the message in their own "Error: " prefix
* (like AgentService or AgentExecutor) produce garbled double-prefixed output:
* "Error: Error: Session not found".
*/
private static cleanErrorMessage(text: string): string {
let cleaned = OpencodeProvider.stripAnsiCodes(text).trim();
// Remove leading "Error: " prefix (case-insensitive) if present.
// The CLI formats errors as: \x1b[91m\x1b[1mError: \x1b[0m<actual message>
// After ANSI stripping this becomes: "Error: <actual message>"
cleaned = cleaned.replace(/^Error:\s*/i, '').trim();
return cleaned || text;
}
/**
* Execute a query with automatic session resumption fallback.
*
* When a sdkSessionId is provided, the CLI receives `--session <id>`.
* If the session no longer exists on disk the CLI will fail with a
* "NotFoundError" / "Resource not found" / "Session not found" error.
*
* The opencode CLI writes this to **stderr** and exits non-zero.
* `spawnJSONLProcess` collects stderr and **yields** it as
* `{ type: 'error', error: <stderrText> }` β it is NOT thrown.
* After `normalizeEvent`, the error becomes a yielded `ProviderMessage`
* with `type: 'error'`. A simple try/catch therefore cannot intercept it.
*
* This override iterates the parent stream, intercepts yielded error
* messages that match the session-not-found pattern, and retries the
* entire query WITHOUT the `--session` flag so a fresh session is started.
*
* Session-not-found retry is ONLY attempted when `sdkSessionId` is set.
* Without the `--session` flag the CLI always creates a fresh session, so
* retrying without it would be identical to the first attempt and would
* fail the same way β producing a confusing "session could not be created"
* message for what is actually a different error (model not found, auth
* failure, etc.).
*
* All error messages (session or not) are cleaned of ANSI codes and the
* CLI's redundant "Error: " prefix before being yielded to consumers.
*
* After a successful retry, the consumer (AgentService) will receive a new
* session_id from the fresh stream events, which it persists to metadata β
* replacing the stale sdkSessionId and preventing repeated failures.
*/
async *executeQuery(options: ExecuteOptions): AsyncGenerator<ProviderMessage> {
// When no sdkSessionId is set, there is nothing to "retry without" β just
// stream normally and clean error messages as they pass through.
if (!options.sdkSessionId) {
for await (const msg of super.executeQuery(options)) {
// Clean error messages so consumers don't get ANSI or double "Error:" prefix
if (msg.type === 'error' && msg.error && typeof msg.error === 'string') {
msg.error = OpencodeProvider.cleanErrorMessage(msg.error);
}
yield msg;
}
return;
}
// sdkSessionId IS set β the CLI will receive `--session <id>`.
// If that session no longer exists, intercept the error and retry fresh.
//
// To avoid buffering the entire stream in memory for long-lived sessions,
// we only buffer an initial window of messages until we observe a healthy
// (non-error) message. Once a healthy message is seen, we flush the buffer
// and switch to direct passthrough, while still watching for session errors
// via isSessionNotFoundError on any subsequent error messages.
const buffered: ProviderMessage[] = [];
let sessionError = false;
let seenHealthyMessage = false;
try {
for await (const msg of super.executeQuery(options)) {
if (msg.type === 'error') {
const errorText = msg.error || '';
if (OpencodeProvider.isSessionNotFoundError(errorText)) {
sessionError = true;
opencodeLogger.info(
`OpenCode session error detected (session "${options.sdkSessionId}") ` +
`β retrying without --session to start fresh`
);
break; // stop consuming the failed stream
}
// Non-session error β clean it
if (msg.error && typeof msg.error === 'string') {
msg.error = OpencodeProvider.cleanErrorMessage(msg.error);
}
} else {
// A non-error message is a healthy signal β stop buffering after this
seenHealthyMessage = true;
}
if (seenHealthyMessage && buffered.length > 0) {
// Flush the pre-healthy buffer first, then switch to passthrough
for (const bufferedMsg of buffered) {
yield bufferedMsg;
}
buffered.length = 0;
}
if (seenHealthyMessage) {
// Passthrough mode β yield directly without buffering
yield msg;
} else {
// Still in initial window β buffer until we see a healthy message
buffered.push(msg);
}
}
} catch (error) {
// Also handle thrown exceptions (e.g. from mapError in cli-provider)
const errMsg = error instanceof Error ? error.message : String(error);
if (OpencodeProvider.isSessionNotFoundError(errMsg)) {
sessionError = true;
opencodeLogger.info(
`OpenCode session error detected (thrown, session "${options.sdkSessionId}") ` +
`β retrying without --session to start fresh`
);
} else {
throw error;
}
}
if (sessionError) {
// Retry the entire query without the stale session ID.
const retryOptions = { ...options, sdkSessionId: undefined };
opencodeLogger.info('Retrying OpenCode query without --session flag...');
// Stream the retry directly to the consumer.
// If the retry also fails, it's a genuine error (not session-related)
// and should be surfaced as-is rather than masked with a misleading
// "session could not be created" message.
for await (const retryMsg of super.executeQuery(retryOptions)) {
if (retryMsg.type === 'error' && retryMsg.error && typeof retryMsg.error === 'string') {
retryMsg.error = OpencodeProvider.cleanErrorMessage(retryMsg.error);
}
yield retryMsg;
}
} else if (buffered.length > 0) {
// No session error and still have buffered messages (stream ended before
// any healthy message was observed) β flush them to the consumer
for (const msg of buffered) {
yield msg;
}
}
// If seenHealthyMessage is true, all messages have already been yielded
// directly in passthrough mode β nothing left to flush.
}
/**
* Normalize a raw CLI event to ProviderMessage format
*
* Maps OpenCode event types to the standard ProviderMessage structure:
* - text -> type: 'assistant', content with type: 'text'
* - step_start -> null (informational, no message needed)
* - step_finish with reason 'stop'/'end_turn' -> type: 'result', subtype: 'success'
* - step_finish with reason 'tool-calls' -> null (intermediate step, not final)
* - step_finish with error -> type: 'error'
* - tool_use -> type: 'assistant', content with type: 'tool_use' (OpenCode CLI format)
* - tool_call -> type: 'assistant', content with type: 'tool_use' (legacy format)
* - tool_result -> type: 'assistant', content with type: 'tool_result'
* - error -> type: 'error'
*
* @param event - Raw event from OpenCode CLI JSONL output
* @returns Normalized ProviderMessage or null to skip the event
*/
normalizeEvent(event: unknown): ProviderMessage | null {
if (!event || typeof event !== 'object') {
return null;
}
const openCodeEvent = event as OpenCodeStreamEvent;
switch (openCodeEvent.type) {
case 'text': {
const textEvent = openCodeEvent as OpenCodeTextEvent;
// Skip empty text
if (!textEvent.part?.text) {
return null;
}
const content: ContentBlock[] = [
{
type: 'text',
text: textEvent.part.text,
},
];
return {
type: 'assistant',
session_id: textEvent.sessionID,
message: {
role: 'assistant',
content,
},
};
}
case 'step_start': {
// Step start is informational - no message needed
return null;
}
case 'step_finish': {
const finishEvent = openCodeEvent as OpenCodeStepFinishEvent;
// Check if the step failed - either by error property or reason='error'
if (finishEvent.part?.error) {
return {
type: 'error',
session_id: finishEvent.sessionID,
error: OpencodeProvider.cleanErrorMessage(finishEvent.part.error),
};
}
// Check if reason indicates error (even without explicit error text)
if (finishEvent.part?.reason === 'error') {
return {
type: 'error',
session_id: finishEvent.sessionID,
error: OpencodeProvider.cleanErrorMessage('Step execution failed'),
};
}
// Intermediate step completion (reason: 'tool-calls') β the agent loop
// is continuing because the model requested tool calls. Skip these so
// consumers don't mistake them for final results.
if (finishEvent.part?.reason === 'tool-calls') {
return null;
}
// Only treat an explicit allowlist of reasons as true success.
// Reasons like 'length' (context-window truncation) or 'content-filter'
// indicate the model stopped abnormally and must not be surfaced as
// successful completions.
const SUCCESS_REASONS = new Set(['stop', 'end_turn']);
const reason = finishEvent.part?.reason;
if (reason === undefined || SUCCESS_REASONS.has(reason)) {
// Final completion (reason: 'stop', 'end_turn', or unset)
return {
type: 'result',
subtype: 'success',
session_id: finishEvent.sessionID,
result: (finishEvent.part as OpenCodePart & { result?: string })?.result,
};
}
// Non-success, non-tool-calls reason (e.g. 'length', 'content-filter')
return {
type: 'result',
subtype: 'error',
session_id: finishEvent.sessionID,
error: `Step finished with non-success reason: ${reason}`,
result: (finishEvent.part as OpenCodePart & { result?: string })?.result,
};
}
case 'tool_error': {
const toolErrorEvent = openCodeEvent as OpenCodeBaseEvent;
// Extract error message from part.error and clean ANSI codes
const errorMessage = OpencodeProvider.cleanErrorMessage(
toolErrorEvent.part?.error || 'Tool execution failed'
);
return {
type: 'error',
session_id: toolErrorEvent.sessionID,
error: errorMessage,
};
}
// OpenCode CLI emits 'tool_use' events (not 'tool_call') when the model invokes a tool.
// The event format includes the tool name, call ID, and state with input/output.
// Handle both 'tool_use' (actual CLI format) and 'tool_call' (legacy/alternative) for robustness.
case 'tool_use': {
const toolUseEvent = openCodeEvent as OpenCodeToolUseEvent;
const part = toolUseEvent.part;
// Generate a tool use ID if not provided
const toolUseId = part?.callID || part?.call_id || generateToolUseId();
const toolName = part?.tool || part?.name || 'unknown';
const content: ContentBlock[] = [
{
type: 'tool_use',
name: toolName,
tool_use_id: toolUseId,
input: part?.state?.input || part?.args,
},
];
// If the tool has already completed (state.status === 'completed'), also emit the result
if (part?.state?.status === 'completed' && part?.state?.output) {
content.push({
type: 'tool_result',
tool_use_id: toolUseId,
content: part.state.output,
});
}
return {
type: 'assistant',
session_id: toolUseEvent.sessionID,
message: {
role: 'assistant',
content,
},
};
}
case 'tool_call': {
const toolEvent = openCodeEvent as OpenCodeToolCallEvent;
// Generate a tool use ID if not provided
const toolUseId = toolEvent.part?.call_id || generateToolUseId();
const content: ContentBlock[] = [
{
type: 'tool_use',
name: toolEvent.part?.name || 'unknown',
tool_use_id: toolUseId,
input: toolEvent.part?.args,
},
];
return {
type: 'assistant',
session_id: toolEvent.sessionID,
message: {
role: 'assistant',
content,
},
};
}
case 'tool_result': {
const resultEvent = openCodeEvent as OpenCodeToolResultEvent;
const content: ContentBlock[] = [
{
type: 'tool_result',
tool_use_id: resultEvent.part?.call_id,
content: resultEvent.part?.output || '',
},
];
return {
type: 'assistant',
session_id: resultEvent.sessionID,
message: {
role: 'assistant',
content,
},
};
}
case 'error': {
const errorEvent = openCodeEvent as OpenCodeErrorEvent;
// Extract error message from various formats
let errorMessage = 'Unknown error';
if (errorEvent.error) {
if (typeof errorEvent.error === 'string') {
errorMessage = errorEvent.error;
} else {
// Error is an object with name/data structure
errorMessage =
errorEvent.error.data?.message ||
errorEvent.error.message ||
errorEvent.error.name ||
'Unknown error';
}
} else if (errorEvent.part?.error) {
errorMessage = errorEvent.part.error;
}
// Clean error messages: strip ANSI escape codes AND the redundant "Error: "
// prefix the CLI adds. The OpenCode CLI outputs colored stderr like:
// \x1b[91m\x1b[1mError: \x1b[0mSession not found
// Without cleaning, consumers that wrap in their own "Error: " prefix
// produce "Error: Error: Session not found".
errorMessage = OpencodeProvider.cleanErrorMessage(errorMessage);
return {
type: 'error',
session_id: errorEvent.sessionID,
error: errorMessage,
};
}
default: {
// Unknown event type - skip it
return null;
}
}
}
// ==========================================================================
// Model Configuration
// ==========================================================================
/**
* Get available models for OpenCode
*
* Returns cached models if available and not expired.
* Falls back to default models if cache is empty or CLI is unavailable.
*
* Use `refreshModels()` to force a fresh fetch from the CLI.
*/
getAvailableModels(): ModelDefinition[] {
// Return cached models if available and not expired
if (this.cachedModels && Date.now() < this.modelsCacheExpiry) {
return this.cachedModels;
}
// Return cached models even if expired (better than nothing)
if (this.cachedModels) {
// Trigger background refresh
this.refreshModels().catch((err) => {
opencodeLogger.debug(`Background model refresh failed: ${err}`);
});
return this.cachedModels;
}
// Return default models while cache is empty
return this.getDefaultModels();
}
/**
* Get default hardcoded models (fallback when CLI is unavailable)
*/
private getDefaultModels(): ModelDefinition[] {
return [
// OpenCode Free Tier Models
{
id: 'opencode/big-pickle',
name: 'Big Pickle (Free)',
modelString: 'opencode/big-pickle',
provider: 'opencode',
description: 'OpenCode free tier model - great for general coding',
supportsTools: true,
supportsVision: false,
tier: 'basic',
default: true,
},
{
id: 'opencode/glm-5-free',
name: 'GLM 5 Free',
modelString: 'opencode/glm-5-free',
provider: 'opencode',
description: 'OpenCode free tier GLM model',
supportsTools: true,
supportsVision: false,
tier: 'basic',
},
{
id: 'opencode/gpt-5-nano',
name: 'GPT-5 Nano (Free)',
modelString: 'opencode/gpt-5-nano',
provider: 'opencode',
description: 'Fast and lightweight free tier model',
supportsTools: true,
supportsVision: false,
tier: 'basic',
},
{
id: 'opencode/kimi-k2.5-free',
name: 'Kimi K2.5 Free',
modelString: 'opencode/kimi-k2.5-free',
provider: 'opencode',
description: 'OpenCode free tier Kimi model for coding',
supportsTools: true,
supportsVision: false,
tier: 'basic',
},
{
id: 'opencode/minimax-m2.5-free',
name: 'MiniMax M2.5 Free',
modelString: 'opencode/minimax-m2.5-free',
provider: 'opencode',
description: 'OpenCode free tier MiniMax model',
supportsTools: true,
supportsVision: false,
tier: 'basic',
},
];
}
// ==========================================================================
// Dynamic Model Discovery
// ==========================================================================
/**
* Refresh models from OpenCode CLI
*
* Fetches available models using `opencode models` command and updates cache.
* Returns the updated model definitions.
*/
async refreshModels(): Promise<ModelDefinition[]> {
// If refresh is in progress, wait for existing promise instead of busy-waiting
if (this.isRefreshing && this.refreshPromise) {
opencodeLogger.debug('Model refresh already in progress, waiting for completion...');
return this.refreshPromise;
}
this.isRefreshing = true;
opencodeLogger.debug('Starting model refresh from OpenCode CLI');
this.refreshPromise = this.doRefreshModels();
try {
return await this.refreshPromise;
} finally {
this.refreshPromise = null;
this.isRefreshing = false;
}
}
/**
* Internal method that performs the actual model refresh
*/
private async doRefreshModels(): Promise<ModelDefinition[]> {
try {
const models = await this.fetchModelsFromCli();
if (models.length > 0) {
this.cachedModels = models;
this.modelsCacheExpiry = Date.now() + MODEL_CACHE_DURATION_MS;
opencodeLogger.debug(`Cached ${models.length} models from OpenCode CLI`);
} else {
// Keep existing cache if fetch returned nothing
opencodeLogger.debug('No models returned from CLI, keeping existing cache');
}
return this.cachedModels || this.getDefaultModels();
} catch (error) {
opencodeLogger.debug(`Model refresh failed: ${error}`);
// Return existing cache or defaults on error
return this.cachedModels || this.getDefaultModels();
}
}
/**
* Fetch models from OpenCode CLI using `opencode models` command
*
* Uses async execFile to avoid blocking the event loop.
*/
private async fetchModelsFromCli(): Promise<ModelDefinition[]> {
this.ensureCliDetected();
if (!this.cliPath) {
opencodeLogger.debug('OpenCode CLI not available for model fetch');
return [];
}
try {
let command: string;
let args: string[];
if (this.detectedStrategy === 'npx') {
// NPX strategy: execute npx with opencode-ai package
command = process.platform === 'win32' ? 'npx.cmd' : 'npx';
args = ['opencode-ai@latest', 'models'];
opencodeLogger.debug(`Executing: ${command} ${args.join(' ')}`);
} else if (this.useWsl && this.wslCliPath) {
// WSL strategy: execute via wsl.exe
command = 'wsl.exe';
args = this.wslDistribution
? ['-d', this.wslDistribution, this.wslCliPath, 'models']
: [this.wslCliPath, 'models'];
opencodeLogger.debug(`Executing: ${command} ${args.join(' ')}`);
} else {
// Direct CLI execution
command = this.cliPath;
args = ['models'];
opencodeLogger.debug(`Executing: ${command} ${args.join(' ')}`);
}
const { stdout } = await execFileAsync(command, args, {
encoding: 'utf-8',
timeout: 30000,
windowsHide: true,
// Use shell on Windows for .cmd files
shell: process.platform === 'win32' && command.endsWith('.cmd'),
});
opencodeLogger.debug(
`Models output (${stdout.length} chars): ${stdout.substring(0, 200)}...`
);
return this.parseModelsOutput(stdout);
} catch (error) {
opencodeLogger.error(`Failed to fetch models from CLI: ${error}`);
return [];
}
}
/**
* Parse the output of `opencode models` command
*
* OpenCode CLI output format (one model per line):
* opencode/big-pickle
* opencode/glm-5-free
* anthropic/claude-3-5-haiku-20241022
* github-copilot/claude-3.5-sonnet
* ...
*/
private parseModelsOutput(output: string): ModelDefinition[] {
// Parse line-based format (one model ID per line)
const lines = output.split('\n');
const models: ModelDefinition[] = [];
// Regex to validate "provider/model-name" format
// Provider: lowercase letters, numbers, dots, hyphens
// Model name: non-whitespace (supports nested paths like openrouter/anthropic/claude)
const modelIdRegex = OPENCODE_MODEL_ID_PATTERN;
for (const line of lines) {
// Remove ANSI escape codes if any
const cleanLine = line.replace(/\x1b\[[0-9;]*m/g, '').trim();
// Skip empty lines
if (!cleanLine) continue;
// Validate format using regex for robustness
if (modelIdRegex.test(cleanLine)) {
const separatorIndex = cleanLine.indexOf(OPENCODE_MODEL_ID_SEPARATOR);
if (separatorIndex <= 0 || separatorIndex === cleanLine.length - 1) {
continue;
}
const provider = cleanLine.slice(0, separatorIndex);
const name = cleanLine.slice(separatorIndex + 1);
if (!OPENCODE_PROVIDER_PATTERN.test(provider) || !OPENCODE_MODEL_NAME_PATTERN.test(name)) {
continue;
}
models.push(
this.modelInfoToDefinition({
id: cleanLine,
provider,
name,
})
);
}
}
opencodeLogger.debug(`Parsed ${models.length} models from CLI output`);
return models;
}
/**
* Convert OpenCodeModelInfo to ModelDefinition
*/
private modelInfoToDefinition(model: OpenCodeModelInfo): ModelDefinition {
const displayName = model.displayName || this.formatModelDisplayName(model);
const tier = this.inferModelTier(model.id);
return {
id: model.id,
name: displayName,
modelString: model.id,
provider: model.provider, // Use the actual provider (github-copilot, google, etc.)
description: `${model.name} via ${this.formatProviderName(model.provider)}`,
supportsTools: true,
supportsVision: this.modelSupportsVision(model.id),
tier,
// Mark Claude Sonnet as default if available
default: model.id.includes('claude-sonnet-4'),
};
}
/**
* Format provider name for display
*/
private formatProviderName(provider: string): string {
const providerNames: Record<string, string> = {
'github-copilot': 'GitHub Copilot',
google: 'Google AI',
openai: 'OpenAI',
anthropic: 'Anthropic',
openrouter: 'OpenRouter',
opencode: 'OpenCode',
ollama: 'Ollama',
lmstudio: 'LM Studio',
azure: 'Azure OpenAI',
xai: 'xAI',
deepseek: 'DeepSeek',
};
return (
providerNames[provider] ||
provider.charAt(0).toUpperCase() + provider.slice(1).replace(/-/g, ' ')
);
}
/**
* Format a display name for a model
*/
private formatModelDisplayName(model: OpenCodeModelInfo): string {
// Extract the last path segment for nested model IDs
// e.g., "arcee-ai/trinity-large-preview:free" β "trinity-large-preview:free"
let rawName = model.name;
if (rawName.includes('/')) {
rawName = rawName.split('/').pop()!;
}
// Strip tier/pricing suffixes like ":free", ":extended"
const colonIdx = rawName.indexOf(':');
let suffix = '';
if (colonIdx !== -1) {
const tierPart = rawName.slice(colonIdx + 1);
if (/^(free|extended|beta|preview)$/i.test(tierPart)) {
suffix = ` (${tierPart.charAt(0).toUpperCase() + tierPart.slice(1)})`;
}
rawName = rawName.slice(0, colonIdx);
}
// Capitalize and format the model name
const formattedName = rawName
.split('-')
.map((part) => {
// Handle version numbers like "4-5" -> "4.5"
if (/^\d+$/.test(part)) {
return part;
}
return part.charAt(0).toUpperCase() + part.slice(1);
})
.join(' ')
.replace(/(\d)\s+(\d)/g, '$1.$2'); // "4 5" -> "4.5"
// Format provider name
const providerNames: Record<string, string> = {
copilot: 'GitHub Copilot',
anthropic: 'Anthropic',
openai: 'OpenAI',
google: 'Google',
'amazon-bedrock': 'AWS Bedrock',
bedrock: 'AWS Bedrock',
openrouter: 'OpenRouter',
opencode: 'OpenCode',
azure: 'Azure',
ollama: 'Ollama',
lmstudio: 'LM Studio',
};
const providerDisplay = providerNames[model.provider] || model.provider;
return `${formattedName}${suffix} (${providerDisplay})`;
}
/**
* Infer model tier based on model ID
*/
private inferModelTier(modelId: string): 'basic' | 'standard' | 'premium' {
const lowerModelId = modelId.toLowerCase();
// Premium tier: flagship models
if (
lowerModelId.includes('opus') ||
lowerModelId.includes('gpt-5') ||
lowerModelId.includes('o3') ||
lowerModelId.includes('o4') ||
lowerModelId.includes('gemini-2') ||
lowerModelId.includes('deepseek-r1')
) {
return 'premium';
}
// Basic tier: free or lightweight models
if (
lowerModelId.includes('free') ||
lowerModelId.includes('nano') ||
lowerModelId.includes('mini') ||
lowerModelId.includes('haiku') ||
lowerModelId.includes('flash')
) {
return 'basic';
}
// Standard tier: everything else
return 'standard';
}
/**
* Check if a model supports vision based on model ID
*/
private modelSupportsVision(modelId: string): boolean {
const lowerModelId = modelId.toLowerCase();
// Models known to support vision
const visionModels = ['claude', 'gpt-4', 'gpt-5', 'gemini', 'nova', 'llama-3', 'llama-4'];
return visionModels.some((vm) => lowerModelId.includes(vm));
}
/**
* Fetch authenticated providers from OpenCode CLI
*
* Runs `opencode auth list` to get the list of authenticated providers.
* Uses async execFile to avoid blocking the event loop.
*/
async fetchAuthenticatedProviders(): Promise<OpenCodeProviderInfo[]> {
this.ensureCliDetected();
if (!this.cliPath) {
opencodeLogger.debug('OpenCode CLI not available for provider fetch');
return [];
}
try {
let command: string;
let args: string[];
if (this.detectedStrategy === 'npx') {
// NPX strategy
command = process.platform === 'win32' ? 'npx.cmd' : 'npx';
args = ['opencode-ai@latest', 'auth', 'list'];
opencodeLogger.debug(`Executing: ${command} ${args.join(' ')}`);
} else if (this.useWsl && this.wslCliPath) {
// WSL strategy
command = 'wsl.exe';
args = this.wslDistribution
? ['-d', this.wslDistribution, this.wslCliPath, 'auth', 'list']
: [this.wslCliPath, 'auth', 'list'];
opencodeLogger.debug(`Executing: ${command} ${args.join(' ')}`);
} else {
// Direct CLI execution
command = this.cliPath;
args = ['auth', 'list'];
opencodeLogger.debug(`Executing: ${command} ${args.join(' ')}`);
}
const { stdout } = await execFileAsync(command, args, {
encoding: 'utf-8',
timeout: 15000,
windowsHide: true,
// Use shell on Windows for .cmd files
shell: process.platform === 'win32' && command.endsWith('.cmd'),
});
opencodeLogger.debug(
`Auth list output (${stdout.length} chars): ${stdout.substring(0, 200)}...`
);
const providers = this.parseProvidersOutput(stdout);
this.cachedProviders = providers;
return providers;
} catch (error) {
opencodeLogger.error(`Failed to fetch providers from CLI: ${error}`);
return this.cachedProviders || [];
}
}
/**
* Parse the output of `opencode auth list` command
*
* OpenCode CLI output format:
* β Credentials ~/.local/share/opencode/auth.json
* β
* β Anthropic oauth
* β
* β GitHub Copilot oauth
* β
* β 4 credentials
*
* Each line with β contains: provider name and auth method (oauth/api)
*/
private parseProvidersOutput(output: string): OpenCodeProviderInfo[] {
const lines = output.split('\n');
const providers: OpenCodeProviderInfo[] = [];
// Provider name to ID mapping
const providerIdMap: Record<string, string> = {
anthropic: 'anthropic',
'github copilot': 'github-copilot',
copilot: 'github-copilot',
google: 'google',
openai: 'openai',
openrouter: 'openrouter',
azure: 'azure',
bedrock: 'amazon-bedrock',
'amazon bedrock': 'amazon-bedrock',
ollama: 'ollama',
'lm studio': 'lmstudio',
lmstudio: 'lmstudio',
opencode: 'opencode',
'z.ai coding plan': 'zai-coding-plan',
'z.ai': 'z-ai',
};
for (const line of lines) {
// Look for lines with β which indicate authenticated providers
// Format: "β Provider Name auth_method"
if (line.includes('β')) {
// Remove ANSI escape codes and the β symbol
const cleanLine = line
.replace(/\x1b\[[0-9;]*m/g, '') // Remove ANSI codes
.replace(/β/g, '') // Remove β symbol
.trim();
if (!cleanLine) continue;
// Parse "Provider Name auth_method" format
// Auth method is the last word (oauth, api, etc.)
const parts = cleanLine.split(/\s+/);
if (parts.length >= 2) {
const authMethod = parts[parts.length - 1].toLowerCase();
const providerName = parts.slice(0, -1).join(' ');
// Determine auth method type
let authMethodType: 'oauth' | 'api_key' | undefined;
if (authMethod === 'oauth') {
authMethodType = 'oauth';
} else if (authMethod === 'api' || authMethod === 'api_key') {
authMethodType = 'api_key';
}
// Get provider ID from name
const providerNameLower = providerName.toLowerCase();
const providerId =
providerIdMap[providerNameLower] || providerNameLower.replace(/\s+/g, '-');
providers.push({
id: providerId,
name: providerName,
authenticated: true, // If it's listed with β, it's authenticated
authMethod: authMethodType,
});
}
}
}
opencodeLogger.debug(`Parsed ${providers.length} providers from auth list`);
return providers;
}
/**
* Get cached authenticated providers
*/
getCachedProviders(): OpenCodeProviderInfo[] | null {
return this.cachedProviders;
}
/**
* Clear the model cache, forcing a refresh on next access
*/
clearModelCache(): void {
this.cachedModels = null;
this.modelsCacheExpiry = 0;
this.cachedProviders = null;
opencodeLogger.debug('Model cache cleared');
}
/**
* Check if we have cached models (not just defaults)
*/
hasCachedModels(): boolean {
return this.cachedModels !== null && this.cachedModels.length > 0;
}
// ==========================================================================
// Feature Support
// ==========================================================================
/**
* Check if a feature is supported by OpenCode
*
* Supported features:
* - tools: Function calling / tool use
* - text: Text generation
* - vision: Image understanding
*/
supportsFeature(feature: string): boolean {
const supportedFeatures = ['tools', 'text', 'vision'];
return supportedFeatures.includes(feature);
}
// ==========================================================================
// Authentication
// ==========================================================================
/**
* Check authentication status for OpenCode CLI
*
* Checks for authentication via:
* - OAuth token in auth file
* - API key in auth file
*/
async checkAuth(): Promise<OpenCodeAuthStatus> {
const authIndicators = await getOpenCodeAuthIndicators();
// Check for OAuth token
if (authIndicators.hasOAuthToken) {
return {
authenticated: true,
method: 'oauth',
hasOAuthToken: true,
hasApiKey: authIndicators.hasApiKey,
};
}
// Check for API key
if (authIndicators.hasApiKey) {
return {
authenticated: true,
method: 'api_key',
hasOAuthToken: false,
hasApiKey: true,
};
}
return {
authenticated: false,
method: 'none',
hasOAuthToken: false,
hasApiKey: false,
};
}
// ==========================================================================
// Installation Detection
// ==========================================================================
/**
* Detect OpenCode installation status
*
* Checks if the opencode CLI is available either through:
* - Direct installation (npm global)
* - NPX (fallback on Windows)
* Also checks authentication status.
*/
async detectInstallation(): Promise<InstallationStatus> {
this.ensureCliDetected();
const installed = await this.isInstalled();
const auth = await this.checkAuth();
return {
installed,
path: this.cliPath || undefined,
method: this.detectedStrategy === 'npx' ? 'npm' : 'cli',
authenticated: auth.authenticated,
hasApiKey: auth.hasApiKey,
hasOAuthToken: auth.hasOAuthToken,
};
}
}
|