File size: 45,511 Bytes
2b64d42 | 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 | /**
* v2.0.65 β Cascade native tool bridge (#115 root-cause fix).
*
* Translates between OpenAI-shaped client tools (Read/Bash/Glob/Grep/...) and
* Cascade's built-in IDE step kinds (view_file/run_command/find/grep_search_v2/...).
*
* Why this layer exists
* βββββββββββββββββββββ
* v2.0.62-v2.0.64 (#115) shipped dialect/anti-refusal infra under the
* NO_TOOL planner mode + tool-prompt emulation umbrella. Real-world GPT
* traces (Codex CLI, gpt-5.x) still surfaced markers=none on non-trivial
* turns β the gateway's baked system prompt outweighs anything we inject
* via additional_instructions_section. The tools the gateway DOES respect
* are Cascade's own β view_file, run_command, grep_search_v2, find β because
* those names appear inside the planner's training distribution as first-
* class function-calling tokens, not as proxy-injected text.
*
* The bridge never enables planner_mode=DEFAULT on its own β that path
* triggers server-side workspace mocking ("/tmp/windsurf-workspace path
* leaks", #98 / pre-v2.0.64 stall_warm bursts). Instead, the bridge:
*
* 1. Forward translates the caller's OpenAI tool inventory + tool history
* into Cascade-vocabulary names so the gateway sees a familiar
* tool list and a sequence of completed cascade-style steps.
*
* 2. Reverse translates each trajectory step (view_file, run_command,
* grep_search_v2, find, list_directory) the planner emits back into
* the caller's original OpenAI tool name (Read, Bash, Grep, Glob, ...).
*
* 3. When ANY tool the caller declared cannot be mapped, the entire
* request falls back to the existing emulation path. Mixed mapped/
* unmapped requests are not split β partial native coverage would
* confuse the planner about which tools it actually has.
*
* Activation: gated by env var WINDSURFAPI_NATIVE_TOOL_BRIDGE=1 OR opt-in
* runtime config flag `nativeToolBridge`. Default OFF until field-tested.
*/
import {
writeStringField, writeMessageField, writeVarintField, writeBoolField, writeBytesField,
parseFields, getField, getAllFields,
} from './proto.js';
// βββ Cascade step type enums βββββββββββββββββββββββββββββββββββββββ
//
// CortexStepType field numbers from exa.cortex_pb.proto (see
// scripts/ls-protos/proto/exa_cortex_pb_cortex.proto). The enum is the
// CortexTrajectoryStep.type (field 1) value. The matching oneof field
// number for each step is also the same number β Cascade keeps them
// aligned so the discriminator and the body share an integer.
export const CASCADE_STEP = {
// step kind β { typeEnum, oneofField }
view_file: { typeEnum: 14, oneofField: 14 },
list_directory: { typeEnum: 15, oneofField: 15 },
write_to_file: { typeEnum: 23, oneofField: 23 },
run_command: { typeEnum: 28, oneofField: 28 },
propose_code: { typeEnum: 32, oneofField: 32 },
find: { typeEnum: 34, oneofField: 34 },
read_url_content:{ typeEnum: 40, oneofField: 40 },
grep_search: { typeEnum: 13, oneofField: 13 },
grep_search_v2: { typeEnum: 105, oneofField: 105 },
// v2.0.70 β search_web (CortexStepSearchWeb proto field 42).
search_web: { typeEnum: 42, oneofField: 42 },
};
// CortexStepStatus β used for the step.status field (CortexTrajectoryStep
// field 4). DONE=3 marks a step as complete-and-observed; UNSPECIFIED=0
// would leave the planner thinking work is still in progress.
export const CASCADE_STEP_STATUS_DONE = 3;
// βββ argument translators βββββββββββββββββββββββββββββββββββββββββ
//
// Each translator maps OpenAI-style arguments (the JSON object the caller
// puts in tool_calls[].function.arguments) to and from cascade step
// fields. They MUST be pure β identical args in produce identical cascade
// step proto bytes, and a round-trip translator(reverse(forward(args))) is
// the identity. The reverse direction is exercised for two reasons:
// (a) the planner emits trajectory steps in cascade vocabulary and we have
// to surface them as OpenAI tool_calls with arguments the caller's schema
// validator accepts; (b) tests assert lossless round-trip per tool.
function safeJsonParse(s) {
if (typeof s !== 'string' || !s) return {};
try { const v = JSON.parse(s); return v && typeof v === 'object' ? v : {}; }
catch { return {}; }
}
function buildFileUri(absolutePath) {
if (typeof absolutePath !== 'string' || !absolutePath) return '';
// Cascade's view_file uses absolute_path_uri β `file://` prefix optional
// depending on LS version. Both forms are accepted in the wild; we leave
// already-prefixed paths intact and add the prefix to bare ones.
if (/^file:\/\//.test(absolutePath)) return absolutePath;
if (/^[a-zA-Z]:[\\/]/.test(absolutePath) || absolutePath.startsWith('/')) {
return `file://${absolutePath.replace(/\\/g, '/')}`;
}
// Relative path β leave as-is. Caller's environment block tells the
// planner what cwd to resolve against.
return absolutePath;
}
function stripFileUri(uri) {
if (typeof uri !== 'string') return '';
return uri.replace(/^file:\/\//, '');
}
// ββ Read / view_file ββββββββββββββββββββββββββββββββββββββββββββ
function forwardReadArgs(args) {
const file_path = args.file_path || args.path || args.absolute_path || '';
const offset = Number(args.offset) || 0;
const limit = Number(args.limit) || 0;
return {
absolute_path_uri: buildFileUri(file_path),
offset,
limit,
};
}
function reverseReadArgs(cascade) {
return {
file_path: stripFileUri(cascade.absolute_path_uri || ''),
...(cascade.offset ? { offset: cascade.offset } : {}),
...(cascade.limit ? { limit: cascade.limit } : {}),
};
}
// ββ Bash / run_command ββββββββββββββββββββββββββββββββββββββββββ
function forwardBashArgs(args) {
const command = args.command || args.shell_command || '';
return {
command_line: String(command),
cwd: typeof args.cwd === 'string' ? args.cwd : '',
blocking: true,
};
}
function reverseBashArgs(cascade) {
return {
command: cascade.command_line || cascade.proposed_command_line || '',
...(cascade.cwd ? { cwd: cascade.cwd } : {}),
};
}
// ββ Glob / find βββββββββββββββββββββββββββββββββββββββββββββββββ
function forwardGlobArgs(args) {
return {
pattern: args.pattern || '',
search_directory: args.path || args.cwd || '',
};
}
function reverseGlobArgs(cascade) {
return {
pattern: cascade.pattern || '',
...(cascade.search_directory ? { path: cascade.search_directory } : {}),
};
}
// ββ Grep / grep_search_v2 βββββββββββββββββββββββββββββββββββββββ
function forwardGrepArgs(args) {
return {
pattern: args.pattern || '',
path: args.path || '',
glob: args.glob || '',
output_mode: args.output_mode || 'files_with_matches',
case_insensitive: !!args['-i'],
multiline: !!args.multiline,
type: args.type || '',
head_limit: Number(args.head_limit) || 0,
lines_after: Number(args['-A']) || 0,
lines_before: Number(args['-B']) || 0,
lines_both: Number(args['-C'] ?? args.context) || 0,
};
}
function reverseGrepArgs(cascade) {
const out = { pattern: cascade.pattern || '' };
if (cascade.path) out.path = cascade.path;
if (cascade.glob) out.glob = cascade.glob;
if (cascade.output_mode) out.output_mode = cascade.output_mode;
if (cascade.case_insensitive) out['-i'] = true;
if (cascade.multiline) out.multiline = true;
if (cascade.type) out.type = cascade.type;
if (cascade.head_limit) out.head_limit = cascade.head_limit;
if (cascade.lines_after) out['-A'] = cascade.lines_after;
if (cascade.lines_before) out['-B'] = cascade.lines_before;
if (cascade.lines_both) out['-C'] = cascade.lines_both;
return out;
}
// ββ Write / write_to_file ββββββββββββββββββββββββββββββββββββββ
function forwardWriteArgs(args) {
const file_path = args.file_path || args.path || '';
const content = args.content || '';
return {
target_file_uri: buildFileUri(file_path),
code_content: typeof content === 'string' ? [content] : Array.isArray(content) ? content : [String(content)],
};
}
function reverseWriteArgs(cascade) {
const lines = Array.isArray(cascade.code_content) ? cascade.code_content : [];
return {
file_path: stripFileUri(cascade.target_file_uri || ''),
content: lines.join(''),
};
}
// ββ list_dir / list_directory ββββββββββββββββββββββββββββββββββ
function forwardListDirArgs(args) {
return {
directory_path_uri: buildFileUri(args.path || args.directory_path || args.cwd || ''),
};
}
function reverseListDirArgs(cascade) {
return {
path: stripFileUri(cascade.directory_path_uri || ''),
};
}
// ββ identity (when caller already speaks cascade vocabulary) βββ
function identityArgs(x) { return { ...x }; }
// ββ Edit / MultiEdit β propose_code (v2.0.70) ββββββββββββββββββ
// Claude Code's Edit tool: { file_path, old_string, new_string,
// replace_all? }. MultiEdit: { file_path, edits: [{old_string,
// new_string}, ...] }. Both map onto cascade's ActionSpecCommand
// (field 1 of ActionSpec, which is field 1 of CortexStepProposeCode).
//
// ActionSpecCommand.replacement_chunks is a repeated ReplacementChunk
// { target_content=1, replacement_content=2, allow_multiple=3 }.
//
// We forward to a lightweight intermediate dict (cascade-side keys)
// so build_propose_code_body can pull them and serialise to proto.
// MultiEdit collapses into one ActionSpecCommand with multiple chunks.
function forwardClaudeEditArgs(args) {
const file_path = args.file_path || args.path || '';
const chunks = [];
if (Array.isArray(args.edits)) {
for (const e of args.edits) {
chunks.push({
target: typeof e?.old_string === 'string' ? e.old_string : '',
replacement: typeof e?.new_string === 'string' ? e.new_string : '',
allow_multiple: !!e?.replace_all,
});
}
} else {
chunks.push({
target: typeof args.old_string === 'string' ? args.old_string : '',
replacement: typeof args.new_string === 'string' ? args.new_string : '',
allow_multiple: !!args.replace_all,
});
}
return { target_file_uri: buildFileUri(file_path), replacement_chunks: chunks, instruction: '' };
}
function reverseClaudeEditArgs(cascade) {
if (cascade && typeof cascade.__raw_edit === 'string') return safeJsonParse(cascade.__raw_edit);
const file_path = stripFileUri(cascade.target_file_uri || '');
const chunks = Array.isArray(cascade.replacement_chunks) ? cascade.replacement_chunks : [];
if (chunks.length <= 1) {
const c = chunks[0] || {};
return {
file_path,
old_string: c.target || '',
new_string: c.replacement || '',
...(c.allow_multiple ? { replace_all: true } : {}),
};
}
return {
file_path,
edits: chunks.map(c => ({
old_string: c.target || '',
new_string: c.replacement || '',
...(c.allow_multiple ? { replace_all: true } : {}),
})),
};
}
// ββ web_search β search_web (v2.0.70) βββββββββββββββββββββββββ
// CortexStepSearchWeb { query=1, domain=3, web_documents=2, ... }
// Caller's `web_search` declares { query, domains? }. domains[] β₯ 1
// β we pick the first (cascade only takes a single `domain` string).
function forwardWebSearchArgs(args) {
return {
query: args.query || args.q || '',
domain: Array.isArray(args.domains) && args.domains.length ? args.domains[0] : (args.domain || ''),
};
}
function reverseWebSearchArgs(cascade) {
return {
query: cascade.query || '',
...(cascade.domain ? { domains: [cascade.domain] } : {}),
};
}
// ββ WebFetch β read_url_content (v2.0.93) βββββββββββββββββββββββββ
// CortexStepReadUrlContent { url=1, summary=5 }
function forwardWebFetchArgs(args) {
return { url: args.url || args.uri || args.link || '' };
}
function reverseWebFetchArgs(cascade) {
return { url: cascade.url || '', summary: cascade.summary || '' };
}
// ββ apply_patch β write_to_file (single-file fan-out, v2.0.70) ββ
// codex CLI's `apply_patch` ships a multi-file patch in a custom
// grammar. Full fan-out (parsing the patch and emitting one
// write_to_file per file) is outside the scope of a single-step
// translator β the cascade trajectory expects the proxy to fan out
// at message-build time. For now reverse maps `__raw_apply_patch` so
// the caller's tool_call round-trips, and forward refuses (returns
// null) so partition mode falls back to emulation for this tool. The
// caller still gets a working apply_patch via emulation toolPreamble.
function forwardApplyPatchArgs(args) {
// Sentinel that build_step_body recognises and skips (returns null
// buffer, partition treats as unmapped).
return { __apply_patch_unmappable: true, raw: typeof args === 'string' ? args : (args.input || JSON.stringify(args || {})) };
}
function reverseApplyPatchArgs(cascade) {
if (cascade && typeof cascade.raw === 'string') return { input: cascade.raw };
return cascade || {};
}
// βββ OpenAI tool name β cascade kind table ββββββββββββββββββββββββββ
//
// Keys are the EXACT tool name the caller declares in tools[].function.name.
// Casing matters β Claude Code uses TitleCase (Read, Bash); Codex CLI uses
// snake_case (view_file, run_command). Both are honored here.
export const TOOL_MAP = {
// Claude Code
Read: { kind: 'view_file', forward: forwardReadArgs, reverse: reverseReadArgs },
Bash: { kind: 'run_command', forward: forwardBashArgs, reverse: reverseBashArgs },
Glob: { kind: 'find', forward: forwardGlobArgs, reverse: reverseGlobArgs },
Grep: { kind: 'grep_search_v2', forward: forwardGrepArgs, reverse: reverseGrepArgs },
Write: { kind: 'write_to_file', forward: forwardWriteArgs, reverse: reverseWriteArgs },
// v2.0.70: Edit/MultiEdit really map to cascade propose_code with
// ReplacementChunks now. Old pass-through (forwardEditArgs) kept as
// fallback for the rare case the cascade body builder rejects the
// chunk shape (claude code emits a tool_call with no old_string).
Edit: { kind: 'propose_code', forward: forwardClaudeEditArgs, reverse: reverseClaudeEditArgs },
MultiEdit: { kind: 'propose_code', forward: forwardClaudeEditArgs, reverse: reverseClaudeEditArgs },
WebSearch: { kind: 'search_web', forward: forwardWebSearchArgs, reverse: reverseWebSearchArgs },
// v2.0.93 β ToolSearch is Claude Code's web search tool (same as WebSearch)
ToolSearch: { kind: 'search_web', forward: forwardWebSearchArgs, reverse: reverseWebSearchArgs },
// v2.0.93 β WebFetch is Claude Code's URL fetch tool (map to read_url_content)
WebFetch: { kind: 'read_url_content', forward: forwardWebFetchArgs, reverse: reverseWebFetchArgs },
// Codex CLI (already speaks cascade-ish vocabulary)
view_file: { kind: 'view_file', forward: identityArgs, reverse: identityArgs },
run_command: { kind: 'run_command', forward: forwardRunCommandPassThrough, reverse: reverseRunCommandPassThrough },
grep_search: { kind: 'grep_search_v2', forward: identityArgs, reverse: identityArgs },
grep_search_v2: { kind: 'grep_search_v2', forward: identityArgs, reverse: identityArgs },
find: { kind: 'find', forward: identityArgs, reverse: identityArgs },
list_dir: { kind: 'list_directory', forward: forwardListDirArgs, reverse: reverseListDirArgs },
list_directory: { kind: 'list_directory', forward: forwardListDirArgs, reverse: reverseListDirArgs },
write_to_file: { kind: 'write_to_file', forward: identityArgs, reverse: identityArgs },
// Common synonyms surfaced by other clients
read_file: { kind: 'view_file', forward: forwardReadArgs, reverse: reverseReadArgs },
shell: { kind: 'run_command', forward: forwardBashArgs, reverse: reverseBashArgs },
// ββ Codex CLI 0.128 toolset (#115 v2.0.66) βββββββββββββββββββββββ
// Captured from a real codex exec request body via
// scripts/probes/dump-codex-tools.mjs. codex CLI declares 11 tools by
// default; only `shell_command` has a clean cascade-native equivalent.
// The rest (apply_patch / update_plan / request_user_input / web_search /
// view_image / spawn_agent / send_input / resume_agent / wait_agent /
// close_agent) intentionally stay OFF this map β partition mode routes
// unmapped tools through the existing toolPreamble emulation path.
// Adding apply_patch / web_search here was tried in v2.0.66 dev but
// their forward translators have no lossless cascade target (apply_patch
// is multi-file patches, write_to_file is single-target; web_search β
// read_url_content), so they'd produce garbage cascade steps.
shell_command: { kind: 'run_command', forward: forwardCodexShellArgs, reverse: reverseCodexShellArgs },
// v2.0.70 β codex `web_search` maps to cascade search_web. codex
// declares it as type:'web_search' but responses.js flattens to
// function/web_search before it reaches this map.
web_search: { kind: 'search_web', forward: forwardWebSearchArgs, reverse: reverseWebSearchArgs },
};
// Edit / MultiEdit translate to propose_code. ActionSpec / ActionResult are
// nested messages with their own schemas β for v2.0.65 we degrade Edit to a
// pass-through that preserves args inside CustomToolSpec.arguments_json so
// the planner sees a structured record without us shipping the full
// ActionSpec proto. The caller's reverse translator restores its original
// payload because we keep the arguments_json verbatim.
function forwardEditArgs(args) {
return { __raw_edit: JSON.stringify(args || {}) };
}
function reverseEditArgs(cascade) {
if (cascade && typeof cascade.__raw_edit === 'string') return safeJsonParse(cascade.__raw_edit);
return cascade || {};
}
// run_command pass-through: cascade and Codex both name the param
// "command" / "command_line" β accept either, normalise on the cascade side.
function forwardRunCommandPassThrough(args) {
return {
command_line: args.command_line || args.command || '',
cwd: args.cwd || '',
blocking: true,
};
}
function reverseRunCommandPassThrough(cascade) {
return {
command_line: cascade.command_line || cascade.proposed_command_line || '',
...(cascade.cwd ? { cwd: cascade.cwd } : {}),
};
}
// ββ Codex CLI 0.128 codex-specific arg shapes βββββββββββββββββββββββ
// codex CLI's `shell_command` declares: {command:"<cmd>", workdir?:"...",
// timeout_ms?:int}. cascade run_command takes command_line + cwd. The
// reverse direction restores codex's expected shape so when the proxy
// surfaces a cascade-side run_command step back to codex CLI, codex
// picks it up as a normal shell_command tool_call.
function forwardCodexShellArgs(args) {
return {
command_line: args.command || args.command_line || '',
cwd: args.workdir || args.cwd || '',
blocking: true,
};
}
function reverseCodexShellArgs(cascade) {
return {
command: cascade.command_line || cascade.proposed_command_line || '',
...(cascade.cwd ? { workdir: cascade.cwd } : {}),
};
}
// βββ Caller-tools introspection βββββββββββββββββββββββββββββββββββββ
/**
* canMapAllTools(tools) β returns true when EVERY caller-declared tool is
* present in TOOL_MAP. Kept for backwards compatibility / strict-mode
* callers; v2.0.66 prefers partitionTools() because real-world clients
* (codex CLI 0.128 declares 11 tools, only 1 maps cleanly) almost never
* pass the all-mapped bar.
*/
export function canMapAllTools(tools) {
if (!Array.isArray(tools) || tools.length === 0) return false;
for (const t of tools) {
if (t?.type !== 'function') return false;
const name = t.function?.name;
if (!name || !TOOL_MAP[name]) return false;
}
return true;
}
/**
* partitionTools(tools) β split the caller's tools[] into:
* - mapped: tools with a TOOL_MAP entry (route through cascade native
* trajectory steps)
* - unmapped: tools without a mapping (route through the existing
* emulation toolPreamble path)
*
* Both subsets coexist in the same request: mapped tools enable native
* planner_mode=DEFAULT + tool_allowlist while unmapped tool definitions
* are still injected into additional_instructions_section so the planner
* can fall through to text-protocol emit when it needs them.
*
* Returns { mapped: Tool[], unmapped: Tool[], hasAny: bool }.
*/
export function partitionTools(tools) {
const mapped = [];
const unmapped = [];
if (Array.isArray(tools)) {
for (const t of tools) {
if (t?.type !== 'function' || !t.function?.name) continue;
if (TOOL_MAP[t.function.name]) mapped.push(t);
else unmapped.push(t);
}
}
return { mapped, unmapped, hasAny: mapped.length > 0 };
}
/**
* Build the inverse lookup table: cascade kind β list of caller tool names
* that map onto it. Used by translateCascadeStepToToolCall to pick the
* caller-visible name when the planner emits a step (the caller might have
* declared `Read` OR `view_file` for the same kind; we emit the one they
* actually declared).
*/
export function buildReverseLookup(callerTools) {
const out = new Map();
if (!Array.isArray(callerTools)) return out;
for (const t of callerTools) {
if (t?.type !== 'function' || !t.function?.name) continue;
const name = t.function.name;
const entry = TOOL_MAP[name];
if (!entry) continue;
if (!out.has(entry.kind)) out.set(entry.kind, []);
out.get(entry.kind).push(name);
}
return out;
}
// βββ Forward: build cascade trajectory step proto βββββββββββββββββββ
//
// These produce raw protobuf bytes that drop straight into
// CortexTrajectoryStep oneof β caller wraps them with the trajectory step
// envelope (type, status, etc) via buildAdditionalStep below.
function buildViewFileBody(args) {
const parts = [];
if (args.absolute_path_uri) parts.push(writeStringField(1, args.absolute_path_uri));
if (args.offset) parts.push(writeVarintField(11, args.offset));
if (args.limit) parts.push(writeVarintField(12, args.limit));
if (typeof args.content === 'string') parts.push(writeStringField(4, args.content));
return Buffer.concat(parts);
}
function buildRunCommandBody(args) {
const parts = [];
if (args.command_line) parts.push(writeStringField(23, args.command_line));
if (args.cwd) parts.push(writeStringField(2, args.cwd));
if (args.blocking) parts.push(writeBoolField(11, true));
if (typeof args.stdout === 'string') parts.push(writeStringField(4, args.stdout));
if (typeof args.stderr === 'string') parts.push(writeStringField(5, args.stderr));
if (Number.isFinite(args.exit_code)) parts.push(writeVarintField(6, args.exit_code));
// combined_output (field 21) β RunCommandOutput { full=1 }. The planner
// reads this when reasoning about command results, so we mirror stdout
// there in addition to the legacy stdout field.
if (typeof args.full_output === 'string') {
const inner = writeStringField(1, args.full_output);
parts.push(writeMessageField(21, inner));
}
return Buffer.concat(parts);
}
function buildGrepSearchV2Body(args) {
const parts = [];
if (args.pattern) parts.push(writeStringField(2, args.pattern));
if (args.path) parts.push(writeStringField(3, args.path));
if (args.glob) parts.push(writeStringField(4, args.glob));
if (args.output_mode) parts.push(writeStringField(5, args.output_mode));
if (args.case_insensitive) parts.push(writeBoolField(10, true));
if (args.multiline) parts.push(writeBoolField(13, true));
if (args.type) parts.push(writeStringField(11, args.type));
if (args.head_limit) parts.push(writeVarintField(12, args.head_limit));
if (args.lines_after) parts.push(writeVarintField(6, args.lines_after));
if (args.lines_before) parts.push(writeVarintField(7, args.lines_before));
if (args.lines_both) parts.push(writeVarintField(8, args.lines_both));
if (typeof args.raw_output === 'string') parts.push(writeStringField(15, args.raw_output));
return Buffer.concat(parts);
}
function buildFindBody(args) {
const parts = [];
if (args.search_directory) parts.push(writeStringField(10, args.search_directory));
if (args.pattern) parts.push(writeStringField(1, args.pattern));
if (typeof args.raw_output === 'string') parts.push(writeStringField(11, args.raw_output));
return Buffer.concat(parts);
}
function buildListDirectoryBody(args) {
const parts = [];
if (args.directory_path_uri) parts.push(writeStringField(1, args.directory_path_uri));
// children (field 2, repeated string) β populated when emitting a fake
// "we already listed this dir, here are the names" step on tool_result.
if (Array.isArray(args.children)) {
for (const c of args.children) parts.push(writeStringField(2, String(c)));
}
return Buffer.concat(parts);
}
function buildWriteToFileBody(args) {
const parts = [];
if (args.target_file_uri) parts.push(writeStringField(1, args.target_file_uri));
if (Array.isArray(args.code_content)) {
for (const line of args.code_content) parts.push(writeStringField(2, String(line)));
}
if (args.file_created) parts.push(writeBoolField(4, true));
return Buffer.concat(parts);
}
// v2.0.70 β propose_code (CortexStepProposeCode = field 32 oneof).
// Body schema:
// ActionSpec action_spec = 1 message
// ActionResult action_result = 2 message
// string code_instruction = 3
// string markdown_language = 4
//
// ActionSpec.command = 1 β ActionSpecCommand:
// string instruction = 1
// repeated ReplacementChunk chunks = 9
// bool is_edit = 2
// oneof target β file = 4 (PathScopeItem) using absolute_uri = 5
//
// ReplacementChunk:
// string target_content = 1
// string replacement_content = 2
// bool allow_multiple = 3
function buildProposeCodeBody(args) {
const parts = [];
// action_spec.command(1).{...}
const cmdParts = [];
if (args.instruction) cmdParts.push(writeStringField(1, args.instruction));
cmdParts.push(writeBoolField(2, true)); // is_edit
if (Array.isArray(args.replacement_chunks)) {
for (const c of args.replacement_chunks) {
const chunkParts = [];
if (typeof c.target === 'string') chunkParts.push(writeStringField(1, c.target));
if (typeof c.replacement === 'string') chunkParts.push(writeStringField(2, c.replacement));
if (c.allow_multiple) chunkParts.push(writeBoolField(3, true));
cmdParts.push(writeMessageField(9, Buffer.concat(chunkParts)));
}
}
if (args.target_file_uri) {
// PathScopeItem { absolute_uri = 5 }
const psi = writeStringField(5, args.target_file_uri);
cmdParts.push(writeMessageField(4, psi)); // ActionSpecCommand.target.file = 4
}
const command = Buffer.concat(cmdParts);
// ActionSpec.command oneof at field 1
const actionSpec = writeMessageField(1, command);
parts.push(writeMessageField(1, actionSpec)); // CortexStepProposeCode.action_spec = 1
if (args.instruction) parts.push(writeStringField(3, args.instruction));
return Buffer.concat(parts);
}
// v2.0.70 β search_web (CortexStepSearchWeb = field 42 oneof).
// query = 1 string
// domain = 3 string
// summary = 5 string (server-filled; we mirror it on observation injection)
function buildSearchWebBody(args) {
const parts = [];
if (args.query) parts.push(writeStringField(1, args.query));
if (args.domain) parts.push(writeStringField(3, args.domain));
if (typeof args.summary === 'string') parts.push(writeStringField(5, args.summary));
return Buffer.concat(parts);
}
// v2.0.93 β read_url_content (CortexStepReadUrlContent = field 40 oneof).
// url = 1 string
// summary = 5 string (server-filled)
function buildReadUrlContentBody(args) {
const parts = [];
if (args.url) parts.push(writeStringField(1, args.url));
if (typeof args.summary === 'string') parts.push(writeStringField(5, args.summary));
return Buffer.concat(parts);
}
const STEP_BODY_BUILDER = {
view_file: buildViewFileBody,
run_command: buildRunCommandBody,
grep_search_v2: buildGrepSearchV2Body,
grep_search: buildGrepSearchV2Body,
find: buildFindBody,
list_directory: buildListDirectoryBody,
write_to_file: buildWriteToFileBody,
propose_code: buildProposeCodeBody,
search_web: buildSearchWebBody,
read_url_content: buildReadUrlContentBody,
};
/**
* Build a CortexTrajectoryStep proto carrying a completed cascade-side step.
* Used to inject "the caller's tool result, expressed as if the planner
* already ran the equivalent cascade tool" into
* SendUserCascadeMessageRequest.additional_steps[9]. The planner sees a
* trajectory that already contains the answer and continues reasoning from
* there instead of asking again.
*
* Returns null if `kind` has no encoder (caller should fall back).
*/
export function buildAdditionalStep(kind, args) {
const meta = CASCADE_STEP[kind];
const builder = STEP_BODY_BUILDER[kind];
if (!meta || !builder) return null;
const body = builder(args || {});
// CortexTrajectoryStep envelope: type=1, status=4, oneof step body
return Buffer.concat([
writeVarintField(1, meta.typeEnum),
writeVarintField(4, CASCADE_STEP_STATUS_DONE),
writeMessageField(meta.oneofField, body),
]);
}
// βββ Reverse: parse cascade trajectory step β OpenAI tool_call ββββββββ
//
// CortexTrajectoryStep parser shared with windsurf.js parseTrajectorySteps.
// This module's variant focuses on the args side β given an already-parsed
// step (with the oneof body extracted), produce a {kind, args, observation}
// triple. windsurf.js handles the integer-tag pass; here we only decode the
// per-kind field schema.
function decodeViewFileStep(buf) {
const f = parseFields(buf);
return {
absolute_path_uri: getField(f, 1, 2)?.value?.toString('utf8') || '',
start_line: Number(getField(f, 2, 0)?.value || 0),
end_line: Number(getField(f, 3, 0)?.value || 0),
offset: Number(getField(f, 11, 0)?.value || 0),
limit: Number(getField(f, 12, 0)?.value || 0),
content: getField(f, 4, 2)?.value?.toString('utf8') || '',
raw_content: getField(f, 9, 2)?.value?.toString('utf8') || '',
};
}
function decodeRunCommandStep(buf) {
const f = parseFields(buf);
const decoded = {
command_line: getField(f, 23, 2)?.value?.toString('utf8')
|| getField(f, 1, 2)?.value?.toString('utf8') || '',
proposed_command_line: getField(f, 25, 2)?.value?.toString('utf8') || '',
cwd: getField(f, 2, 2)?.value?.toString('utf8') || '',
stdout: getField(f, 4, 2)?.value?.toString('utf8') || '',
stderr: getField(f, 5, 2)?.value?.toString('utf8') || '',
exit_code: getField(f, 6, 0)?.value,
};
// combined_output (RunCommandOutput { full=1 })
const combined = getField(f, 21, 2);
if (combined) {
const c = parseFields(combined.value);
const full = getField(c, 1, 2)?.value?.toString('utf8') || '';
if (full) decoded.full_output = full;
}
return decoded;
}
function decodeGrepSearchV2Step(buf) {
const f = parseFields(buf);
return {
pattern: getField(f, 2, 2)?.value?.toString('utf8') || '',
path: getField(f, 3, 2)?.value?.toString('utf8') || '',
glob: getField(f, 4, 2)?.value?.toString('utf8') || '',
output_mode: getField(f, 5, 2)?.value?.toString('utf8') || '',
lines_after: Number(getField(f, 6, 0)?.value || 0),
lines_before: Number(getField(f, 7, 0)?.value || 0),
lines_both: Number(getField(f, 8, 0)?.value || 0),
case_insensitive: !!getField(f, 10, 0)?.value,
multiline: !!getField(f, 13, 0)?.value,
type: getField(f, 11, 2)?.value?.toString('utf8') || '',
head_limit: Number(getField(f, 12, 0)?.value || 0),
raw_output: getField(f, 15, 2)?.value?.toString('utf8') || '',
};
}
function decodeFindStep(buf) {
const f = parseFields(buf);
return {
search_directory: getField(f, 10, 2)?.value?.toString('utf8') || '',
pattern: getField(f, 1, 2)?.value?.toString('utf8') || '',
raw_output: getField(f, 11, 2)?.value?.toString('utf8') || '',
};
}
function decodeListDirectoryStep(buf) {
const f = parseFields(buf);
return {
directory_path_uri: getField(f, 1, 2)?.value?.toString('utf8') || '',
children: getAllFields(f, 2)
.filter(x => x.wireType === 2)
.map(x => x.value.toString('utf8')),
};
}
function decodeWriteToFileStep(buf) {
const f = parseFields(buf);
return {
target_file_uri: getField(f, 1, 2)?.value?.toString('utf8') || '',
code_content: getAllFields(f, 2)
.filter(x => x.wireType === 2)
.map(x => x.value.toString('utf8')),
file_created: !!getField(f, 4, 0)?.value,
};
}
// v2.0.70 β decode propose_code: pull file_uri + replacement_chunks
// out of nested ActionSpec.command for round-trip back to Edit args.
function decodeProposeCodeStep(buf) {
const f = parseFields(buf);
const actionSpec = getField(f, 1, 2);
const out = { target_file_uri: '', replacement_chunks: [], instruction: '' };
if (!actionSpec) return out;
const asFields = parseFields(actionSpec.value);
const command = getField(asFields, 1, 2);
if (!command) return out;
const cmdFields = parseFields(command.value);
const instr = getField(cmdFields, 1, 2);
if (instr) out.instruction = instr.value.toString('utf8');
const fileTarget = getField(cmdFields, 4, 2);
if (fileTarget) {
const psi = parseFields(fileTarget.value);
const uri = getField(psi, 5, 2)?.value?.toString('utf8')
|| getField(psi, 1, 2)?.value?.toString('utf8') || '';
out.target_file_uri = uri;
}
for (const chunkField of getAllFields(cmdFields, 9)) {
if (chunkField.wireType !== 2) continue;
const cp = parseFields(chunkField.value);
out.replacement_chunks.push({
target: getField(cp, 1, 2)?.value?.toString('utf8') || '',
replacement: getField(cp, 2, 2)?.value?.toString('utf8') || '',
allow_multiple: !!getField(cp, 3, 0)?.value,
});
}
return out;
}
function decodeSearchWebStep(buf) {
const f = parseFields(buf);
return {
query: getField(f, 1, 2)?.value?.toString('utf8') || '',
domain: getField(f, 3, 2)?.value?.toString('utf8') || '',
summary: getField(f, 5, 2)?.value?.toString('utf8') || '',
};
}
function decodeReadUrlContentStep(buf) {
const f = parseFields(buf);
return {
url: getField(f, 1, 2)?.value?.toString('utf8') || '',
summary: getField(f, 5, 2)?.value?.toString('utf8') || '',
};
}
const STEP_BODY_DECODER = {
view_file: decodeViewFileStep,
run_command: decodeRunCommandStep,
grep_search_v2: decodeGrepSearchV2Step,
grep_search: decodeGrepSearchV2Step,
find: decodeFindStep,
list_directory: decodeListDirectoryStep,
write_to_file: decodeWriteToFileStep,
propose_code: decodeProposeCodeStep,
search_web: decodeSearchWebStep,
read_url_content: decodeReadUrlContentStep,
};
/**
* Given a CortexTrajectoryStep envelope (already parsed) and the caller's
* declared tools[], emit an OpenAI-shaped tool_call:
*
* { id, name, argumentsJson, observation }
*
* - `id` is synthesised from cascadeId + step index by the caller of this
* function (we don't have those handles here).
* - `name` is the caller-visible OpenAI tool name (Read/Bash/Grep/...) β
* resolved via buildReverseLookup. Falls back to the cascade kind name
* when the caller didn't declare a matching tool, which lets the proxy
* STILL surface trajectory tool calls for diagnostic purposes.
* - `argumentsJson` is `JSON.stringify(reverse(decoded))`.
* - `observation` is the part of the step the planner already filled in
* (file content, command stdout, etc) β the proxy DROPS this when
* forwarding to the caller (the caller will run their own version) but
* it's exposed here so callers that want to short-circuit on cached
* results can detect them.
*/
export function decodeCascadeStepToToolCall(stepFields, kind, callerLookup) {
const decoder = STEP_BODY_DECODER[kind];
const meta = CASCADE_STEP[kind];
if (!decoder || !meta) return null;
const oneof = getField(stepFields, meta.oneofField, 2);
if (!oneof) return null;
const decoded = decoder(oneof.value);
const candidates = callerLookup?.get(kind) || [];
// Pick the caller's preferred name. If they declared multiple tools that
// map onto this kind (rare β e.g., both Read and read_file) we use the
// first one in declaration order, which matches what they'd get from
// calling the same tool twice in their own code.
const callerName = candidates[0] || kind;
const reverseFn = TOOL_MAP[callerName]?.reverse || identityArgs;
let args;
try {
args = reverseFn(decoded);
} catch {
args = decoded;
}
return {
name: callerName,
arguments: args,
cascade_kind: kind,
observation: decoded,
};
}
// βββ Inject caller's tool history as additional_steps βββββββββββββββ
//
// When the caller's prior turns include role:"tool" messages (responses to
// tool_calls the assistant made), we want the planner to see a trajectory
// that already contains those steps with their results. This lets the
// planner reason from the post-tool state instead of re-asking.
/**
* Translate a single OpenAI assistant turn { tool_calls, ...} + the
* matching tool messages into an array of CortexTrajectoryStep buffers
* suitable for SendUserCascadeMessageRequest.additional_steps[9].
*
* Inputs:
* - assistantMessage: { role:'assistant', tool_calls: [{id, function:{name, arguments}}, ...] }
* - toolResults: Map<tool_call_id, content_string>
*
* For each tool_call we look up the cascade kind, encode the call args
* AS IF the planner had emitted them, and overlay the tool result onto
* the step (e.g. view_file.content = result_string for Read). Any
* tool_call whose name isn't in TOOL_MAP is skipped β those go through
* the existing user-message tool_result emulation fallback.
*
* Returns: Buffer[] (each one already has the CortexTrajectoryStep
* envelope baked in via buildAdditionalStep).
*/
export function buildAdditionalStepsFromHistory(messages) {
if (!Array.isArray(messages) || !messages.length) return [];
const out = [];
// Index tool result content by tool_call_id for fast lookup.
const toolResultById = new Map();
for (const m of messages) {
if (m?.role !== 'tool' || !m.tool_call_id) continue;
const content = typeof m.content === 'string'
? m.content
: (Array.isArray(m.content)
? m.content.filter(p => typeof p?.text === 'string').map(p => p.text).join('\n')
: JSON.stringify(m.content ?? ''));
toolResultById.set(m.tool_call_id, content);
}
for (const m of messages) {
if (m?.role !== 'assistant' || !Array.isArray(m.tool_calls)) continue;
for (const tc of m.tool_calls) {
const name = tc.function?.name;
const entry = TOOL_MAP[name];
if (!entry) continue;
const args = safeJsonParse(tc.function?.arguments);
let cascadeArgs;
try { cascadeArgs = entry.forward(args); } catch { continue; }
const observation = toolResultById.get(tc.id);
// v2.0.70 β apply_patch returns a sentinel from forward()
// because we can't lossless-encode multi-file patches into a
// single cascade step. Skip and let partition fallback to
// emulation toolPreamble.
if (cascadeArgs?.__apply_patch_unmappable) continue;
if (typeof observation === 'string') {
// Overlay the result onto the cascade step's "this is what came
// back" field. Per-kind because the result field varies:
// view_file β content (4)
// run_command β full_output / stdout (proxied via combined_output)
// grep_search_v2 β raw_output (15)
// find β raw_output (11)
// list_directory β children (2, repeated)
// write_to_file β file_created (4) β bool, ignore content
// search_web β summary (5)
// propose_code β no native result field (proxy passes back
// through emulation toolPreamble result text)
if (entry.kind === 'view_file') cascadeArgs.content = observation;
else if (entry.kind === 'run_command') {
cascadeArgs.full_output = observation;
cascadeArgs.stdout = observation;
cascadeArgs.exit_code = 0;
} else if (entry.kind === 'grep_search_v2' || entry.kind === 'grep_search') {
cascadeArgs.raw_output = observation;
} else if (entry.kind === 'find') {
cascadeArgs.raw_output = observation;
} else if (entry.kind === 'list_directory') {
cascadeArgs.children = observation
.split(/\r?\n/)
.map(s => s.trim())
.filter(Boolean);
} else if (entry.kind === 'search_web') {
cascadeArgs.summary = observation;
} else if (entry.kind === 'read_url_content') {
cascadeArgs.summary = observation;
}
}
const buf = buildAdditionalStep(entry.kind, cascadeArgs);
if (buf) out.push(buf);
}
}
return out;
}
// βββ Activation gate ββββββββββββββββββββββββββββββββββββββββββββββββ
/**
* Return true when the native bridge should be used for this request.
*
* v2.0.66 (#115 partition mode): the gate switched from "every tool must
* be mapped" (canMapAllTools) to "at least one tool is mapped"
* (partitionTools.hasAny). Real-world clients β codex CLI 0.128 declares
* 11 tools, only 1 (shell_command) maps cleanly β never pass the all-or-
* nothing bar, which is why v2.0.65 deployed but never fired in
* production. With partition mode, mapped tools route through
* trajectory-step injection while unmapped tools keep the emulation
* toolPreamble path; both coexist in the same request.
*
* v2.0.70 (#115 root-cause fix): GPT family REMOVED from auto-on. Real
* end-to-end probe on v2.0.69 with a single shell_command tool + GPT-5.5
* showed `markers=none / 0 tool_calls` and the model fabricated a fake
* timestamp output β cascade DEFAULT planner_mode describes
* `run_command` using cascade's internal trajectory grammar, which
* GPT's training has never seen.
*
* v2.0.75 (#124 zhqsuo critical regression). v2.0.70 ALSO turned the
* auto-on the OTHER way for Anthropic Claude β premise was "Claude
* speaks cascade-style tool_use natively so it'll execute well in the
* planner-mode path." Real-world behaviour was the opposite: when
* Claude Code (or any client whose tools[] models LOCAL filesystem ops
* β Read / Edit / Bash) hits this path, the cascade planner runs the
* tool inside Windsurf's REMOTE workspace sandbox
* (`/home/user/projects/workspace-devinxse`), not the user's machine.
* The user's files don't exist there, so `run_command` / `view_file`
* hang at lastStatus=2 (ACTIVE) until warm stall fires β every Claude
* tool call permanently stuck for 6+ minutes before erroring.
*
* The native bridge is only correct for clients whose tool inventory
* models REMOTE work (e.g. a self-contained agent that wants the
* proxy's sandbox to be the execution environment). Claude Code, Cline,
* Codex CLI, opencode all expect LOCAL execution. We can't tell from
* tools[] alone which intent the caller has, and the safe default
* therefore has to be OFF β opt in via env when the deployer knows the
* caller wants remote execution.
*
* Both env knobs still work:
* WINDSURFAPI_NATIVE_TOOL_BRIDGE=1 β force on for all callers
* WINDSURFAPI_NATIVE_TOOL_BRIDGE_OFF=1 β force off (default, but
* stays available for clarity)
*/
export function shouldUseNativeBridge(tools, { modelKey = '', provider = '', route = '' } = {}) {
if (process.env.WINDSURFAPI_NATIVE_TOOL_BRIDGE_OFF === '1') return false;
const explicitOn = process.env.WINDSURFAPI_NATIVE_TOOL_BRIDGE === '1';
const part = partitionTools(tools);
if (!part.hasAny) return false;
return explicitOn;
}
|