File size: 60,309 Bytes
064bfd6 | 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 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 | import { feature } from 'bun:bundle'
import type {
ContentBlockParam,
ToolResultBlockParam,
ToolUseBlock,
} from '@anthropic-ai/sdk/resources/index.mjs'
import {
type AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
logEvent,
} from 'src/services/analytics/index.js'
import {
extractMcpToolDetails,
extractSkillName,
extractToolInputForTelemetry,
getFileExtensionForAnalytics,
getFileExtensionsFromBashCommand,
isToolDetailsLoggingEnabled,
mcpToolDetailsForAnalytics,
sanitizeToolNameForAnalytics,
} from 'src/services/analytics/metadata.js'
import {
addToToolDuration,
getCodeEditToolDecisionCounter,
getStatsStore,
} from '../../bootstrap/state.js'
import {
buildCodeEditToolAttributes,
isCodeEditingTool,
} from '../../hooks/toolPermission/permissionLogging.js'
import type { CanUseToolFn } from '../../hooks/useCanUseTool.js'
import {
findToolByName,
type Tool,
type ToolProgress,
type ToolProgressData,
type ToolUseContext,
} from '../../Tool.js'
import type { BashToolInput } from '../../tools/BashTool/BashTool.js'
import { startSpeculativeClassifierCheck } from '../../tools/BashTool/bashPermissions.js'
import { BASH_TOOL_NAME } from '../../tools/BashTool/toolName.js'
import { FILE_EDIT_TOOL_NAME } from '../../tools/FileEditTool/constants.js'
import { FILE_READ_TOOL_NAME } from '../../tools/FileReadTool/prompt.js'
import { FILE_WRITE_TOOL_NAME } from '../../tools/FileWriteTool/prompt.js'
import { NOTEBOOK_EDIT_TOOL_NAME } from '../../tools/NotebookEditTool/constants.js'
import { POWERSHELL_TOOL_NAME } from '../../tools/PowerShellTool/toolName.js'
import { parseGitCommitId } from '../../tools/shared/gitOperationTracking.js'
import {
isDeferredTool,
TOOL_SEARCH_TOOL_NAME,
} from '../../tools/ToolSearchTool/prompt.js'
import { getAllBaseTools } from '../../tools.js'
import type { HookProgress } from '../../types/hooks.js'
import type {
AssistantMessage,
AttachmentMessage,
Message,
ProgressMessage,
StopHookInfo,
} from '../../types/message.js'
import { count } from '../../utils/array.js'
import { createAttachmentMessage } from '../../utils/attachments.js'
import { logForDebugging } from '../../utils/debug.js'
import {
AbortError,
errorMessage,
getErrnoCode,
ShellError,
TelemetrySafeError_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
} from '../../utils/errors.js'
import { executePermissionDeniedHooks } from '../../utils/hooks.js'
import { logError } from '../../utils/log.js'
import {
CANCEL_MESSAGE,
createProgressMessage,
createStopHookSummaryMessage,
createToolResultStopMessage,
createUserMessage,
withMemoryCorrectionHint,
} from '../../utils/messages.js'
import type {
PermissionDecisionReason,
PermissionResult,
} from '../../utils/permissions/PermissionResult.js'
import {
startSessionActivity,
stopSessionActivity,
} from '../../utils/sessionActivity.js'
import { jsonStringify } from '../../utils/slowOperations.js'
import { Stream } from '../../utils/stream.js'
import { logOTelEvent } from '../../utils/telemetry/events.js'
import {
addToolContentEvent,
endToolBlockedOnUserSpan,
endToolExecutionSpan,
endToolSpan,
isBetaTracingEnabled,
startToolBlockedOnUserSpan,
startToolExecutionSpan,
startToolSpan,
} from '../../utils/telemetry/sessionTracing.js'
import {
formatError,
formatZodValidationError,
} from '../../utils/toolErrors.js'
import {
processPreMappedToolResultBlock,
processToolResultBlock,
} from '../../utils/toolResultStorage.js'
import {
extractDiscoveredToolNames,
isToolSearchEnabledOptimistic,
isToolSearchToolAvailable,
} from '../../utils/toolSearch.js'
import {
McpAuthError,
McpToolCallError_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
} from '../mcp/client.js'
import { mcpInfoFromString } from '../mcp/mcpStringUtils.js'
import { normalizeNameForMCP } from '../mcp/normalization.js'
import type { MCPServerConnection } from '../mcp/types.js'
import {
getLoggingSafeMcpBaseUrl,
getMcpServerScopeFromToolName,
isMcpTool,
} from '../mcp/utils.js'
import {
resolveHookPermissionDecision,
runPostToolUseFailureHooks,
runPostToolUseHooks,
runPreToolUseHooks,
} from './toolHooks.js'
/** Minimum total hook duration (ms) to show inline timing summary */
export const HOOK_TIMING_DISPLAY_THRESHOLD_MS = 500
/** Log a debug warning when hooks/permission-decision block for this long. Matches
* BashTool's PROGRESS_THRESHOLD_MS — the collapsed view feels stuck past this. */
const SLOW_PHASE_LOG_THRESHOLD_MS = 2000
/**
* Classify a tool execution error into a telemetry-safe string.
*
* In minified/external builds, `error.constructor.name` is mangled into
* short identifiers like "nJT" or "Chq" — useless for diagnostics.
* This function extracts structured, telemetry-safe information instead:
* - TelemetrySafeError: use its telemetryMessage (already vetted)
* - Node.js fs errors: log the error code (ENOENT, EACCES, etc.)
* - Known error types: use their unminified name
* - Fallback: "Error" (better than a mangled 3-char identifier)
*/
export function classifyToolError(error: unknown): string {
if (
error instanceof TelemetrySafeError_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS
) {
return error.telemetryMessage.slice(0, 200)
}
if (error instanceof Error) {
// Node.js filesystem errors have a `code` property (ENOENT, EACCES, etc.)
// These are safe to log and much more useful than the constructor name.
const errnoCode = getErrnoCode(error)
if (typeof errnoCode === 'string') {
return `Error:${errnoCode}`
}
// ShellError, ImageSizeError, etc. have stable `.name` properties
// that survive minification (they're set in the constructor).
if (error.name && error.name !== 'Error' && error.name.length > 3) {
return error.name.slice(0, 60)
}
return 'Error'
}
return 'UnknownError'
}
/**
* Map a rule's origin to the documented OTel `source` vocabulary, matching
* the interactive path's semantics (permissionLogging.ts:81): session-scoped
* grants are temporary, on-disk grants are permanent, and user-authored
* denies are user_reject regardless of persistence. Everything the user
* didn't write (cliArg, policySettings, projectSettings, flagSettings) is
* config.
*/
function ruleSourceToOTelSource(
ruleSource: string,
behavior: 'allow' | 'deny',
): string {
switch (ruleSource) {
case 'session':
return behavior === 'allow' ? 'user_temporary' : 'user_reject'
case 'localSettings':
case 'userSettings':
return behavior === 'allow' ? 'user_permanent' : 'user_reject'
default:
return 'config'
}
}
/**
* Map a PermissionDecisionReason to the OTel `source` label for the
* non-interactive tool_decision path, staying within the documented
* vocabulary (config, hook, user_permanent, user_temporary, user_reject).
*
* For permissionPromptTool, the SDK host may set decisionClassification on
* the PermissionResult to tell us exactly what happened (once vs always vs
* cache hit — the host knows, we can't tell from {behavior:'allow'} alone).
* Without it, we fall back conservatively: allow → user_temporary,
* deny → user_reject.
*/
function decisionReasonToOTelSource(
reason: PermissionDecisionReason | undefined,
behavior: 'allow' | 'deny',
): string {
if (!reason) {
return 'config'
}
switch (reason.type) {
case 'permissionPromptTool': {
// toolResult is typed `unknown` on PermissionDecisionReason but carries
// the parsed Output from PermissionPromptToolResultSchema. Narrow at
// runtime rather than widen the cross-file type.
const toolResult = reason.toolResult as
| { decisionClassification?: string }
| undefined
const classified = toolResult?.decisionClassification
if (
classified === 'user_temporary' ||
classified === 'user_permanent' ||
classified === 'user_reject'
) {
return classified
}
return behavior === 'allow' ? 'user_temporary' : 'user_reject'
}
case 'rule':
return ruleSourceToOTelSource(reason.rule.source, behavior)
case 'hook':
return 'hook'
case 'mode':
case 'classifier':
case 'subcommandResults':
case 'asyncAgent':
case 'sandboxOverride':
case 'workingDir':
case 'safetyCheck':
case 'other':
return 'config'
default: {
const _exhaustive: never = reason
return 'config'
}
}
}
function getNextImagePasteId(messages: Message[]): number {
let maxId = 0
for (const message of messages) {
if (message.type === 'user' && message.imagePasteIds) {
for (const id of message.imagePasteIds) {
if (id > maxId) maxId = id
}
}
}
return maxId + 1
}
export type MessageUpdateLazy<M extends Message = Message> = {
message: M
contextModifier?: {
toolUseID: string
modifyContext: (context: ToolUseContext) => ToolUseContext
}
}
export type McpServerType =
| 'stdio'
| 'sse'
| 'http'
| 'ws'
| 'sdk'
| 'sse-ide'
| 'ws-ide'
| 'claudeai-proxy'
| undefined
function findMcpServerConnection(
toolName: string,
mcpClients: MCPServerConnection[],
): MCPServerConnection | undefined {
if (!toolName.startsWith('mcp__')) {
return undefined
}
const mcpInfo = mcpInfoFromString(toolName)
if (!mcpInfo) {
return undefined
}
// mcpInfo.serverName is normalized (e.g., "claude_ai_Slack"), but client.name
// is the original name (e.g., "claude.ai Slack"). Normalize both for comparison.
return mcpClients.find(
client => normalizeNameForMCP(client.name) === mcpInfo.serverName,
)
}
/**
* Extracts the MCP server transport type from a tool name.
* Returns the server type (stdio, sse, http, ws, sdk, etc.) for MCP tools,
* or undefined for built-in tools.
*/
function getMcpServerType(
toolName: string,
mcpClients: MCPServerConnection[],
): McpServerType {
const serverConnection = findMcpServerConnection(toolName, mcpClients)
if (serverConnection?.type === 'connected') {
// Handle stdio configs where type field is optional (defaults to 'stdio')
return serverConnection.config.type ?? 'stdio'
}
return undefined
}
/**
* Extracts the MCP server base URL for a tool by looking up its server connection.
* Returns undefined for stdio servers, built-in tools, or if the server is not connected.
*/
function getMcpServerBaseUrlFromToolName(
toolName: string,
mcpClients: MCPServerConnection[],
): string | undefined {
const serverConnection = findMcpServerConnection(toolName, mcpClients)
if (serverConnection?.type !== 'connected') {
return undefined
}
return getLoggingSafeMcpBaseUrl(serverConnection.config)
}
export async function* runToolUse(
toolUse: ToolUseBlock,
assistantMessage: AssistantMessage,
canUseTool: CanUseToolFn,
toolUseContext: ToolUseContext,
): AsyncGenerator<MessageUpdateLazy, void> {
const toolName = toolUse.name
// First try to find in the available tools (what the model sees)
let tool = findToolByName(toolUseContext.options.tools, toolName)
// If not found, check if it's a deprecated tool being called by alias
// (e.g., old transcripts calling "KillShell" which is now an alias for "TaskStop")
// Only fall back for tools where the name matches an alias, not the primary name
if (!tool) {
const fallbackTool = findToolByName(getAllBaseTools(), toolName)
// Only use fallback if the tool was found via alias (deprecated name)
if (fallbackTool && fallbackTool.aliases?.includes(toolName)) {
tool = fallbackTool
}
}
const messageId = assistantMessage.message.id
const requestId = assistantMessage.requestId
const mcpServerType = getMcpServerType(
toolName,
toolUseContext.options.mcpClients,
)
const mcpServerBaseUrl = getMcpServerBaseUrlFromToolName(
toolName,
toolUseContext.options.mcpClients,
)
// Check if the tool exists
if (!tool) {
const sanitizedToolName = sanitizeToolNameForAnalytics(toolName)
logForDebugging(`Unknown tool ${toolName}: ${toolUse.id}`)
logEvent('tengu_tool_use_error', {
error:
`No such tool available: ${sanitizedToolName}` as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
toolName: sanitizedToolName,
toolUseID:
toolUse.id as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
isMcp: toolName.startsWith('mcp__'),
queryChainId: toolUseContext.queryTracking
?.chainId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
queryDepth: toolUseContext.queryTracking?.depth,
...(mcpServerType && {
mcpServerType:
mcpServerType as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...(mcpServerBaseUrl && {
mcpServerBaseUrl:
mcpServerBaseUrl as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...(requestId && {
requestId:
requestId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...mcpToolDetailsForAnalytics(toolName, mcpServerType, mcpServerBaseUrl),
})
yield {
message: createUserMessage({
content: [
{
type: 'tool_result',
content: `<tool_use_error>Error: No such tool available: ${toolName}</tool_use_error>`,
is_error: true,
tool_use_id: toolUse.id,
},
],
toolUseResult: `Error: No such tool available: ${toolName}`,
sourceToolAssistantUUID: assistantMessage.uuid,
}),
}
return
}
const toolInput = toolUse.input as { [key: string]: string }
try {
if (toolUseContext.abortController.signal.aborted) {
logEvent('tengu_tool_use_cancelled', {
toolName: sanitizeToolNameForAnalytics(tool.name),
toolUseID:
toolUse.id as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
isMcp: tool.isMcp ?? false,
queryChainId: toolUseContext.queryTracking
?.chainId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
queryDepth: toolUseContext.queryTracking?.depth,
...(mcpServerType && {
mcpServerType:
mcpServerType as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...(mcpServerBaseUrl && {
mcpServerBaseUrl:
mcpServerBaseUrl as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...(requestId && {
requestId:
requestId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...mcpToolDetailsForAnalytics(
tool.name,
mcpServerType,
mcpServerBaseUrl,
),
})
const content = createToolResultStopMessage(toolUse.id)
content.content = withMemoryCorrectionHint(CANCEL_MESSAGE)
yield {
message: createUserMessage({
content: [content],
toolUseResult: CANCEL_MESSAGE,
sourceToolAssistantUUID: assistantMessage.uuid,
}),
}
return
}
for await (const update of streamedCheckPermissionsAndCallTool(
tool,
toolUse.id,
toolInput,
toolUseContext,
canUseTool,
assistantMessage,
messageId,
requestId,
mcpServerType,
mcpServerBaseUrl,
)) {
yield update
}
} catch (error) {
logError(error)
const errorMessage = error instanceof Error ? error.message : String(error)
const toolInfo = tool ? ` (${tool.name})` : ''
const detailedError = `Error calling tool${toolInfo}: ${errorMessage}`
yield {
message: createUserMessage({
content: [
{
type: 'tool_result',
content: `<tool_use_error>${detailedError}</tool_use_error>`,
is_error: true,
tool_use_id: toolUse.id,
},
],
toolUseResult: detailedError,
sourceToolAssistantUUID: assistantMessage.uuid,
}),
}
}
}
function streamedCheckPermissionsAndCallTool(
tool: Tool,
toolUseID: string,
input: { [key: string]: boolean | string | number },
toolUseContext: ToolUseContext,
canUseTool: CanUseToolFn,
assistantMessage: AssistantMessage,
messageId: string,
requestId: string | undefined,
mcpServerType: McpServerType,
mcpServerBaseUrl: ReturnType<typeof getLoggingSafeMcpBaseUrl>,
): AsyncIterable<MessageUpdateLazy> {
// This is a bit of a hack to get progress events and final results
// into a single async iterable.
//
// Ideally the progress reporting and tool call reporting would
// be via separate mechanisms.
const stream = new Stream<MessageUpdateLazy>()
checkPermissionsAndCallTool(
tool,
toolUseID,
input,
toolUseContext,
canUseTool,
assistantMessage,
messageId,
requestId,
mcpServerType,
mcpServerBaseUrl,
progress => {
logEvent('tengu_tool_use_progress', {
messageID:
messageId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
toolName: sanitizeToolNameForAnalytics(tool.name),
isMcp: tool.isMcp ?? false,
queryChainId: toolUseContext.queryTracking
?.chainId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
queryDepth: toolUseContext.queryTracking?.depth,
...(mcpServerType && {
mcpServerType:
mcpServerType as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...(mcpServerBaseUrl && {
mcpServerBaseUrl:
mcpServerBaseUrl as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...(requestId && {
requestId:
requestId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...mcpToolDetailsForAnalytics(
tool.name,
mcpServerType,
mcpServerBaseUrl,
),
})
stream.enqueue({
message: createProgressMessage({
toolUseID: progress.toolUseID,
parentToolUseID: toolUseID,
data: progress.data,
}),
})
},
)
.then(results => {
for (const result of results) {
stream.enqueue(result)
}
})
.catch(error => {
stream.error(error)
})
.finally(() => {
stream.done()
})
return stream
}
/**
* Appended to Zod errors when a deferred tool wasn't in the discovered-tool
* set — re-runs the claude.ts schema-filter scan dispatch-time to detect the
* mismatch. The raw Zod error ("expected array, got string") doesn't tell the
* model to re-load the tool; this hint does. Null if the schema was sent.
*/
export function buildSchemaNotSentHint(
tool: Tool,
messages: Message[],
tools: readonly { name: string }[],
): string | null {
// Optimistic gating — reconstructing claude.ts's full useToolSearch
// computation is fragile. These two gates prevent pointing at a ToolSearch
// that isn't callable; occasional misfires (Haiku, tst-auto below threshold)
// cost one extra round-trip on an already-failing path.
if (!isToolSearchEnabledOptimistic()) return null
if (!isToolSearchToolAvailable(tools)) return null
if (!isDeferredTool(tool)) return null
const discovered = extractDiscoveredToolNames(messages)
if (discovered.has(tool.name)) return null
return (
`\n\nThis tool's schema was not sent to the API — it was not in the discovered-tool set derived from message history. ` +
`Without the schema in your prompt, typed parameters (arrays, numbers, booleans) get emitted as strings and the client-side parser rejects them. ` +
`Load the tool first: call ${TOOL_SEARCH_TOOL_NAME} with query "select:${tool.name}", then retry this call.`
)
}
async function checkPermissionsAndCallTool(
tool: Tool,
toolUseID: string,
input: { [key: string]: boolean | string | number },
toolUseContext: ToolUseContext,
canUseTool: CanUseToolFn,
assistantMessage: AssistantMessage,
messageId: string,
requestId: string | undefined,
mcpServerType: McpServerType,
mcpServerBaseUrl: ReturnType<typeof getLoggingSafeMcpBaseUrl>,
onToolProgress: (
progress: ToolProgress<ToolProgressData> | ProgressMessage<HookProgress>,
) => void,
): Promise<MessageUpdateLazy[]> {
// Validate input types with zod (surprisingly, the model is not great at generating valid input)
const parsedInput = tool.inputSchema.safeParse(input)
if (!parsedInput.success) {
let errorContent = formatZodValidationError(tool.name, parsedInput.error)
const schemaHint = buildSchemaNotSentHint(
tool,
toolUseContext.messages,
toolUseContext.options.tools,
)
if (schemaHint) {
logEvent('tengu_deferred_tool_schema_not_sent', {
toolName: sanitizeToolNameForAnalytics(tool.name),
isMcp: tool.isMcp ?? false,
})
errorContent += schemaHint
}
logForDebugging(
`${tool.name} tool input error: ${errorContent.slice(0, 200)}`,
)
logEvent('tengu_tool_use_error', {
error:
'InputValidationError' as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
errorDetails: errorContent.slice(
0,
2000,
) as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
messageID:
messageId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
toolName: sanitizeToolNameForAnalytics(tool.name),
isMcp: tool.isMcp ?? false,
queryChainId: toolUseContext.queryTracking
?.chainId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
queryDepth: toolUseContext.queryTracking?.depth,
...(mcpServerType && {
mcpServerType:
mcpServerType as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...(mcpServerBaseUrl && {
mcpServerBaseUrl:
mcpServerBaseUrl as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...(requestId && {
requestId:
requestId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...mcpToolDetailsForAnalytics(tool.name, mcpServerType, mcpServerBaseUrl),
})
return [
{
message: createUserMessage({
content: [
{
type: 'tool_result',
content: `<tool_use_error>InputValidationError: ${errorContent}</tool_use_error>`,
is_error: true,
tool_use_id: toolUseID,
},
],
toolUseResult: `InputValidationError: ${parsedInput.error.message}`,
sourceToolAssistantUUID: assistantMessage.uuid,
}),
},
]
}
// Validate input values. Each tool has its own validation logic
const isValidCall = await tool.validateInput?.(
parsedInput.data,
toolUseContext,
)
if (isValidCall?.result === false) {
logForDebugging(
`${tool.name} tool validation error: ${isValidCall.message?.slice(0, 200)}`,
)
logEvent('tengu_tool_use_error', {
messageID:
messageId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
toolName: sanitizeToolNameForAnalytics(tool.name),
error:
isValidCall.message as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
errorCode: isValidCall.errorCode,
isMcp: tool.isMcp ?? false,
queryChainId: toolUseContext.queryTracking
?.chainId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
queryDepth: toolUseContext.queryTracking?.depth,
...(mcpServerType && {
mcpServerType:
mcpServerType as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...(mcpServerBaseUrl && {
mcpServerBaseUrl:
mcpServerBaseUrl as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...(requestId && {
requestId:
requestId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...mcpToolDetailsForAnalytics(tool.name, mcpServerType, mcpServerBaseUrl),
})
return [
{
message: createUserMessage({
content: [
{
type: 'tool_result',
content: `<tool_use_error>${isValidCall.message}</tool_use_error>`,
is_error: true,
tool_use_id: toolUseID,
},
],
toolUseResult: `Error: ${isValidCall.message}`,
sourceToolAssistantUUID: assistantMessage.uuid,
}),
},
]
}
// Speculatively start the bash allow classifier check early so it runs in
// parallel with pre-tool hooks, deny/ask classifiers, and permission dialog
// setup. The UI indicator (setClassifierChecking) is NOT set here — it's
// set in interactiveHandler.ts only when the permission check returns `ask`
// with a pendingClassifierCheck. This avoids flashing "classifier running"
// for commands that auto-allow via prefix rules.
if (
tool.name === BASH_TOOL_NAME &&
parsedInput.data &&
'command' in parsedInput.data
) {
const appState = toolUseContext.getAppState()
startSpeculativeClassifierCheck(
(parsedInput.data as BashToolInput).command,
appState.toolPermissionContext,
toolUseContext.abortController.signal,
toolUseContext.options.isNonInteractiveSession,
)
}
const resultingMessages = []
// Defense-in-depth: strip _simulatedSedEdit from model-provided Bash input.
// This field is internal-only — it must only be injected by the permission
// system (SedEditPermissionRequest) after user approval. If the model supplies
// it, the schema's strictObject should already reject it, but we strip here
// as a safeguard against future regressions.
let processedInput = parsedInput.data
if (
tool.name === BASH_TOOL_NAME &&
processedInput &&
typeof processedInput === 'object' &&
'_simulatedSedEdit' in processedInput
) {
const { _simulatedSedEdit: _, ...rest } =
processedInput as typeof processedInput & {
_simulatedSedEdit: unknown
}
processedInput = rest as typeof processedInput
}
// Backfill legacy/derived fields on a shallow clone so hooks/canUseTool see
// them without affecting tool.call(). SendMessageTool adds fields; file
// tools overwrite file_path with expandPath — that mutation must not reach
// call() because tool results embed the input path verbatim (e.g. "File
// created successfully at: {path}"), and changing it alters the serialized
// transcript and VCR fixture hashes. If a hook/permission later returns a
// fresh updatedInput, callInput converges on it below — that replacement
// is intentional and should reach call().
let callInput = processedInput
const backfilledClone =
tool.backfillObservableInput &&
typeof processedInput === 'object' &&
processedInput !== null
? ({ ...processedInput } as typeof processedInput)
: null
if (backfilledClone) {
tool.backfillObservableInput!(backfilledClone as Record<string, unknown>)
processedInput = backfilledClone
}
let shouldPreventContinuation = false
let stopReason: string | undefined
let hookPermissionResult: PermissionResult | undefined
const preToolHookInfos: StopHookInfo[] = []
const preToolHookStart = Date.now()
for await (const result of runPreToolUseHooks(
toolUseContext,
tool,
processedInput,
toolUseID,
assistantMessage.message.id,
requestId,
mcpServerType,
mcpServerBaseUrl,
)) {
switch (result.type) {
case 'message':
if (result.message.message.type === 'progress') {
onToolProgress(result.message.message)
} else {
resultingMessages.push(result.message)
const att = result.message.message.attachment
if (
att &&
'command' in att &&
att.command !== undefined &&
'durationMs' in att &&
att.durationMs !== undefined
) {
preToolHookInfos.push({
command: att.command,
durationMs: att.durationMs,
})
}
}
break
case 'hookPermissionResult':
hookPermissionResult = result.hookPermissionResult
break
case 'hookUpdatedInput':
// Hook provided updatedInput without making a permission decision (passthrough)
// Update processedInput so it's used in the normal permission flow
processedInput = result.updatedInput
break
case 'preventContinuation':
shouldPreventContinuation = result.shouldPreventContinuation
break
case 'stopReason':
stopReason = result.stopReason
break
case 'additionalContext':
resultingMessages.push(result.message)
break
case 'stop':
getStatsStore()?.observe(
'pre_tool_hook_duration_ms',
Date.now() - preToolHookStart,
)
resultingMessages.push({
message: createUserMessage({
content: [createToolResultStopMessage(toolUseID)],
toolUseResult: `Error: ${stopReason}`,
sourceToolAssistantUUID: assistantMessage.uuid,
}),
})
return resultingMessages
}
}
const preToolHookDurationMs = Date.now() - preToolHookStart
getStatsStore()?.observe('pre_tool_hook_duration_ms', preToolHookDurationMs)
if (preToolHookDurationMs >= SLOW_PHASE_LOG_THRESHOLD_MS) {
logForDebugging(
`Slow PreToolUse hooks: ${preToolHookDurationMs}ms for ${tool.name} (${preToolHookInfos.length} hooks)`,
{ level: 'info' },
)
}
// Emit PreToolUse summary immediately so it's visible while the tool executes.
// Use wall-clock time (not sum of individual durations) since hooks run in parallel.
if (process.env.USER_TYPE === 'ant' && preToolHookInfos.length > 0) {
if (preToolHookDurationMs > HOOK_TIMING_DISPLAY_THRESHOLD_MS) {
resultingMessages.push({
message: createStopHookSummaryMessage(
preToolHookInfos.length,
preToolHookInfos,
[],
false,
undefined,
false,
'suggestion',
undefined,
'PreToolUse',
preToolHookDurationMs,
),
})
}
}
const toolAttributes: Record<string, string | number | boolean> = {}
if (processedInput && typeof processedInput === 'object') {
if (tool.name === FILE_READ_TOOL_NAME && 'file_path' in processedInput) {
toolAttributes.file_path = String(processedInput.file_path)
} else if (
(tool.name === FILE_EDIT_TOOL_NAME ||
tool.name === FILE_WRITE_TOOL_NAME) &&
'file_path' in processedInput
) {
toolAttributes.file_path = String(processedInput.file_path)
} else if (tool.name === BASH_TOOL_NAME && 'command' in processedInput) {
const bashInput = processedInput as BashToolInput
toolAttributes.full_command = bashInput.command
}
}
startToolSpan(
tool.name,
toolAttributes,
isBetaTracingEnabled() ? jsonStringify(processedInput) : undefined,
)
startToolBlockedOnUserSpan()
// Check whether we have permission to use the tool,
// and ask the user for permission if we don't
const permissionMode = toolUseContext.getAppState().toolPermissionContext.mode
const permissionStart = Date.now()
const resolved = await resolveHookPermissionDecision(
hookPermissionResult,
tool,
processedInput,
toolUseContext,
canUseTool,
assistantMessage,
toolUseID,
)
const permissionDecision = resolved.decision
processedInput = resolved.input
const permissionDurationMs = Date.now() - permissionStart
// In auto mode, canUseTool awaits the classifier (side_query) — if that's
// slow the collapsed view shows "Running…" with no (Ns) tick since
// bash_progress hasn't started yet. Auto-only: in default mode this timer
// includes interactive-dialog wait (user think time), which is just noise.
if (
permissionDurationMs >= SLOW_PHASE_LOG_THRESHOLD_MS &&
permissionMode === 'auto'
) {
logForDebugging(
`Slow permission decision: ${permissionDurationMs}ms for ${tool.name} ` +
`(mode=${permissionMode}, behavior=${permissionDecision.behavior})`,
{ level: 'info' },
)
}
// Emit tool_decision OTel event and code-edit counter if the interactive
// permission path didn't already log it (headless mode bypasses permission
// logging, so we need to emit both the generic event and the code-edit
// counter here)
if (
permissionDecision.behavior !== 'ask' &&
!toolUseContext.toolDecisions?.has(toolUseID)
) {
const decision =
permissionDecision.behavior === 'allow' ? 'accept' : 'reject'
const source = decisionReasonToOTelSource(
permissionDecision.decisionReason,
permissionDecision.behavior,
)
void logOTelEvent('tool_decision', {
decision,
source,
tool_name: sanitizeToolNameForAnalytics(tool.name),
})
// Increment code-edit tool decision counter for headless mode
if (isCodeEditingTool(tool.name)) {
void buildCodeEditToolAttributes(
tool,
processedInput,
decision,
source,
).then(attributes => getCodeEditToolDecisionCounter()?.add(1, attributes))
}
}
// Add message if permission was granted/denied by PermissionRequest hook
if (
permissionDecision.decisionReason?.type === 'hook' &&
permissionDecision.decisionReason.hookName === 'PermissionRequest' &&
permissionDecision.behavior !== 'ask'
) {
resultingMessages.push({
message: createAttachmentMessage({
type: 'hook_permission_decision',
decision: permissionDecision.behavior,
toolUseID,
hookEvent: 'PermissionRequest',
}),
})
}
if (permissionDecision.behavior !== 'allow') {
logForDebugging(`${tool.name} tool permission denied`)
const decisionInfo = toolUseContext.toolDecisions?.get(toolUseID)
endToolBlockedOnUserSpan('reject', decisionInfo?.source || 'unknown')
endToolSpan()
logEvent('tengu_tool_use_can_use_tool_rejected', {
messageID:
messageId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
toolName: sanitizeToolNameForAnalytics(tool.name),
queryChainId: toolUseContext.queryTracking
?.chainId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
queryDepth: toolUseContext.queryTracking?.depth,
...(mcpServerType && {
mcpServerType:
mcpServerType as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...(mcpServerBaseUrl && {
mcpServerBaseUrl:
mcpServerBaseUrl as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...(requestId && {
requestId:
requestId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...mcpToolDetailsForAnalytics(tool.name, mcpServerType, mcpServerBaseUrl),
})
let errorMessage = permissionDecision.message
// Only use generic "Execution stopped" message if we don't have a detailed hook message
if (shouldPreventContinuation && !errorMessage) {
errorMessage = `Execution stopped by PreToolUse hook${stopReason ? `: ${stopReason}` : ''}`
}
// Build top-level content: tool_result (text-only for is_error compatibility) + images alongside
const messageContent: ContentBlockParam[] = [
{
type: 'tool_result',
content: errorMessage,
is_error: true,
tool_use_id: toolUseID,
},
]
// Add image blocks at top level (not inside tool_result, which rejects non-text with is_error)
const rejectContentBlocks =
permissionDecision.behavior === 'ask'
? permissionDecision.contentBlocks
: undefined
if (rejectContentBlocks?.length) {
messageContent.push(...rejectContentBlocks)
}
// Generate sequential imagePasteIds so each image renders with a distinct label
let rejectImageIds: number[] | undefined
if (rejectContentBlocks?.length) {
const imageCount = count(
rejectContentBlocks,
(b: ContentBlockParam) => b.type === 'image',
)
if (imageCount > 0) {
const startId = getNextImagePasteId(toolUseContext.messages)
rejectImageIds = Array.from(
{ length: imageCount },
(_, i) => startId + i,
)
}
}
resultingMessages.push({
message: createUserMessage({
content: messageContent,
imagePasteIds: rejectImageIds,
toolUseResult: `Error: ${errorMessage}`,
sourceToolAssistantUUID: assistantMessage.uuid,
}),
})
// Run PermissionDenied hooks for auto mode classifier denials.
// If a hook returns {retry: true}, tell the model it may retry.
if (
feature('TRANSCRIPT_CLASSIFIER') &&
permissionDecision.decisionReason?.type === 'classifier' &&
permissionDecision.decisionReason.classifier === 'auto-mode'
) {
let hookSaysRetry = false
for await (const result of executePermissionDeniedHooks(
tool.name,
toolUseID,
processedInput,
permissionDecision.decisionReason.reason ?? 'Permission denied',
toolUseContext,
permissionMode,
toolUseContext.abortController.signal,
)) {
if (result.retry) hookSaysRetry = true
}
if (hookSaysRetry) {
resultingMessages.push({
message: createUserMessage({
content:
'The PermissionDenied hook indicated this command is now approved. You may retry it if you would like.',
isMeta: true,
}),
})
}
}
return resultingMessages
}
logEvent('tengu_tool_use_can_use_tool_allowed', {
messageID:
messageId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
toolName: sanitizeToolNameForAnalytics(tool.name),
queryChainId: toolUseContext.queryTracking
?.chainId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
queryDepth: toolUseContext.queryTracking?.depth,
...(mcpServerType && {
mcpServerType:
mcpServerType as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...(mcpServerBaseUrl && {
mcpServerBaseUrl:
mcpServerBaseUrl as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...(requestId && {
requestId:
requestId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...mcpToolDetailsForAnalytics(tool.name, mcpServerType, mcpServerBaseUrl),
})
// Use the updated input from permissions if provided
// (Don't overwrite if undefined - processedInput may have been modified by passthrough hooks)
if (permissionDecision.updatedInput !== undefined) {
processedInput = permissionDecision.updatedInput
}
// Prepare tool parameters for logging in tool_result event.
// Gated by OTEL_LOG_TOOL_DETAILS — tool parameters can contain sensitive
// content (bash commands, MCP server names, etc.) so they're opt-in only.
const telemetryToolInput = extractToolInputForTelemetry(processedInput)
let toolParameters: Record<string, unknown> = {}
if (isToolDetailsLoggingEnabled()) {
if (tool.name === BASH_TOOL_NAME && 'command' in processedInput) {
const bashInput = processedInput as BashToolInput
const commandParts = bashInput.command.trim().split(/\s+/)
const bashCommand = commandParts[0] || ''
toolParameters = {
bash_command: bashCommand,
full_command: bashInput.command,
...(bashInput.timeout !== undefined && {
timeout: bashInput.timeout,
}),
...(bashInput.description !== undefined && {
description: bashInput.description,
}),
...('dangerouslyDisableSandbox' in bashInput && {
dangerouslyDisableSandbox: bashInput.dangerouslyDisableSandbox,
}),
}
}
const mcpDetails = extractMcpToolDetails(tool.name)
if (mcpDetails) {
toolParameters.mcp_server_name = mcpDetails.serverName
toolParameters.mcp_tool_name = mcpDetails.mcpToolName
}
const skillName = extractSkillName(tool.name, processedInput)
if (skillName) {
toolParameters.skill_name = skillName
}
}
const decisionInfo = toolUseContext.toolDecisions?.get(toolUseID)
endToolBlockedOnUserSpan(
decisionInfo?.decision || 'unknown',
decisionInfo?.source || 'unknown',
)
startToolExecutionSpan()
const startTime = Date.now()
startSessionActivity('tool_exec')
// If processedInput still points at the backfill clone, no hook/permission
// replaced it — pass the pre-backfill callInput so call() sees the model's
// original field values. Otherwise converge on the hook-supplied input.
// Permission/hook flows may return a fresh object derived from the
// backfilled clone (e.g. via inputSchema.parse). If its file_path matches
// the backfill-expanded value, restore the model's original so the tool
// result string embeds the path the model emitted — keeps transcript/VCR
// hashes stable. Other hook modifications flow through unchanged.
if (
backfilledClone &&
processedInput !== callInput &&
typeof processedInput === 'object' &&
processedInput !== null &&
'file_path' in processedInput &&
'file_path' in (callInput as Record<string, unknown>) &&
(processedInput as Record<string, unknown>).file_path ===
(backfilledClone as Record<string, unknown>).file_path
) {
callInput = {
...processedInput,
file_path: (callInput as Record<string, unknown>).file_path,
} as typeof processedInput
} else if (processedInput !== backfilledClone) {
callInput = processedInput
}
try {
const result = await tool.call(
callInput,
{
...toolUseContext,
toolUseId: toolUseID,
userModified: permissionDecision.userModified ?? false,
},
canUseTool,
assistantMessage,
progress => {
onToolProgress({
toolUseID: progress.toolUseID,
data: progress.data,
})
},
)
const durationMs = Date.now() - startTime
addToToolDuration(durationMs)
// Log tool content/output as span event if enabled
if (result.data && typeof result.data === 'object') {
const contentAttributes: Record<string, string | number | boolean> = {}
// Read tool: capture file_path and content
if (tool.name === FILE_READ_TOOL_NAME && 'content' in result.data) {
if ('file_path' in processedInput) {
contentAttributes.file_path = String(processedInput.file_path)
}
contentAttributes.content = String(result.data.content)
}
// Edit/Write tools: capture file_path and diff
if (
(tool.name === FILE_EDIT_TOOL_NAME ||
tool.name === FILE_WRITE_TOOL_NAME) &&
'file_path' in processedInput
) {
contentAttributes.file_path = String(processedInput.file_path)
// For Edit, capture the actual changes made
if (tool.name === FILE_EDIT_TOOL_NAME && 'diff' in result.data) {
contentAttributes.diff = String(result.data.diff)
}
// For Write, capture the written content
if (tool.name === FILE_WRITE_TOOL_NAME && 'content' in processedInput) {
contentAttributes.content = String(processedInput.content)
}
}
// Bash tool: capture command
if (tool.name === BASH_TOOL_NAME && 'command' in processedInput) {
const bashInput = processedInput as BashToolInput
contentAttributes.bash_command = bashInput.command
// Also capture output if available
if ('output' in result.data) {
contentAttributes.output = String(result.data.output)
}
}
if (Object.keys(contentAttributes).length > 0) {
addToolContentEvent('tool.output', contentAttributes)
}
}
// Capture structured output from tool result if present
if (typeof result === 'object' && 'structured_output' in result) {
// Store the structured output in an attachment message
resultingMessages.push({
message: createAttachmentMessage({
type: 'structured_output',
data: result.structured_output,
}),
})
}
endToolExecutionSpan({ success: true })
// Pass tool result for new_context logging
const toolResultStr =
result.data && typeof result.data === 'object'
? jsonStringify(result.data)
: String(result.data ?? '')
endToolSpan(toolResultStr)
// Map the tool result to API format once and cache it. This block is reused
// by addToolResult (skipping the remap) and measured here for analytics.
const mappedToolResultBlock = tool.mapToolResultToToolResultBlockParam(
result.data,
toolUseID,
)
const mappedContent = mappedToolResultBlock.content
const toolResultSizeBytes = !mappedContent
? 0
: typeof mappedContent === 'string'
? mappedContent.length
: jsonStringify(mappedContent).length
// Extract file extension for file-related tools
let fileExtension: ReturnType<typeof getFileExtensionForAnalytics>
if (processedInput && typeof processedInput === 'object') {
if (
(tool.name === FILE_READ_TOOL_NAME ||
tool.name === FILE_EDIT_TOOL_NAME ||
tool.name === FILE_WRITE_TOOL_NAME) &&
'file_path' in processedInput
) {
fileExtension = getFileExtensionForAnalytics(
String(processedInput.file_path),
)
} else if (
tool.name === NOTEBOOK_EDIT_TOOL_NAME &&
'notebook_path' in processedInput
) {
fileExtension = getFileExtensionForAnalytics(
String(processedInput.notebook_path),
)
} else if (tool.name === BASH_TOOL_NAME && 'command' in processedInput) {
const bashInput = processedInput as BashToolInput
fileExtension = getFileExtensionsFromBashCommand(
bashInput.command,
bashInput._simulatedSedEdit?.filePath,
)
}
}
logEvent('tengu_tool_use_success', {
messageID:
messageId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
toolName: sanitizeToolNameForAnalytics(tool.name),
isMcp: tool.isMcp ?? false,
durationMs,
preToolHookDurationMs,
toolResultSizeBytes,
...(fileExtension !== undefined && { fileExtension }),
queryChainId: toolUseContext.queryTracking
?.chainId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
queryDepth: toolUseContext.queryTracking?.depth,
...(mcpServerType && {
mcpServerType:
mcpServerType as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...(mcpServerBaseUrl && {
mcpServerBaseUrl:
mcpServerBaseUrl as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...(requestId && {
requestId:
requestId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...mcpToolDetailsForAnalytics(tool.name, mcpServerType, mcpServerBaseUrl),
})
// Enrich tool parameters with git commit ID from successful git commit output
if (
isToolDetailsLoggingEnabled() &&
(tool.name === BASH_TOOL_NAME || tool.name === POWERSHELL_TOOL_NAME) &&
'command' in processedInput &&
typeof processedInput.command === 'string' &&
processedInput.command.match(/\bgit\s+commit\b/) &&
result.data &&
typeof result.data === 'object' &&
'stdout' in result.data
) {
const gitCommitId = parseGitCommitId(String(result.data.stdout))
if (gitCommitId) {
toolParameters.git_commit_id = gitCommitId
}
}
// Log tool result event for OTLP with tool parameters and decision context
const mcpServerScope = isMcpTool(tool)
? getMcpServerScopeFromToolName(tool.name)
: null
void logOTelEvent('tool_result', {
tool_name: sanitizeToolNameForAnalytics(tool.name),
success: 'true',
duration_ms: String(durationMs),
...(Object.keys(toolParameters).length > 0 && {
tool_parameters: jsonStringify(toolParameters),
}),
...(telemetryToolInput && { tool_input: telemetryToolInput }),
tool_result_size_bytes: String(toolResultSizeBytes),
...(decisionInfo && {
decision_source: decisionInfo.source,
decision_type: decisionInfo.decision,
}),
...(mcpServerScope && { mcp_server_scope: mcpServerScope }),
})
// Run PostToolUse hooks
let toolOutput = result.data
const hookResults = []
const toolContextModifier = result.contextModifier
const mcpMeta = result.mcpMeta
async function addToolResult(
toolUseResult: unknown,
preMappedBlock?: ToolResultBlockParam,
) {
// Use the pre-mapped block when available (non-MCP tools where hooks
// don't modify the output), otherwise map from scratch.
const toolResultBlock = preMappedBlock
? await processPreMappedToolResultBlock(
preMappedBlock,
tool.name,
tool.maxResultSizeChars,
)
: await processToolResultBlock(tool, toolUseResult, toolUseID)
// Build content blocks - tool result first, then optional feedback
const contentBlocks: ContentBlockParam[] = [toolResultBlock]
// Add accept feedback if user provided feedback when approving
// (acceptFeedback only exists on PermissionAllowDecision, which is guaranteed here)
if (
'acceptFeedback' in permissionDecision &&
permissionDecision.acceptFeedback
) {
contentBlocks.push({
type: 'text',
text: permissionDecision.acceptFeedback,
})
}
// Add content blocks (e.g., pasted images) from the permission decision
const allowContentBlocks =
'contentBlocks' in permissionDecision
? permissionDecision.contentBlocks
: undefined
if (allowContentBlocks?.length) {
contentBlocks.push(...allowContentBlocks)
}
// Generate sequential imagePasteIds so each image renders with a distinct label
let allowImageIds: number[] | undefined
if (allowContentBlocks?.length) {
const imageCount = count(
allowContentBlocks,
(b: ContentBlockParam) => b.type === 'image',
)
if (imageCount > 0) {
const startId = getNextImagePasteId(toolUseContext.messages)
allowImageIds = Array.from(
{ length: imageCount },
(_, i) => startId + i,
)
}
}
resultingMessages.push({
message: createUserMessage({
content: contentBlocks,
imagePasteIds: allowImageIds,
toolUseResult:
toolUseContext.agentId && !toolUseContext.preserveToolUseResults
? undefined
: toolUseResult,
mcpMeta: toolUseContext.agentId ? undefined : mcpMeta,
sourceToolAssistantUUID: assistantMessage.uuid,
}),
contextModifier: toolContextModifier
? {
toolUseID: toolUseID,
modifyContext: toolContextModifier,
}
: undefined,
})
}
// TOOD(hackyon): refactor so we don't have different experiences for MCP tools
if (!isMcpTool(tool)) {
await addToolResult(toolOutput, mappedToolResultBlock)
}
const postToolHookInfos: StopHookInfo[] = []
const postToolHookStart = Date.now()
for await (const hookResult of runPostToolUseHooks(
toolUseContext,
tool,
toolUseID,
assistantMessage.message.id,
processedInput,
toolOutput,
requestId,
mcpServerType,
mcpServerBaseUrl,
)) {
if ('updatedMCPToolOutput' in hookResult) {
if (isMcpTool(tool)) {
toolOutput = hookResult.updatedMCPToolOutput
}
} else if (isMcpTool(tool)) {
hookResults.push(hookResult)
if (hookResult.message.type === 'attachment') {
const att = hookResult.message.attachment
if (
'command' in att &&
att.command !== undefined &&
'durationMs' in att &&
att.durationMs !== undefined
) {
postToolHookInfos.push({
command: att.command,
durationMs: att.durationMs,
})
}
}
} else {
resultingMessages.push(hookResult)
if (hookResult.message.type === 'attachment') {
const att = hookResult.message.attachment
if (
'command' in att &&
att.command !== undefined &&
'durationMs' in att &&
att.durationMs !== undefined
) {
postToolHookInfos.push({
command: att.command,
durationMs: att.durationMs,
})
}
}
}
}
const postToolHookDurationMs = Date.now() - postToolHookStart
if (postToolHookDurationMs >= SLOW_PHASE_LOG_THRESHOLD_MS) {
logForDebugging(
`Slow PostToolUse hooks: ${postToolHookDurationMs}ms for ${tool.name} (${postToolHookInfos.length} hooks)`,
{ level: 'info' },
)
}
if (isMcpTool(tool)) {
await addToolResult(toolOutput)
}
// Show PostToolUse hook timing inline below tool result when > 500ms.
// Use wall-clock time (not sum of individual durations) since hooks run in parallel.
if (process.env.USER_TYPE === 'ant' && postToolHookInfos.length > 0) {
if (postToolHookDurationMs > HOOK_TIMING_DISPLAY_THRESHOLD_MS) {
resultingMessages.push({
message: createStopHookSummaryMessage(
postToolHookInfos.length,
postToolHookInfos,
[],
false,
undefined,
false,
'suggestion',
undefined,
'PostToolUse',
postToolHookDurationMs,
),
})
}
}
// If the tool provided new messages, add them to the list to return.
if (result.newMessages && result.newMessages.length > 0) {
for (const message of result.newMessages) {
resultingMessages.push({ message })
}
}
// If hook indicated to prevent continuation after successful execution, yield a stop reason message
if (shouldPreventContinuation) {
resultingMessages.push({
message: createAttachmentMessage({
type: 'hook_stopped_continuation',
message: stopReason || 'Execution stopped by hook',
hookName: `PreToolUse:${tool.name}`,
toolUseID: toolUseID,
hookEvent: 'PreToolUse',
}),
})
}
// Yield the remaining hook results after the other messages are sent
for (const hookResult of hookResults) {
resultingMessages.push(hookResult)
}
return resultingMessages
} catch (error) {
const durationMs = Date.now() - startTime
addToToolDuration(durationMs)
endToolExecutionSpan({
success: false,
error: errorMessage(error),
})
endToolSpan()
// Handle MCP auth errors by updating the client status to 'needs-auth'
// This updates the /mcp display to show the server needs re-authorization
if (error instanceof McpAuthError) {
toolUseContext.setAppState(prevState => {
const serverName = error.serverName
const existingClientIndex = prevState.mcp.clients.findIndex(
c => c.name === serverName,
)
if (existingClientIndex === -1) {
return prevState
}
const existingClient = prevState.mcp.clients[existingClientIndex]
// Only update if client was connected (don't overwrite other states)
if (!existingClient || existingClient.type !== 'connected') {
return prevState
}
const updatedClients = [...prevState.mcp.clients]
updatedClients[existingClientIndex] = {
name: serverName,
type: 'needs-auth' as const,
config: existingClient.config,
}
return {
...prevState,
mcp: {
...prevState.mcp,
clients: updatedClients,
},
}
})
}
if (!(error instanceof AbortError)) {
const errorMsg = errorMessage(error)
logForDebugging(
`${tool.name} tool error (${durationMs}ms): ${errorMsg.slice(0, 200)}`,
)
if (!(error instanceof ShellError)) {
logError(error)
}
logEvent('tengu_tool_use_error', {
messageID:
messageId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
toolName: sanitizeToolNameForAnalytics(tool.name),
error: classifyToolError(
error,
) as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
isMcp: tool.isMcp ?? false,
queryChainId: toolUseContext.queryTracking
?.chainId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
queryDepth: toolUseContext.queryTracking?.depth,
...(mcpServerType && {
mcpServerType:
mcpServerType as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...(mcpServerBaseUrl && {
mcpServerBaseUrl:
mcpServerBaseUrl as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...(requestId && {
requestId:
requestId as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS,
}),
...mcpToolDetailsForAnalytics(
tool.name,
mcpServerType,
mcpServerBaseUrl,
),
})
// Log tool result error event for OTLP with tool parameters and decision context
const mcpServerScope = isMcpTool(tool)
? getMcpServerScopeFromToolName(tool.name)
: null
void logOTelEvent('tool_result', {
tool_name: sanitizeToolNameForAnalytics(tool.name),
use_id: toolUseID,
success: 'false',
duration_ms: String(durationMs),
error: errorMessage(error),
...(Object.keys(toolParameters).length > 0 && {
tool_parameters: jsonStringify(toolParameters),
}),
...(telemetryToolInput && { tool_input: telemetryToolInput }),
...(decisionInfo && {
decision_source: decisionInfo.source,
decision_type: decisionInfo.decision,
}),
...(mcpServerScope && { mcp_server_scope: mcpServerScope }),
})
}
const content = formatError(error)
// Determine if this was a user interrupt
const isInterrupt = error instanceof AbortError
// Run PostToolUseFailure hooks
const hookMessages: MessageUpdateLazy<
AttachmentMessage | ProgressMessage<HookProgress>
>[] = []
for await (const hookResult of runPostToolUseFailureHooks(
toolUseContext,
tool,
toolUseID,
messageId,
processedInput,
content,
isInterrupt,
requestId,
mcpServerType,
mcpServerBaseUrl,
)) {
hookMessages.push(hookResult)
}
return [
{
message: createUserMessage({
content: [
{
type: 'tool_result',
content,
is_error: true,
tool_use_id: toolUseID,
},
],
toolUseResult: `Error: ${content}`,
mcpMeta: toolUseContext.agentId
? undefined
: error instanceof
McpToolCallError_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS
? error.mcpMeta
: undefined,
sourceToolAssistantUUID: assistantMessage.uuid,
}),
},
...hookMessages,
]
} finally {
stopSessionActivity('tool_exec')
// Clean up decision info after logging
if (decisionInfo) {
toolUseContext.toolDecisions?.delete(toolUseID)
}
}
}
|