File size: 58,597 Bytes
63522a5 | 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 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 | import { ACP_SETTINGS_KEYS } from "@openhands/typescript-client";
import type { HookConfig } from "@openhands/typescript-client";
import { ServerClient } from "@openhands/typescript-client/clients";
import { SKILLS_CATALOG } from "@openhands/extensions/skills";
import { DEFAULT_SETTINGS } from "#/services/settings";
import { ExecutionStatus } from "#/types/agent-server/core";
import { AgentKind, Settings, SettingsValue } from "#/types/settings";
import {
getAcpPreferredDefaultModel,
getAcpProvider,
resolveEffectiveAcpModel,
} from "#/constants/acp-providers";
import { getAgentServerClientOptions } from "./agent-server-client-options";
import {
getCachedAgentServerInfo,
isAgentServerToolAvailable,
} from "./agent-server-compatibility";
import { getAgentServerWorkingDir } from "./agent-server-config";
import { getEffectiveLocalBackend } from "./backend-registry/active-store";
import { buildAuthHeaders } from "./backend-registry/auth";
import {
GetHooksResponse,
PluginSpec,
AppConversation,
AppConversationPage,
RuntimeConversationStats,
SandboxStatus,
} from "./conversation-service/agent-server-conversation-service.types";
import { combineUsageMetrics } from "#/utils/conversation-metrics";
import {
buildSkillEnablementFilter,
findInvokedCatalogSkill,
toSkillEnablement,
type SkillEnablement,
} from "#/utils/skill-enablement";
import SettingsService from "./settings-service/settings-service.api";
import { getStoredConversationMetadata } from "./conversation-metadata-store";
import LLMSubscriptionService from "./llm-subscription-service";
import {
LLM_AUTH_TYPE_SUBSCRIPTION,
OPENAI_SUBSCRIPTION_VENDOR,
isSubscriptionLlmConfig,
} from "#/constants/llm-subscription";
import {
CANVAS_UI_CLIENT_TOOL,
CANVAS_UI_CLIENT_TOOL_NAME,
LEGACY_CANVAS_UI_TOOL_NAME,
type ClientToolSpec,
} from "./canvas-ui-client-tool";
import {
LAUNCH_CHILD_CONVERSATION_CLIENT_TOOL,
LAUNCH_CHILD_CONVERSATION_TOOL_NAME,
} from "./launch-child-conversation-client-tool";
import {
buildPlanPath,
LOCAL_PLANNER_PARENT_TAG_KEY,
PLAN_STRUCTURE_TEXT,
PLANNING_AGENT_INSTRUCTION,
PLANNING_FILE_EDITOR_TOOL_NAME,
PLANNING_SYSTEM_PROMPT_FILENAME,
} from "#/utils/plan-file";
export interface DirectConversationInfo {
id: string;
title?: string | null;
created_at: string;
updated_at: string;
execution_status?: string | null;
/** Cloud-only sandbox lifecycle state. Omitted / null for local agent-server conversations. */
sandbox_status?: string | null;
metrics?: {
accumulated_cost?: number | null;
max_budget_per_task?: number | null;
accumulated_token_usage?: {
prompt_tokens?: number;
completion_tokens?: number;
cache_read_tokens?: number;
cache_write_tokens?: number;
context_window?: number;
per_turn_token?: number;
} | null;
} | null;
/**
* Raw per-usage-id LLM stats from the agent-server. Search/list responses
* often carry real usage here even when `metrics` above comes back unset;
* {@link toAppConversation} combines this as a fallback in that case.
*/
stats?: RuntimeConversationStats | null;
agent?: {
/**
* Pydantic discriminator from the SDK union: ``"ACPAgent"`` for ACP CLI
* subprocesses (model lives on the subprocess via ``acp_model``),
* ``"Agent"`` for direct litellm. Read by {@link toAppConversation}.
*/
kind?: string | null;
acp_model?: string | null;
/**
* ACP CLI identity (``claude-code`` / ``codex`` / ``gemini-cli``) from the
* SDK's ``ACPAgent.acp_server`` (#3692). Preferred fallback when the
* ``acpserver`` tag is absent β e.g. a profile launch doesn't stamp the tag
* client-side and the server may not repopulate it. Read by {@link toAppConversation}.
*/
acp_server?: string | null;
llm?: {
model?: string | null;
} | null;
} | null;
current_model_id?: string | null;
current_model_name?: string | null;
workspace?: {
working_dir?: string | null;
} | null;
/**
* Arbitrary string-keyed conversation tags surfaced by the agent-server
* (see ``ConversationInfo.tags``). Canvas only consumes one key today β
* ``ACP_SERVER_TAG_KEY`` ("acpserver") β but the field is typed as a
* generic record so future readers don't need another wire-shape change.
* Keys are constrained to ``^[a-z0-9]+$`` by the agent-server validator;
* values are opaque strings.
*/
tags?: Record<string, string> | null;
launched_agent_profile?: {
agent_profile_id: string;
revision: number;
} | null;
/**
* Server-owned, derived from the catalog's ``parent_conversation_id`` link
* (agent-server >= 1.37.1, SDK #4188) β a conversation started with a
* parent is discoverable here on any browser, which is what makes the
* local planner's relationship server state rather than a browser-local
* hint. Absent on older agent-servers and on the cloud wire shape.
*/
sub_conversation_ids?: string[] | null;
}
const DEFAULT_TOOL_NAMES = ["terminal", "file_editor", "task_tracker"];
const BROWSER_TOOL_SET_NAME = "browser_tool_set";
const TASK_TOOL_SET_NAME = "task_tool_set";
// Falls back to the same default the code agent uses when the user has not
// configured `conversation_settings.max_iterations` (see buildConfiguredConversationSettings).
const DEFAULT_MAX_ITERATIONS = 500;
function resolveMaxIterations(value: unknown): number {
return typeof value === "number" ? value : DEFAULT_MAX_ITERATIONS;
}
function browserToolsEnabled() {
return import.meta.env.VITE_ENABLE_BROWSER_TOOLS !== "false";
}
/**
* Shape of the runtime services info served by Agent Canvas backends in
* `/server_info.runtime_services`. All URLs are written from the agent's point of
* view, not the browser's. The block is rendered into the agent's system prompt
* via `AgentContext.system_message_suffix` so the agent knows what's reachable
* from inside its sandbox without having to probe.
*/
export interface RuntimeServicesInfo {
mode?: string;
agent_host_alias?: string;
services?: {
agent_server?: { description?: string; url_from_agent?: string };
ingress?: { description?: string; url_from_agent?: string };
frontend?: {
kind?: "vite" | "static";
description?: string;
url_from_agent?: string;
};
// `vite` is the legacy key name for the frontend entry, accepted for
// one release while older dev-stack launchers may still emit it.
vite?: { description?: string; url_from_agent?: string };
automation?: {
description?: string;
url_from_agent?: string;
api_prefix?: string;
docs_url?: string;
openapi_url?: string;
auth_env_var?: string;
};
};
}
export function parseRuntimeServicesInfo(
value: unknown,
): RuntimeServicesInfo | null {
if (typeof value === "string") {
const raw = value.trim();
if (!raw) return null;
try {
return parseRuntimeServicesInfo(JSON.parse(raw));
} catch {
return null;
}
}
if (!value || typeof value !== "object" || Array.isArray(value)) {
return null;
}
const parsed = value as RuntimeServicesInfo;
if (!parsed.services || typeof parsed.services !== "object") return null;
return parsed;
}
export async function fetchBackendRuntimeServicesInfo(): Promise<RuntimeServicesInfo | null> {
let clientOptions: ReturnType<typeof getAgentServerClientOptions>;
try {
clientOptions = getAgentServerClientOptions({ timeout: 3000 });
} catch {
return null;
}
const cached = parseRuntimeServicesInfo(
getCachedAgentServerInfo({ host: clientOptions.host })?.runtime_services,
);
if (cached) return cached;
try {
const serverInfo = await new ServerClient(clientOptions).getServerInfo();
return parseRuntimeServicesInfo(
(serverInfo as { runtime_services?: unknown }).runtime_services,
);
} catch {
return null;
}
}
/**
* Return the deployment mode from the runtime services info, e.g. "docker",
* "dev:automation", etc. Returns `null` when no runtime info is supplied.
*/
export function getDeploymentMode(
runtimeServicesInfo?: RuntimeServicesInfo | null,
): string | null {
return runtimeServicesInfo?.mode ?? null;
}
/**
* Render the runtime services info into a markdown block suitable for
* appending to the system prompt via `AgentContext.system_message_suffix`.
*
* Returns `undefined` when no runtime info is available, so callers can safely
* omit the field when the selected backend does not advertise runtime services.
*/
export function buildRuntimeServicesSystemSuffix(
runtimeServicesInfo?: RuntimeServicesInfo | null,
): string | undefined {
const info = parseRuntimeServicesInfo(runtimeServicesInfo);
if (!info?.services) return undefined;
const lines: string[] = [];
lines.push("<RUNTIME_SERVICES>");
if (info.mode) {
lines.push(
`You are running inside an agent-canvas dev stack started in '${info.mode}' mode.`,
);
} else {
lines.push("You are running inside an agent-canvas dev stack.");
}
lines.push(
"The following services are reachable from your sandbox. URLs are written",
"from your point of view (i.e., as you should curl/fetch them).",
"",
);
const { agent_server, ingress, automation } = info.services;
const { frontend } = info.services;
if (agent_server?.url_from_agent) {
lines.push(
`* Agent Server (you): ${agent_server.url_from_agent}`,
` ${agent_server.description ?? "The agent-server hosting your tool calls."}`,
);
}
if (ingress?.url_from_agent) {
lines.push(
`* Ingress: ${ingress.url_from_agent}`,
` ${ingress.description ?? "Unified entry point for browser-facing traffic."}`,
);
}
if (frontend?.url_from_agent) {
lines.push(
`* Frontend: ${frontend.url_from_agent}`,
` ${frontend.description ?? "Frontend dev server."}`,
);
}
if (automation?.url_from_agent) {
lines.push(
`* Automation backend: ${automation.url_from_agent}`,
` ${automation.description ?? "OpenHands Automations service."}`,
);
if (automation.docs_url) {
lines.push(` Docs: ${automation.docs_url}`);
}
if (automation.openapi_url) {
lines.push(` OpenAPI: ${automation.openapi_url}`);
}
if (automation.auth_env_var) {
// X-Session-API-Key is the local convention shared by the agent-server
// and automation backend (see openhands-automation auth.py).
lines.push(
` Auth: header 'X-Session-API-Key: $${automation.auth_env_var}'`,
);
}
} else {
lines.push(
"* Automation backend: not running in this dev mode (skip /api/automation calls).",
);
}
// Anchor the "don't guess" warning to the actual agent-server URL for
// this stack instead of a hardcoded port. The agent-server listens on
// different ports across dev modes, and baking the wrong port into the
// system prompt is exactly the kind of confusion this block is meant to
// prevent.
const agentServerUrl = agent_server?.url_from_agent;
lines.push(
"",
"Trust this block over guessing: do not assume any other URLs are running.",
);
if (agentServerUrl) {
lines.push(
`In particular, ${agentServerUrl} inside your sandbox is the Agent Server`,
"you are running inside of β NOT the automation backend.",
);
}
lines.push("</RUNTIME_SERVICES>");
return lines.join("\n");
}
export function toConversationUrl(conversationId: string): string {
// Local-format conversation URL β points at whichever local agent-server
// is actually serving the conversation (the bundled one when the active
// selection is cloud).
const { host } = getAgentServerClientOptions();
return `${host}/api/conversations/${conversationId}`;
}
// TODO(i18n): extract "Conversation" once we add CONVERSATION$DEFAULT_TITLE
// with `{{shortId}}` interpolation. Kept as a literal for now to keep the
// fallback inside this pure adapter rather than fanning out to display sites.
export function getDefaultConversationTitle(conversationId: string): string {
return `Conversation ${conversationId.slice(0, 5)}`;
}
export function toAppConversation(
info: DirectConversationInfo,
): AppConversation {
const metadata = getStoredConversationMetadata(info.id);
// ACPAgent conversations carry a sentinel ``llm`` on older SDKs. Prefer the
// runtime model fields when available, then the configured ``acp_model`` that
// Canvas saves for built-in providers. ``agent_kind`` still gates model
// switching, so surfacing this string is display-only.
const isAcp = info.agent?.kind === "ACPAgent";
// Only surface ``acp_server`` for ACP conversations even if the wire
// payload accidentally carries an ``acpserver`` tag on an OpenHands
// conversation β the chip is identity info for the ACP CLI subprocess,
// and showing it on a non-ACP conversation would be a lie. Fall back to the
// agent's own ``acp_server`` (#3692) when the tag is missing β a profile
// launch doesn't stamp the tag, so tag-only reads would drop the ACP model
// picker and degrade the chip to a generic "ACP" (#1571).
const acpServer = isAcp
? (info.tags?.[ACP_SERVER_TAG_KEY] ?? info.agent?.acp_server ?? null)
: null;
return {
id: info.id,
created_by_user_id: null,
selected_repository: metadata?.selected_repository ?? null,
selected_branch: metadata?.selected_branch ?? null,
git_provider: metadata?.git_provider ?? null,
selected_workspace: metadata?.selected_workspace ?? null,
active_profile: metadata?.active_profile ?? null,
title: info.title?.trim()
? info.title
: getDefaultConversationTitle(info.id),
trigger: null,
pr_number: [],
agent_kind: isAcp ? "acp" : "openhands",
acp_server: acpServer,
tags: info.tags ?? null,
launched_agent_profile: info.launched_agent_profile ?? null,
// Chip path: omit ``providerDefault`` so that when no concrete model
// resolves, the chip falls back to the provider display name in
// ConversationCardFooter rather than a registry default the session may
// not actually be running.
llm_model: isAcp
? resolveEffectiveAcpModel({
runtimeName: info.current_model_name,
runtimeId: info.current_model_id,
configured: info.agent?.acp_model,
sdkLlm: info.agent?.llm?.model,
})
: (info.agent?.llm?.model ?? DEFAULT_SETTINGS.llm_model),
metrics: info.metrics
? {
accumulated_cost: info.metrics.accumulated_cost ?? null,
max_budget_per_task: info.metrics.max_budget_per_task ?? null,
accumulated_token_usage: info.metrics.accumulated_token_usage
? {
prompt_tokens:
info.metrics.accumulated_token_usage.prompt_tokens ?? 0,
completion_tokens:
info.metrics.accumulated_token_usage.completion_tokens ?? 0,
cache_read_tokens:
info.metrics.accumulated_token_usage.cache_read_tokens ?? 0,
cache_write_tokens:
info.metrics.accumulated_token_usage.cache_write_tokens ?? 0,
context_window:
info.metrics.accumulated_token_usage.context_window ?? 0,
per_turn_token:
info.metrics.accumulated_token_usage.per_turn_token ?? 0,
}
: null,
}
: combineUsageMetrics(info.stats),
created_at: info.created_at,
updated_at: info.updated_at,
execution_status:
(info.execution_status as AppConversation["execution_status"]) ??
ExecutionStatus.IDLE,
sandbox_status: (info.sandbox_status as SandboxStatus | null) ?? null,
conversation_url: toConversationUrl(info.id),
session_api_key: getAgentServerClientOptions().apiKey ?? null,
sandbox_id: null,
workspace: {
working_dir: info.workspace?.working_dir ?? getAgentServerWorkingDir(),
},
public: false,
sub_conversation_ids: info.sub_conversation_ids ?? [],
};
}
export function toConversationPage(data: {
items: DirectConversationInfo[];
next_page_id?: string | null;
}): AppConversationPage {
return {
items: data.items
.filter((item) => !item.tags?.[LOCAL_PLANNER_PARENT_TAG_KEY])
.map(toAppConversation),
next_page_id: data.next_page_id ?? null,
};
}
type SettingsRecord = Record<string, unknown>;
interface AgentToolSpec {
name: string;
params: SettingsRecord;
}
type AgentSettingsPayload = SettingsRecord & {
llm?: SettingsRecord;
agent_context: SettingsRecord;
tools?: AgentToolSpec[];
};
interface LocalWorkspacePayload {
kind: "LocalWorkspace";
working_dir: string;
}
interface InitialMessagePayload {
role: "user";
content: Array<{ type: "text"; text: string }>;
run: true;
}
type ConversationSettingsPayload = SettingsRecord & {
workspace: LocalWorkspacePayload;
initial_message?: InitialMessagePayload;
};
export const ACP_SERVER_TAG_KEY = "acpserver";
export const CLIENT_SOURCE_TAG_KEY = "clientsource";
export const AGENT_CANVAS_SOURCE = "agentcanvas";
export const AUTOMATION_TRIGGER_TAG_KEY = "automationtrigger";
export const AUTOMATION_ID_TAG_KEY = "automationid";
export const AUTOMATION_NAME_TAG_KEY = "automationname";
export const AUTOMATION_RUN_ID_TAG_KEY = "automationrunid";
/**
* Tag keys stamped on conversations created by automation runs (see the SDK's
* `RemoteWorkspace.default_conversation_tags`). The presence of any of these
* marks a conversation as automation-born.
*/
export const AUTOMATION_TAG_KEYS: readonly string[] = [
AUTOMATION_TRIGGER_TAG_KEY,
AUTOMATION_ID_TAG_KEY,
AUTOMATION_NAME_TAG_KEY,
AUTOMATION_RUN_ID_TAG_KEY,
];
/**
* Conversation tag keys that must not appear as generic chips / hovercard
* rows. Each is either already surfaced by a first-class UI source or is
* internal routing data:
* - ``acpserver`` β ACP provider chip
* - ``clientsource`` β telemetry attribution
* - ``title`` β conversation card heading
* - git / repo / branch / workspace stamps β repo-branch metadata + directory
* footer / hovercard rows (``selected_repository``, ``selected_branch``,
* ``git_provider``, ``workspace.working_dir``)
* - the automation family (``automationtrigger`` / ``automationid`` /
* ``automationname`` / ``automationrunid``) β provenance the SDK stamps at
* creation; the conversation panel's automation filter is its first-class
* UI source. The tag surface is user organization data, so machine stamps
* stay out of it β and users can't edit or spoof automation classification.
* - ``localplannerparent`` β internal routing for the local planner; already
* surfaced by the hidden-from-list planner filter
*/
export const RESERVED_CONVERSATION_TAG_KEYS: ReadonlySet<string> = new Set([
ACP_SERVER_TAG_KEY,
CLIENT_SOURCE_TAG_KEY,
AUTOMATION_TRIGGER_TAG_KEY,
AUTOMATION_ID_TAG_KEY,
AUTOMATION_NAME_TAG_KEY,
AUTOMATION_RUN_ID_TAG_KEY,
"title",
"git_provider",
"repo_name",
"repo",
"repository",
"selected_branch",
"branch",
"archiveworkspacepath",
"workspace",
"working_dir",
LOCAL_PLANNER_PARENT_TAG_KEY,
]);
/**
* High-signal tag keys shown first in the chip row (before AβZ). Automations
* often stamp ``origin``; remaining free-form tags sort alphabetically.
*/
export const PRIORITY_CONVERSATION_TAG_KEYS: readonly string[] = ["origin"];
/**
* User-facing subset of a conversation's server-side tags: everything except
* {@link RESERVED_CONVERSATION_TAG_KEYS}, as stable ``[key, value]`` entries.
* Priority keys come first (in {@link PRIORITY_CONVERSATION_TAG_KEYS} order);
* the rest sort AβZ so chip order doesn't shuffle between refetches.
*/
export function getDisplayConversationTags(
tags: Record<string, string> | null | undefined,
): Array<[string, string]> {
if (!tags) {
return [];
}
// Both the reserved-key check and the priority lookup must see the same
// normalized key: a cloud backend can stamp ``Origin`` / `` origin``, and
// ranking those off the raw key would silently drop them out of first place.
const priorityRank = (key: string): number => {
const index = PRIORITY_CONVERSATION_TAG_KEYS.indexOf(
key.trim().toLowerCase(),
);
return index === -1 ? Number.POSITIVE_INFINITY : index;
};
return Object.entries(tags)
.filter(
([key, value]) =>
!RESERVED_CONVERSATION_TAG_KEYS.has(key.trim().toLowerCase()) &&
typeof value === "string" &&
// Bare tags (empty value) are displayable β chips/tooltips render
// the key. Whitespace-only values stay dropped (raw-write junk).
(value === "" || value.trim().length > 0),
)
.sort(([a], [b]) => {
const aRank = priorityRank(a);
const bRank = priorityRank(b);
if (aRank !== bRank) {
return aRank - bRank;
}
return a.localeCompare(b);
});
}
const FERNET_TOKEN_PREFIX = "gAAAAA";
const CONVERSATION_SETTINGS_METADATA_KEYS = new Set([
"schema_version",
"agent_settings",
"workspace",
"conversation_id",
"initial_message",
"plugins",
]);
function toRecord(value: unknown): SettingsRecord {
if (!value || typeof value !== "object" || Array.isArray(value)) {
return {};
}
return structuredClone(value as SettingsRecord);
}
function normalizeSecretString(value: unknown): string | undefined {
if (typeof value !== "string") {
return undefined;
}
const trimmed = value.trim();
return trimmed.length > 0 ? trimmed : undefined;
}
function buildNormalizedLlmSettings(value: unknown): SettingsRecord {
const llm = toRecord(value);
llm.model =
typeof llm.model === "string" && llm.model.trim().length > 0
? llm.model
: DEFAULT_SETTINGS.llm_model;
const apiKey = normalizeSecretString(llm.api_key);
if (apiKey) {
llm.api_key = apiKey;
} else {
delete llm.api_key;
}
const baseUrl = normalizeSecretString(llm.base_url);
if (baseUrl) {
llm.base_url = baseUrl;
} else {
delete llm.base_url;
}
if (isSubscriptionLlmConfig(llm)) {
llm.auth_type = LLM_AUTH_TYPE_SUBSCRIPTION;
llm.subscription_vendor = OPENAI_SUBSCRIPTION_VENDOR;
delete llm.api_key;
} else {
delete llm.auth_type;
delete llm.subscription_vendor;
}
return llm;
}
function isPlainRecord(value: unknown): value is Record<string, unknown> {
return !!value && typeof value === "object" && !Array.isArray(value);
}
function hasEncryptedString(value: unknown): boolean {
if (typeof value === "string") {
return value.startsWith(FERNET_TOKEN_PREFIX);
}
if (Array.isArray(value)) {
return value.some(hasEncryptedString);
}
if (isPlainRecord(value)) {
return Object.values(value).some(hasEncryptedString);
}
return false;
}
function hasEncryptedMcpSecrets(mcpConfig: unknown): boolean {
if (!isPlainRecord(mcpConfig)) {
return false;
}
return Object.values(mcpConfig).some(hasEncryptedString);
}
function getConversationConfirmationPolicy(
conversationSettings: SettingsRecord,
) {
if (conversationSettings.confirmation_mode !== true) {
return { kind: "NeverConfirm" };
}
if (conversationSettings.security_analyzer === "llm") {
return { kind: "ConfirmRisky", threshold: "HIGH", confirm_unknown: true };
}
return { kind: "AlwaysConfirm" };
}
function getConversationSecurityAnalyzer(conversationSettings: SettingsRecord) {
switch (conversationSettings.security_analyzer) {
case "llm":
return { kind: "LLMSecurityAnalyzer" };
case "pattern":
return { kind: "PatternSecurityAnalyzer" };
case "policy_rail":
return { kind: "PolicyRailSecurityAnalyzer" };
default:
return undefined;
}
}
function isToolRecord(
value: unknown,
): value is { name: string; params?: unknown } {
return (
!!value &&
typeof value === "object" &&
!Array.isArray(value) &&
typeof (value as { name?: unknown }).name === "string"
);
}
function shouldIncludeTool(name: string, agentSettings: SettingsRecord) {
if (name === BROWSER_TOOL_SET_NAME) {
return browserToolsEnabled() && isAgentServerToolAvailable(name);
}
if (name === TASK_TOOL_SET_NAME) {
return (
agentSettings.enable_sub_agents === true &&
isAgentServerToolAvailable(name)
);
}
return true;
}
function getAgentTools(agentSettings: SettingsRecord): AgentToolSpec[] {
const tools = new Map<string, AgentToolSpec>();
for (const name of DEFAULT_TOOL_NAMES) {
if (shouldIncludeTool(name, agentSettings)) {
tools.set(name, { name, params: {} });
}
}
for (const name of [BROWSER_TOOL_SET_NAME, TASK_TOOL_SET_NAME]) {
if (shouldIncludeTool(name, agentSettings)) {
tools.set(name, { name, params: {} });
}
}
const configuredTools = agentSettings.tools;
if (
Array.isArray(configuredTools) &&
configuredTools.every((tool) => isToolRecord(tool))
) {
for (const tool of configuredTools) {
if (shouldIncludeTool(tool.name, agentSettings)) {
tools.set(tool.name, {
name: tool.name,
params: toRecord(tool.params),
});
}
}
}
return Array.from(tools.values());
}
function buildInitialMessage(
query?: string,
conversationInstructions?: string,
): InitialMessagePayload | null {
const parts = [query?.trim(), conversationInstructions?.trim()].filter(
Boolean,
);
if (parts.length === 0) {
return null;
}
return {
role: "user",
content: [{ type: "text", text: parts.join("\n\n") }],
run: true,
};
}
/**
* Shape of a bundled skill entry passed to the agent-server SDK via
* `agent_context.skills`. Mirrors the SDK's `Skill` model fields that
* the server uses for trigger matching, activation, and system-prompt
* injection.
*/
interface BundledSkill {
name: string;
content: string;
trigger: { type: "keyword"; keywords: string[] } | null;
source: string;
description: string | null;
is_agentskills_format: true;
license?: string;
compatibility?: string;
}
/**
* Convert the bundled `SKILLS_CATALOG` entries into the SDK `Skill` JSON
* shape so the agent-server can perform trigger matching, skill activation,
* and system-prompt injection without cloning the extensions repo.
*
* The SDK discriminates triggers via `{ type: "keyword", keywords: [...] }`.
* Skills with no triggers get `trigger: null` (always-active / on-demand).
*/
function buildBundledSkills(): BundledSkill[] {
return SKILLS_CATALOG.map((entry) => {
const trigger: BundledSkill["trigger"] =
entry.triggers?.length > 0
? { type: "keyword", keywords: entry.triggers }
: null;
// Use the absolute path to the skill's SKILL.md so the Python
// agent-server can resolve bundled resources (scripts/, references/).
// Falls back to "public" in library builds where the path isn't known.
const source = __EXTENSIONS_SKILLS_DIR__
? `${__EXTENSIONS_SKILLS_DIR__}/${entry.name}/SKILL.md`
: "public";
return {
name: entry.name,
content: entry.content,
trigger,
source,
description: entry.description ?? null,
is_agentskills_format: true as const,
...(entry.license ? { license: entry.license } : {}),
...(entry.compatibility ? { compatibility: entry.compatibility } : {}),
};
});
}
function buildAgentContext(
agentSettings: SettingsRecord,
runtimeServicesInfo?: RuntimeServicesInfo | null,
enablement: SkillEnablement = {},
invokedCatalogSkill?: string,
): SettingsRecord {
const runtimeServicesSuffix =
buildRuntimeServicesSystemSuffix(runtimeServicesInfo);
const existingContext = toRecord(agentSettings.agent_context);
// Merge bundled public skills with any skills already present in the
// agent context (e.g. user-defined skills set via the settings API).
const existingSkills = Array.isArray(existingContext.skills)
? (existingContext.skills as SettingsRecord[])
: [];
const disabledSkills = enablement.disabledSkills ?? [];
const disabledSkillNames = new Set(disabledSkills);
const isSkillEnabled = buildSkillEnablementFilter(enablement);
// The bundled catalog is allow-listed, not deny-listed: it is a build-time
// snapshot of ~60 skills, so a deny-list puts every future addition into
// every system prompt (OpenHands#16302). Skills the agent context already
// carries are user-authored and stay opt-out. A skill the opening message
// invokes by name overrides both, for this conversation only.
const mergedSkills = [
...existingSkills.filter(
(skill) =>
typeof skill.name !== "string" || !disabledSkillNames.has(skill.name),
),
...buildBundledSkills().filter(
(skill) =>
skill.name === invokedCatalogSkill || isSkillEnabled(skill.name),
),
];
return {
...existingContext,
// Public skills are bundled at build time from the @openhands/extensions
// npm package and passed directly in agent_context.skills. Setting
// load_public_skills to false tells the agent-server SDK to skip its own
// extensions-repo clone β the frontend is the sole source of public
// skills now.
//
// Migration: the former VITE_LOAD_PUBLIC_SKILLS env var was removed
// because bundled skills have no clone latency. Users who previously set
// VITE_LOAD_PUBLIC_SKILLS=false to avoid clone delays no longer need it.
skills: mergedSkills,
load_public_skills: false,
load_user_skills: true,
load_project_skills: true,
// The backend also auto-loads user/project skills; the deny-list must
// travel with the context so those skills are excluded from the system
// prompt too. The allow-list has no counterpart to send: the backend
// loads no catalog skills of its own (`load_public_skills` is false).
disabled_skills: disabledSkills,
...(runtimeServicesSuffix
? { system_message_suffix: runtimeServicesSuffix }
: {}),
};
}
function isAcpAgent(settings: Settings): boolean {
const agentSettings = toRecord(settings.agent_settings);
return agentSettings.agent_kind === "acp";
}
function getAcpServerTag(settings: Settings): string | undefined {
const agentSettings = toRecord(settings.agent_settings);
const value = agentSettings.acp_server;
return typeof value === "string" && value.length > 0 ? value : undefined;
}
function resolveAcpCommand(agentSettings: SettingsRecord): unknown {
const cmd = agentSettings.acp_command;
const isEmpty = Array.isArray(cmd) && cmd.length === 0;
const noCommand = cmd === undefined;
if (!isEmpty && !noCommand) {
return cmd;
}
const serverKey =
typeof agentSettings.acp_server === "string"
? agentSettings.acp_server
: undefined;
const provider = getAcpProvider(serverKey);
return provider ? [...provider.default_command] : cmd;
}
function buildConfiguredAcpAgentSettings(
settings: Settings,
runtimeServicesInfo?: RuntimeServicesInfo | null,
query?: string,
): AgentSettingsPayload {
const agentSettings = toRecord(settings.agent_settings);
const payload: AgentSettingsPayload = {
agent_kind: "acp",
agent_context: buildAgentContext(
agentSettings,
runtimeServicesInfo,
toSkillEnablement(settings),
findInvokedCatalogSkill(query),
),
};
// TODO(#1019): set ``acp_isolate_data_dir: true`` here for a containerized
// backend so concurrent same-provider conversations don't race on a shared
// HOME. The SDK supports it (software-agent-sdk#3492), but the released
// ``@openhands/typescript-client`` (1.24.3) doesn't surface it on
// ``ACPAgentSettings`` yet, so sending it risks a validation error on older
// servers. Cloud grouping isolation is separate (agent-canvas#1016).
for (const key of ACP_SETTINGS_KEYS) {
// ``acp_model`` is resolved separately below so a saved ``null`` still
// falls back to the provider's default rather than being dropped.
if (key === "acp_model") continue;
// ``acp_env`` is deprecated β provider creds now route via ``request.secrets``.
if (key === "acp_env") continue;
const value =
key === "acp_command"
? resolveAcpCommand(agentSettings)
: agentSettings[key];
if (value !== undefined && value !== null) {
payload[key] = value;
}
}
// ``mcp_config`` is a shared field (not in ACP_SETTINGS_KEYS): forward it
// so the ACP subprocess connects to the configured MCP servers at session
// creation. Only include it when it actually carries servers β an empty or
// malformed value is dropped rather than sending ``mcp_config: {}``.
const mcpConfig = toRecord(agentSettings.mcp_config);
if (Object.keys(mcpConfig).length > 0) {
payload.mcp_config = mcpConfig;
}
// Saved settings may carry ``acp_model: null`` (existing users predating
// the default-model registry, or saved fields the agent-server stripped).
// Fall back to the *preferred* default (Vertex-safe for Gemini) so the
// conversation starts with whatever the Settings β Agent UI shows β without
// that, the form's displayed default would silently not take effect at
// runtime until the user re-saved the page.
const serverKey =
typeof agentSettings.acp_server === "string"
? agentSettings.acp_server
: undefined;
const effectiveModel = resolveEffectiveAcpModel({
configured: agentSettings.acp_model as string | null | undefined,
providerDefault: getAcpPreferredDefaultModel(serverKey),
});
if (effectiveModel) {
payload.acp_model = effectiveModel;
}
return payload;
}
function buildConfiguredOpenHandsAgentSettings(
settings: Settings,
runtimeServicesInfo?: RuntimeServicesInfo | null,
query?: string,
): AgentSettingsPayload {
const agentSettings = toRecord(settings.agent_settings);
const llm = buildNormalizedLlmSettings(agentSettings.llm);
// Stream assistant tokens (parity with ACP agents). The agent-server only
// emits StreamingDeltaEvents for SDK LLM agents when an LLM has stream=True.
llm.stream = true;
const mcpConfig = toRecord(agentSettings.mcp_config);
if (Object.keys(mcpConfig).length === 0) {
delete agentSettings.mcp_config;
}
delete agentSettings.acp_server;
for (const key of ACP_SETTINGS_KEYS) {
delete agentSettings[key];
}
// ``acp_env`` is no longer a forwarded ACP setting (provider creds ride the
// Secrets panel), but a legacy value may linger on persisted settings β
// scrub it so it never leaks onto the OpenHands payload.
delete agentSettings.acp_env;
return {
...agentSettings,
llm,
agent_context: buildAgentContext(
agentSettings,
runtimeServicesInfo,
toSkillEnablement(settings),
findInvokedCatalogSkill(query),
),
tools: getAgentTools(agentSettings),
};
}
function buildConfiguredAgentSettings(
settings: Settings,
runtimeServicesInfo?: RuntimeServicesInfo | null,
query?: string,
): AgentSettingsPayload {
return isAcpAgent(settings)
? buildConfiguredAcpAgentSettings(settings, runtimeServicesInfo, query)
: buildConfiguredOpenHandsAgentSettings(
settings,
runtimeServicesInfo,
query,
);
}
function buildConfiguredConversationSettings(options: {
settings: Settings;
query?: string;
conversationInstructions?: string;
plugins?: PluginSpec[];
workingDir?: string;
}): ConversationSettingsPayload {
const { settings, query, conversationInstructions, plugins, workingDir } =
options;
const conversationSettings = toRecord(settings.conversation_settings);
const initialMessage = buildInitialMessage(query, conversationInstructions);
CONVERSATION_SETTINGS_METADATA_KEYS.forEach(
(key) => delete conversationSettings[key],
);
const payload: ConversationSettingsPayload = {
...conversationSettings,
workspace: {
kind: "LocalWorkspace",
working_dir: workingDir ?? getAgentServerWorkingDir(),
},
...(initialMessage ? { initial_message: initialMessage } : {}),
...(plugins?.length
? {
plugins: plugins.map((plugin) => ({
source: plugin.source,
...(plugin.ref ? { ref: plugin.ref } : {}),
...(plugin.repo_path ? { repo_path: plugin.repo_path } : {}),
})),
}
: {}),
};
return payload;
}
interface LookupSecret {
kind: "LookupSecret";
url: string;
headers?: Record<string, string>;
description?: string;
}
/** A custom secret's public identity β name + optional description, no value. */
type CustomSecretInput = { name: string; description?: string };
type StartConversationPayloadBase = Record<string, unknown> & {
workspace: LocalWorkspacePayload;
confirmation_policy: SettingsRecord;
security_analyzer?: SettingsRecord;
initial_message?: InitialMessagePayload;
max_iterations: number;
stuck_detection: true;
autotitle: boolean;
title_llm_profile?: string;
worktree: boolean;
secrets_encrypted?: true;
conversation_id?: string;
parent_conversation_id?: string;
secrets?: Record<string, LookupSecret>;
tags?: Record<string, string>;
client_tools: ClientToolSpec[];
tool_module_qualnames?: Record<string, string>;
};
type AgentSettingsStartConversationPayload = StartConversationPayloadBase & {
// Omitted when launching via ``agent_profile_id`` β the two are mutually
// exclusive agent sources; the server resolves the profile server-side.
agent_settings?: AgentSettingsPayload;
agent_profile_id?: string;
agent?: never;
};
// The local planner bypasses agent assembly entirely and sends a raw agent
// spec, so neither of the two managed agent sources applies.
type RawAgentStartConversationPayload = StartConversationPayloadBase & {
agent: SettingsRecord;
agent_settings?: never;
agent_profile_id?: never;
parent_conversation_id?: string;
};
export interface StartConversationOptions {
settings: Settings;
query?: string;
conversationInstructions?: string;
plugins?: PluginSpec[];
conversationId?: string;
// Links the new conversation to an existing one as its child. The
// agent-server requires the parent to exist and to share this
// conversation's requested `workspace.working_dir` (software-agent-sdk
// #4188, agent-server >= 1.37.1); older servers ignore the field.
parentConversationId?: string;
workingDir?: string;
worktree?: boolean;
encryptedAgentSettings?: Record<string, SettingsValue>;
encryptedConversationSettings?: Record<string, SettingsValue>;
secretsEncrypted?: boolean;
customSecrets?: CustomSecretInput[];
// When set, the conversation launches from this AgentProfile (resolved
// server-side) instead of an inline ``agent_settings`` dump (#3727).
agentProfileId?: string;
agentProfileKind?: AgentKind;
titleLlmProfile?: string;
runtimeServicesInfo?: RuntimeServicesInfo | null;
workspaceHookConfig?: HookConfig | null;
}
/**
* Build the `request.secrets` map shared by the standard and planning
* conversation builders. Every saved secret rides as a LookupSecret the
* agent-server resolves from its own store at spawn time β `request.secrets` is
* the sole channel, uniform for ACP and non-ACP (agent-canvas#1039). For ACP the
* resolution runs off the event loop (software-agent-sdk#3510, >=1.25.0), so the
* loopback fetch can't deadlock. Returns `undefined` when there are no custom
* secrets so callers can omit the field.
*/
function buildCustomSecrets(
customSecrets: CustomSecretInput[] | undefined,
): Record<string, LookupSecret> | undefined {
if (!customSecrets?.length) return undefined;
const backend = getEffectiveLocalBackend();
const headers = backend ? buildAuthHeaders(backend) : {};
const secrets: Record<string, LookupSecret> = {};
for (const secret of customSecrets) {
const lookupSecret: LookupSecret = {
kind: "LookupSecret",
url: `/api/settings/secrets/${encodeURIComponent(secret.name)}`,
description: secret.description,
};
if (Object.keys(headers).length > 0) {
lookupSecret.headers = headers;
}
secrets[secret.name] = lookupSecret;
}
return secrets;
}
export function buildStartConversationRequest(
options: StartConversationOptions,
): AgentSettingsStartConversationPayload {
const sourceAgentSettings = options.encryptedAgentSettings
? { ...options.settings, agent_settings: options.encryptedAgentSettings }
: options.settings;
const acpMode = isAcpAgent(sourceAgentSettings);
const launchAgentKind = options.agentProfileId
? options.agentProfileKind
: acpMode
? "acp"
: "openhands";
const agentSettings = buildConfiguredAgentSettings(
sourceAgentSettings,
options.runtimeServicesInfo,
options.query,
);
const acpServerTag = acpMode
? getAcpServerTag(sourceAgentSettings)
: undefined;
const sourceConversationOptions = options.encryptedConversationSettings
? {
...options,
settings: {
...options.settings,
conversation_settings: options.encryptedConversationSettings,
},
}
: options;
const conversationSettings = buildConfiguredConversationSettings(
sourceConversationOptions,
);
const payload: AgentSettingsStartConversationPayload = {
// ``agent_profile_id`` and ``agent_settings`` are mutually exclusive agent
// sources; the profile path lets the server resolve the profile (#3727).
//
// Enrichment boundary: on the profile path the server rebuilds the agent
// purely from the stored profile fields, so the client-owned enrichments
// this adapter folds into ``agent_settings`` do NOT apply. The exec toolset
// (terminal/file_editor/task_tracker) and public-skill loading are the
// server/SDK's responsibility to restore on the profile path β tracked in
// software-agent-sdk#3967 (profile resolution must attach the default
// toolset + public skills, else a profile-launched OpenHands agent has only
// Finish/Think). The dev ``RUNTIME_SERVICES`` system-message suffix remains
// agent-settings-only; the Canvas UI tool is a top-level client tool and
// therefore works on both inline-agent and profile launch paths.
//
// Persistent memory is NOT on that boundary: ``load_memory`` is a global
// user preference, so the agent-server stamps the stored
// ``agent_settings.agent_context.load_memory`` onto the profile-resolved
// agent the same way it already applies the global ``mcp_config``. The
// toggle therefore applies to both launch paths, and the client must not
// re-send it here (``agent_profile_id`` and ``agent_settings`` are
// mutually exclusive).
...(options.agentProfileId
? { agent_profile_id: options.agentProfileId }
: { agent_settings: agentSettings }),
workspace: conversationSettings.workspace,
// The agent-server caches each client tool's schema per tool *name* for the
// life of the process and rejects a re-registration with a different schema
// (`ClientToolSchemaConflictError`). Editing either schema below therefore
// requires restarting a long-running dev agent-server before new
// conversations can start.
client_tools:
launchAgentKind === "openhands"
? [CANVAS_UI_CLIENT_TOOL, LAUNCH_CHILD_CONVERSATION_CLIENT_TOOL]
: [],
confirmation_policy:
getConversationConfirmationPolicy(conversationSettings),
max_iterations: resolveMaxIterations(conversationSettings.max_iterations),
stuck_detection: true,
autotitle: true,
...(options.titleLlmProfile
? { title_llm_profile: options.titleLlmProfile }
: {}),
worktree: options.worktree ?? true,
};
// Stamp the client source tag so the agent-server can attribute the
// conversation to Canvas in telemetry (conversation_source = "canvas").
// A profile launch resolves the ACP server server-side, so don't stamp the
// tag from current settings (it may not match the launched profile).
if (!options.agentProfileId && acpServerTag) {
payload.tags = {
[ACP_SERVER_TAG_KEY]: acpServerTag,
[CLIENT_SOURCE_TAG_KEY]: AGENT_CANVAS_SOURCE,
};
} else {
payload.tags = { [CLIENT_SOURCE_TAG_KEY]: AGENT_CANVAS_SOURCE };
}
// ``secrets_encrypted`` makes the agent-server decrypt request secrets at
// conversation start. Non-ACP conversations need it for encrypted LLM keys.
// ACP normally carries provider credentials as LookupSecrets, so avoid
// forcing a cipher on fresh ACP-only backends. The exception is MCP:
// encrypted settings round-trip mcp_config secrets as Fernet tokens,
// and ACP forwards mcp_config directly to the subprocess.
if (
!options.agentProfileId &&
options.secretsEncrypted &&
(!acpMode || hasEncryptedMcpSecrets(agentSettings.mcp_config))
) {
payload.secrets_encrypted = true;
}
if (options.conversationId) {
payload.conversation_id = options.conversationId;
}
if (options.parentConversationId) {
payload.parent_conversation_id = options.parentConversationId;
}
const securityAnalyzer =
getConversationSecurityAnalyzer(conversationSettings);
if (securityAnalyzer) {
payload.security_analyzer = securityAnalyzer;
}
if (conversationSettings.initial_message) {
payload.initial_message = conversationSettings.initial_message;
}
if (conversationSettings.plugins) {
payload.plugins = conversationSettings.plugins;
}
if (conversationSettings.hook_config) {
payload.hook_config = conversationSettings.hook_config;
} else if (options.workspaceHookConfig) {
payload.hook_config = options.workspaceHookConfig;
}
const toolModuleQualnames = {
...((conversationSettings.tool_module_qualnames as
| Record<string, string>
| undefined) ?? {}),
};
delete toolModuleQualnames[LEGACY_CANVAS_UI_TOOL_NAME];
delete toolModuleQualnames[CANVAS_UI_CLIENT_TOOL_NAME];
delete toolModuleQualnames[LAUNCH_CHILD_CONVERSATION_TOOL_NAME];
if (Object.keys(toolModuleQualnames).length > 0) {
payload.tool_module_qualnames = toolModuleQualnames;
}
if (conversationSettings.agent_definitions) {
payload.agent_definitions = conversationSettings.agent_definitions;
}
const secrets = buildCustomSecrets(options.customSecrets);
if (secrets) {
payload.secrets = secrets;
}
return payload;
}
export function buildStartPlanningConversationRequest(options: {
encryptedAgentSettings: Record<string, SettingsValue>;
workingDir: string;
parentConversationId: string;
initialMessage?: string;
secretsEncrypted?: boolean;
customSecrets?: CustomSecretInput[];
/** Mirrors the parent's configured `conversation_settings.max_iterations` β see DEFAULT_MAX_ITERATIONS. */
maxIterations?: number;
/** Mirrors the code agent's skill filtering β see buildConfiguredOpenHandsAgentSettings. */
skillEnablement?: SkillEnablement;
}): RawAgentStartConversationPayload {
const agentSettings = toRecord(options.encryptedAgentSettings);
const llm = buildNormalizedLlmSettings(agentSettings.llm);
// Stream assistant tokens, matching the code agent (see
// buildConfiguredOpenHandsAgentSettings) β otherwise the agent-server never
// emits StreamingDeltaEvents for the planner and its replies would appear
// all at once instead of token-by-token.
llm.stream = true;
const planPath = buildPlanPath(options.workingDir);
// Put the planner's directive + boundaries in the system prompt (matching the
// OpenHands app-server's PLANNING_AGENT_INSTRUCTION), preserving any suffix
// buildAgentContext already set (e.g. the runtime-services block).
const agentContext = buildAgentContext(
agentSettings,
undefined,
options.skillEnablement,
);
const existingSuffix = agentContext.system_message_suffix;
agentContext.system_message_suffix =
typeof existingSuffix === "string"
? `${PLANNING_AGENT_INSTRUCTION}\n\n${existingSuffix}`
: PLANNING_AGENT_INSTRUCTION;
// Idle planner: "Create a Plan" only switches to plan mode and provisions
// this conversation; the user sends the first message themselves, so nothing
// is injected into the chat. An explicit initialMessage is still honored.
const initialMessage = buildInitialMessage(options.initialMessage);
const payload: RawAgentStartConversationPayload = {
agent: {
kind: "Agent",
llm,
tools: [
{ name: "glob", params: {} },
{ name: "grep", params: {} },
{
name: PLANNING_FILE_EDITOR_TOOL_NAME,
params: { plan_path: planPath },
},
],
system_prompt_filename: PLANNING_SYSTEM_PROMPT_FILENAME,
system_prompt_kwargs: { plan_structure: PLAN_STRUCTURE_TEXT },
// agent_context (skills + project context) is intentionally included so
// the planner shares the code agent's project context. This goes beyond
// the bare SDK `get_planning_agent()` preset (which sets no context); it
// mirrors how the frontend builds every agent, so the local planner is
// not context-starved relative to the code agent.
agent_context: agentContext,
// Mirror the SDK planning preset's condenser (openhands-tools preset
// `get_planning_condenser`): a larger rolling window and more pinned
// initial context than the default, with its own usage_id so its
// summarization LLM calls are attributed separately. The planning
// conversation is sent as a raw agent spec (it bypasses the agent-server's
// default agent assembly), so without this it would never condense β
// diverging from the canonical planning agent on long sessions.
condenser: {
kind: "LLMSummarizingCondenser",
llm: { ...llm, usage_id: "planning_condenser" },
max_size: 100,
keep_first: 6,
},
},
workspace: {
kind: "LocalWorkspace",
working_dir: options.workingDir,
},
// No Canvas UI client tool: the planner's only output is PLAN.md, which the
// Planner tab surfaces on its own via PlanningFileEditorObservation. Handing
// it the panel-control tool would only let it navigate the right-side panel
// away from the plan the user is reading.
client_tools: [],
confirmation_policy: { kind: "NeverConfirm" },
max_iterations: options.maxIterations ?? DEFAULT_MAX_ITERATIONS,
stuck_detection: true,
autotitle: false,
worktree: false,
// Two independent links to the parent, for two different jobs:
//
// - ``parent_conversation_id`` is the server-owned relationship (SDK
// #4188, agent-server >= 1.37.1). The parent's ``sub_conversation_ids``
// is derived from it, so the planner is recoverable from the server on
// any browser and after storage loss. Older agent-servers ignore the
// field (``StartConversationRequest`` does not forbid extras), which is
// why the client-side metadata hint is still written as a fallback.
// - The tag is what hides the helper from the conversation list; it is
// also the only marker on agent-servers too old for the parent link.
parent_conversation_id: options.parentConversationId,
tags: { [LOCAL_PLANNER_PARENT_TAG_KEY]: options.parentConversationId },
...(initialMessage ? { initial_message: initialMessage } : {}),
};
if (options.secretsEncrypted) {
payload.secrets_encrypted = true;
}
const secrets = buildCustomSecrets(options.customSecrets);
if (secrets) {
payload.secrets = secrets;
}
return payload;
}
/**
* Resolve the encrypted LLM config for a named LLM profile, so a planner can
* run the parent conversation's *current* model (`active_profile`, tracking
* `/model` and `SwitchLLMTool`) rather than a stale launch-time value.
* Returns `null` β caller falls back further β if unknown or lookup fails.
*/
async function resolveLlmProfileSettings(
profileName: string,
): Promise<SettingsRecord | null> {
try {
const { default: ProfilesService } =
await import("./profiles-service/profiles-service.api");
// ``encrypted`` matches ``secrets_encrypted`` on the payload: the
// agent-server decrypts with the same cipher it encrypted with.
const detail = await ProfilesService.getProfile(profileName, "encrypted");
return isPlainRecord(detail.config) ? detail.config : null;
} catch (error) {
console.warn(
`Falling back: could not resolve LLM profile ${profileName}`,
error,
);
return null;
}
}
/**
* Resolve the encrypted LLM config the given AgentProfile launches with, as a
* fallback for `resolveLlmProfileSettings`. AgentProfiles hold a reference
* (`llm_profile_ref`), not credentials, so this is a two-hop lookup: profile
* id -> llm profile name -> encrypted LLM config. Returns `null` β caller
* falls back to global settings β for an unknown/ACP/dangling-ref profile or
* a failed lookup, none of which should block plan creation outright.
*/
async function resolveAgentProfileLlmSettings(
agentProfileId: string,
): Promise<SettingsRecord | null> {
try {
const { default: AgentProfilesService } =
await import("./agent-profiles-service/agent-profiles-service.api");
const { profiles } = await AgentProfilesService.listProfiles();
const summary = profiles.find(
(profile) => profile.id === agentProfileId && profile.llm_profile_ref,
);
if (!summary?.llm_profile_ref) return null;
return await resolveLlmProfileSettings(summary.llm_profile_ref);
} catch (error) {
console.warn(
`Falling back to global agent settings: could not resolve the LLM for agent profile ${agentProfileId}`,
error,
);
return null;
}
}
export async function buildStartPlanningConversationRequestWithEncryptedSettings(options: {
workingDir: string;
parentConversationId: string;
/**
* The parent conversation's current LLM profile (`AppConversation.active_profile`,
* tracking `/model` and `SwitchLLMTool`). Takes priority over
* `parentAgentProfileId` so a model switch on the parent carries over to a
* planner created afterward, without a *different* conversation's global
* profile activation repointing it.
*/
parentActiveProfileName?: string | null;
/**
* `launched_agent_profile.agent_profile_id` of the parent, when started
* from an AgentProfile. Fallback for when `parentActiveProfileName` can't
* be resolved (e.g. an ACP parent, whose `active_profile` is a stale
* launch-time snapshot rather than anything the ACP agent itself runs).
*/
parentAgentProfileId?: string | null;
initialMessage?: string;
}): Promise<RawAgentStartConversationPayload> {
const { SecretsService } = await import("./secrets-service");
const [settingsResult, customSecrets] = await Promise.all([
SettingsService.getSettingsForConversation(),
SecretsService.getSecrets(),
]);
const profileLlm =
(options.parentActiveProfileName
? await resolveLlmProfileSettings(options.parentActiveProfileName)
: null) ??
(options.parentAgentProfileId
? await resolveAgentProfileLlmSettings(options.parentAgentProfileId)
: null);
const encryptedAgentSettings: Record<string, SettingsValue> = profileLlm
? { ...settingsResult.agentSettings, llm: profileLlm as SettingsValue }
: settingsResult.agentSettings;
await assertSubscriptionAuthReady(encryptedAgentSettings);
// Mirror the code agent's configured cap (see DEFAULT_MAX_ITERATIONS) rather
// than hardcoding a different value the planner could silently stop against.
const maxIterations = resolveMaxIterations(
settingsResult.conversationSettings.max_iterations,
);
return buildStartPlanningConversationRequest({
...options,
encryptedAgentSettings,
secretsEncrypted: settingsResult.secretsEncrypted,
customSecrets,
maxIterations,
skillEnablement: settingsResult.skillEnablement,
});
}
export const SUBSCRIPTION_LOGIN_REQUIRED_ERROR =
"Connect your ChatGPT subscription before starting a conversation with this LLM profile.";
/**
* Throws if a ChatGPT subscription LLM profile is not connected.
* Called before conversation creation and LLM profile switch only β not on
* subsequent message sends or conversation resume. The agent-server must handle
* mid-conversation token expiry gracefully.
*/
export async function assertSubscriptionAuthReady(
agentSettings: Record<string, unknown>,
): Promise<void> {
const llm = toRecord(agentSettings.llm);
if (!isSubscriptionLlmConfig(llm)) return;
const status = await LLMSubscriptionService.getOpenAIStatus();
if (!status.connected) {
throw new Error(SUBSCRIPTION_LOGIN_REQUIRED_ERROR);
}
}
export async function buildStartConversationRequestWithEncryptedSettings(options: {
settings: Settings;
query?: string;
conversationInstructions?: string;
plugins?: PluginSpec[];
conversationId?: string;
parentConversationId?: string;
workingDir?: string;
/** Workspace root for the hooks lookup, not the per-conversation `workingDir` (#16907). */
hooksProjectDir?: string;
worktree?: boolean;
agentProfileId?: string;
agentProfileKind?: AgentKind;
titleLlmProfile?: string;
}): Promise<Record<string, unknown>> {
const [{ SecretsService }, { default: HooksService }] = await Promise.all([
import("./secrets-service"),
import("./hooks-service"),
]);
const [
settingsResult,
customSecrets,
runtimeServicesInfo,
workspaceHookConfig,
] = await Promise.all([
SettingsService.getSettingsForConversation(),
SecretsService.getSecrets(),
fetchBackendRuntimeServicesInfo(),
HooksService.loadWorkspaceHooks(options.hooksProjectDir),
]);
const { agentSettings, conversationSettings, secretsEncrypted } =
settingsResult;
// A profile launch resolves the LLM server-side, so the current-settings
// subscription check doesn't apply (and can't see the profile's LLM).
if (!options.agentProfileId) {
await assertSubscriptionAuthReady(agentSettings);
}
return buildStartConversationRequest({
...options,
encryptedAgentSettings: agentSettings,
encryptedConversationSettings: conversationSettings,
secretsEncrypted,
customSecrets,
runtimeServicesInfo,
workspaceHookConfig,
});
}
export function emptyHooksResponse(): GetHooksResponse {
return { hooks: [] };
}
|