@costrict/csc 4.2.5-beta → 4.2.6-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +991 -576
- package/dist/services/rawDump/batchWorker.js +3 -3
- package/package.json +6 -4
package/dist/cli.js
CHANGED
|
@@ -35955,6 +35955,8 @@ var init_ui_permissions = __esm(() => {
|
|
|
35955
35955
|
"permissions.writeFileQuestion": "Do you want to {action} {path}?",
|
|
35956
35956
|
"permissions.symlinkOutsideCwd": "This will modify {path} (outside working directory) via a symlink",
|
|
35957
35957
|
"permissions.symlinkTarget": "Symlink target: {path}",
|
|
35958
|
+
"permissions.allow.reading.from.dir.during.session.beforeDir": "Yes, allow reading from ",
|
|
35959
|
+
"permissions.allow.reading.from.dir.during.session.afterDir": " during this session",
|
|
35958
35960
|
"permissions.commandPrefixPlaceholder": "command prefix (e.g., npm run:*)",
|
|
35959
35961
|
"permissions.commandPrefixPlaceholderPowershell": "command prefix (e.g., Get-Process:*)",
|
|
35960
35962
|
"permissions.describeAllowPlaceholder": "describe what to allow...",
|
|
@@ -36234,6 +36236,7 @@ var init_ui_common = __esm(() => {
|
|
|
36234
36236
|
"mcp.required": "(required)",
|
|
36235
36237
|
"mcp.unknown": "unknown",
|
|
36236
36238
|
"mcp.failedToParse": "Failed to parse",
|
|
36239
|
+
"mcp.notConfigured": "Not configured",
|
|
36237
36240
|
"mcp.containsWarnings": "Contains warnings",
|
|
36238
36241
|
"mcp.location": "Location:",
|
|
36239
36242
|
"mcp.errorTag": "[Error]",
|
|
@@ -36655,7 +36658,7 @@ var init_ui_common = __esm(() => {
|
|
|
36655
36658
|
"commands.allowed.tools": "Allowed tools",
|
|
36656
36659
|
"commands.answering": "Answering",
|
|
36657
36660
|
"commands.answering.navHint": "{upArrow}/{downArrow} to scroll \xB7 Space, Enter, or Escape to dismiss",
|
|
36658
|
-
"commands.anthropic.auth.status": "
|
|
36661
|
+
"commands.anthropic.auth.status": "CoStrict auth status",
|
|
36659
36662
|
"commands.archived": "Archived",
|
|
36660
36663
|
"commands.archived_2": "Archived 2",
|
|
36661
36664
|
"commands.archived_3": "Archived 3",
|
|
@@ -36791,7 +36794,7 @@ var init_ui_common = __esm(() => {
|
|
|
36791
36794
|
"commands.redacted": "Redacted",
|
|
36792
36795
|
"commands.redacted_2": "Redacted 2",
|
|
36793
36796
|
"commands.redacted.at": "Redacted at",
|
|
36794
|
-
"commands.relive.your.year.of.coding.with.claude": "Relive your year of coding with
|
|
36797
|
+
"commands.relive.your.year.of.coding.with.claude": "Relive your year of coding with CoStrict",
|
|
36795
36798
|
"commands.remote.session": "Remote session",
|
|
36796
36799
|
"commands.remove.tag": "Remove tag",
|
|
36797
36800
|
"commands.renamed.to": "Renamed to",
|
|
@@ -36967,6 +36970,7 @@ var init_ui_common = __esm(() => {
|
|
|
36967
36970
|
"login.consoleKeyConflict": "instead of CoStrict Console key. Either unset",
|
|
36968
36971
|
"mcp.desktop-import-name-collision": "Desktop import name collision",
|
|
36969
36972
|
"mcp.failed": "Failed",
|
|
36973
|
+
"mcp.failedServersNotice": "{count} MCP server(s) failed",
|
|
36970
36974
|
"mcp.more-below": "More below",
|
|
36971
36975
|
"mcp.needs-auth": "Needs authentication",
|
|
36972
36976
|
"mcp.return-after-auth": "Return after authentication",
|
|
@@ -38075,6 +38079,57 @@ Start a new session at {url}`,
|
|
|
38075
38079
|
};
|
|
38076
38080
|
});
|
|
38077
38081
|
|
|
38082
|
+
// locales/en/commands.pipe.ts
|
|
38083
|
+
var commands_pipe_default;
|
|
38084
|
+
var init_commands_pipe = __esm(() => {
|
|
38085
|
+
commands_pipe_default = {
|
|
38086
|
+
"pipe.send.notMasterMode": "Not in master mode. Use /attach <pipe-name> first.",
|
|
38087
|
+
"pipe.send.usage": "Usage: /send <pipe-name> <message>",
|
|
38088
|
+
"pipe.send.notAttached": 'Not attached to "{targetName}". Use /status to see connected sub sessions.',
|
|
38089
|
+
"pipe.send.connectionClosed": 'Connection to "{targetName}" is closed. Use /detach {targetName} and re-attach.',
|
|
38090
|
+
"pipe.send.sent": 'Sent to "{targetName}": {message}',
|
|
38091
|
+
"pipe.send.failed": 'Failed to send to "{targetName}": {error}',
|
|
38092
|
+
"pipe.attach.usage": `Usage: /attach <pipe-name>
|
|
38093
|
+
Use /pipes to list available pipes.`,
|
|
38094
|
+
"pipe.attach.alreadyAttached": 'Already attached to "{targetName}".',
|
|
38095
|
+
"pipe.attach.cannotAttachControlled": "Cannot attach: this sub is currently controlled by a master. Detach it from the master first.",
|
|
38096
|
+
"pipe.attach.connectFailed": 'Failed to connect to "{targetName}"{endpoint}: {error}',
|
|
38097
|
+
"pipe.attach.timeout": 'Attach to "{targetName}" timed out (no response within 5s).',
|
|
38098
|
+
"pipe.attach.attachedAsMaster": `Attached to "{targetName}" as master. Now monitoring {slaveCount} sub session(s).
|
|
38099
|
+
Use /send {targetName} <message> to send tasks.
|
|
38100
|
+
Use /status to see all connected subs.
|
|
38101
|
+
Use /detach {targetName} to disconnect.`,
|
|
38102
|
+
"pipe.attach.rejected": 'Attach rejected by "{targetName}": {reason}',
|
|
38103
|
+
"pipe.detach.notAttachedAny": "Not attached to any CLI.",
|
|
38104
|
+
"pipe.detach.controlledByMaster": "This sub session is controlled by a master. The master must detach.",
|
|
38105
|
+
"pipe.detach.notAttached": 'Not attached to "{targetName}". Use /status to see connected sub sessions.',
|
|
38106
|
+
"pipe.detach.detached": 'Detached from "{targetName}".',
|
|
38107
|
+
"pipe.detach.detachedAll": "Detached from {count} sub session(s): {names}. Back to main mode.",
|
|
38108
|
+
"pipe.status.mainNotConnected": `Main mode \u2014 not connected to any CLIs.
|
|
38109
|
+
Use /attach <pipe-name> to connect to a sub session.`,
|
|
38110
|
+
"pipe.status.controlledByMaster": `{role} mode \u2014 controlled by "{attachedBy}".
|
|
38111
|
+
All session data is being reported to the master.`,
|
|
38112
|
+
"pipe.status.masterNoSubs": `Master mode but no sub sessions connected.
|
|
38113
|
+
Use /attach <pipe-name> to connect.`,
|
|
38114
|
+
"pipe.status.masterHeader": "Master mode \u2014 {count} sub session(s) connected:",
|
|
38115
|
+
"pipe.status.slaveStatus": " Status: {status} ({connected})",
|
|
38116
|
+
"pipe.status.slaveConnected": " Connected: {time}",
|
|
38117
|
+
"pipe.status.slaveHistory": " History: {count} entries",
|
|
38118
|
+
"pipe.status.commandsHeader": "Commands:",
|
|
38119
|
+
"pipe.status.cmdSend": " /send <name> <msg> \u2014 Send a task to a sub session",
|
|
38120
|
+
"pipe.status.cmdHistory": " /history <name> \u2014 View sub session transcript",
|
|
38121
|
+
"pipe.status.cmdDetach": " /detach [name] \u2014 Disconnect from a sub session (or all)",
|
|
38122
|
+
"pipe.claimMain.noServer": "Pipe server not started. Cannot claim main.",
|
|
38123
|
+
"pipe.claimMain.alreadyMain": "This instance is already the main. No change needed.",
|
|
38124
|
+
"pipe.claimMain.success": "Main role claimed successfully.",
|
|
38125
|
+
"pipe.claimMain.machineId": "Machine ID: {id}",
|
|
38126
|
+
"pipe.claimMain.pipe": "Pipe: {pipe}",
|
|
38127
|
+
"pipe.claimMain.previousMain": "Previous main machine: {id}",
|
|
38128
|
+
"pipe.claimMain.subsBound": "All existing subs are now bound to this instance.",
|
|
38129
|
+
"pipe.claimMain.usePipes": "Use /pipes to verify."
|
|
38130
|
+
};
|
|
38131
|
+
});
|
|
38132
|
+
|
|
38078
38133
|
// locales/en/tools.ts
|
|
38079
38134
|
var tools_default;
|
|
38080
38135
|
var init_tools = __esm(() => {
|
|
@@ -38457,7 +38512,29 @@ var init_errors2 = __esm(() => {
|
|
|
38457
38512
|
"errors.gemini.noResponseBody": "Gemini API returned no response body",
|
|
38458
38513
|
"errors.gemini.ssePayloadFailed": "Failed to parse Gemini SSE payload: {error}",
|
|
38459
38514
|
"errors.gemini.trailingSsePayloadFailed": "Failed to parse trailing Gemini SSE payload: {error}",
|
|
38460
|
-
"errors.plugins.invalidScope": 'Invalid scope "{scope}". Must be one of: {validScopes}'
|
|
38515
|
+
"errors.plugins.invalidScope": 'Invalid scope "{scope}". Must be one of: {validScopes}',
|
|
38516
|
+
"errors.print.executionError": "Execution error",
|
|
38517
|
+
"errors.print.maxTurns": `Error: Reached max turns ({maxTurns}).
|
|
38518
|
+
Tip: Increase the limit with --max-turns or continue in a new session.`,
|
|
38519
|
+
"errors.print.maxBudgetUsd": "Error: Exceeded USD budget (${maxBudgetUsd}).\nTip: Increase the limit with --max-budget-usd or start a new session to continue.",
|
|
38520
|
+
"errors.print.maxStructuredOutputRetries": `Error: Failed to provide valid structured output after maximum retries.
|
|
38521
|
+
Tip: Simplify your schema or check if the output format matches the expected structure.`,
|
|
38522
|
+
"security.commandContains": "Command contains {message}",
|
|
38523
|
+
"security.commandSubstitution": "$() command substitution",
|
|
38524
|
+
"security.processSubIn": "process substitution <()",
|
|
38525
|
+
"security.processSubOut": "process substitution >()",
|
|
38526
|
+
"security.zshProcessSub": "Zsh process substitution =()",
|
|
38527
|
+
"security.zshEqualsExpansion": "Zsh equals expansion (=cmd)",
|
|
38528
|
+
"security.paramExpansion": "${} parameter substitution",
|
|
38529
|
+
"security.legacyArithExpansion": "$[] legacy arithmetic expansion",
|
|
38530
|
+
"security.zshParamExpansion": "Zsh-style parameter expansion",
|
|
38531
|
+
"security.zshGlobQualifier": "Zsh-style glob qualifiers",
|
|
38532
|
+
"security.zshGlobExec": "Zsh glob qualifier with command execution",
|
|
38533
|
+
"security.zshAlwaysBlock": "Zsh always block (try/always construct)",
|
|
38534
|
+
"security.powershellComment": "PowerShell comment syntax",
|
|
38535
|
+
"security.backtickSubstitution": "backticks (`) for command substitution",
|
|
38536
|
+
"security.powershellSubexpressions": "subexpressions $()",
|
|
38537
|
+
"security.powershellExpandableStrings": "expandable strings with embedded expressions"
|
|
38461
38538
|
};
|
|
38462
38539
|
});
|
|
38463
38540
|
|
|
@@ -39188,7 +39265,29 @@ csc up completed successfully.`,
|
|
|
39188
39265
|
[tail] Watching for new output... (Ctrl+C to detach)
|
|
39189
39266
|
`,
|
|
39190
39267
|
"cli.bg.tailDetached": `
|
|
39191
|
-
[tail] Detached from session
|
|
39268
|
+
[tail] Detached from session.`,
|
|
39269
|
+
"cli.updateCCB.currentVersion": `Current version: {version}
|
|
39270
|
+
`,
|
|
39271
|
+
"cli.updateCCB.packageManager": `Package manager: {manager}
|
|
39272
|
+
`,
|
|
39273
|
+
"cli.updateCCB.checkingUpdates": `Checking for updates...
|
|
39274
|
+
`,
|
|
39275
|
+
"cli.updateCCB.failedCheck": "Failed to check for updates",
|
|
39276
|
+
"cli.updateCCB.unableFetch": `Unable to fetch latest version from npm registry.
|
|
39277
|
+
`,
|
|
39278
|
+
"cli.updateCCB.upToDate": "ccb is up to date ({version})",
|
|
39279
|
+
"cli.updateCCB.newVersion": `New version available: {latest} (current: {current})
|
|
39280
|
+
`,
|
|
39281
|
+
"cli.updateCCB.installing": `Installing update via {manager}...
|
|
39282
|
+
`,
|
|
39283
|
+
"cli.updateCCB.successfullyUpdated": "Successfully updated from {from} to {to}",
|
|
39284
|
+
"cli.updateCCB.updateFailed": "Update failed",
|
|
39285
|
+
"cli.updateCCB.errorDetail": `{error}
|
|
39286
|
+
`,
|
|
39287
|
+
"cli.updateCCB.tryManual": `
|
|
39288
|
+
Try manually updating with:
|
|
39289
|
+
`,
|
|
39290
|
+
"cli.updateCCB.manualCommand": " {command}"
|
|
39192
39291
|
};
|
|
39193
39292
|
});
|
|
39194
39293
|
|
|
@@ -39583,6 +39682,7 @@ var init_ui_components = __esm(() => {
|
|
|
39583
39682
|
"components.retry": "Retry",
|
|
39584
39683
|
"components.retrying": "Retrying",
|
|
39585
39684
|
"components.retrying.in": "Retrying in",
|
|
39685
|
+
"components.retrying.in.detail": "Retrying in {seconds} second(s) (attempt {attempt}/{max})",
|
|
39586
39686
|
"components.review.the.requested.local.action.before.continuing": "Review the requested local action before continuing",
|
|
39587
39687
|
"components.reviewing": "Reviewing",
|
|
39588
39688
|
"components.rewind": "Rewind",
|
|
@@ -39996,7 +40096,8 @@ var init_ui_plugins = __esm(() => {
|
|
|
39996
40096
|
"plugins.installed.and.configured": "Installed and configured {name}",
|
|
39997
40097
|
"plugins.installed.but.failed.to.save.config": "{detail}",
|
|
39998
40098
|
"plugins.installed.components": "Installed components:",
|
|
39999
|
-
"plugins.installed.count": "Installed {count}
|
|
40099
|
+
"plugins.installed.count.single": "Installed {count} plugin",
|
|
40100
|
+
"plugins.installed.count.plural": "Installed {count} plugins",
|
|
40000
40101
|
"plugins.installed.partial": "Installed {success}/{total} plugins",
|
|
40001
40102
|
"plugins.installed.plugins": "Installed plugins (",
|
|
40002
40103
|
"plugins.installing": "Installing\u2026",
|
|
@@ -40043,8 +40144,6 @@ var init_ui_plugins = __esm(() => {
|
|
|
40043
40144
|
"plugins.plugin.command.usage": "Plugin Command Usage:",
|
|
40044
40145
|
"plugins.plugin.details": "Plugin Details",
|
|
40045
40146
|
"plugins.plugin.details_2": "Plugin details",
|
|
40046
|
-
"plugins.plugins.stateinstalledpluginslength.0": `Plugins &&\r
|
|
40047
|
-
state.installedPlugins.length > 0 && (`,
|
|
40048
40147
|
"plugins.processing": "Processing\u2026",
|
|
40049
40148
|
"plugins.processing_2": "Processing\u2026",
|
|
40050
40149
|
"plugins.processing.changes": "Processing changes\u2026",
|
|
@@ -40226,7 +40325,7 @@ var init_ui_permissions2 = __esm(() => {
|
|
|
40226
40325
|
ui_permissions_default2 = {
|
|
40227
40326
|
"permissions.autoApproved": "\u81EA\u52A8\u6279\u51C6",
|
|
40228
40327
|
"permissions.matched": "\u5339\u914D",
|
|
40229
|
-
"permissions.requiresManualApproval": "\u9700\u8981\u624B\u52A8\u6279
|
|
40328
|
+
"permissions.requiresManualApproval": "\u9700\u8981\u624B\u52A8\u5BA1\u6279",
|
|
40230
40329
|
"permissions.proceed": "\u662F\u5426\u7EE7\u7EED\uFF1F",
|
|
40231
40330
|
"permissions.escToReject": "Esc \u62D2\u7EDD",
|
|
40232
40331
|
"permissions.tabForFeedback": "Tab \u6DFB\u52A0\u53CD\u9988",
|
|
@@ -40265,6 +40364,8 @@ var init_ui_permissions2 = __esm(() => {
|
|
|
40265
40364
|
"permissions.writeFileQuestion": "\u662F\u5426{action} {path}\uFF1F",
|
|
40266
40365
|
"permissions.symlinkOutsideCwd": "\u8FD9\u5C06\u901A\u8FC7\u7B26\u53F7\u94FE\u63A5\u4FEE\u6539 {path}\uFF08\u4F4D\u4E8E\u5DE5\u4F5C\u76EE\u5F55\u5916\u90E8\uFF09",
|
|
40267
40366
|
"permissions.symlinkTarget": "\u7B26\u53F7\u94FE\u63A5\u76EE\u6807\uFF1A{path}",
|
|
40367
|
+
"permissions.allow.reading.from.dir.during.session.beforeDir": "\u5141\u8BB8\u5728\u6B64\u6B21\u4F1A\u8BDD\u671F\u95F4\u8BFB\u53D6 ",
|
|
40368
|
+
"permissions.allow.reading.from.dir.during.session.afterDir": "",
|
|
40268
40369
|
"permissions.commandPrefixPlaceholder": "\u547D\u4EE4\u524D\u7F00\uFF08\u5982 npm run:*\uFF09",
|
|
40269
40370
|
"permissions.commandPrefixPlaceholderPowershell": "\u547D\u4EE4\u524D\u7F00\uFF08\u5982 Get-Process:*\uFF09",
|
|
40270
40371
|
"permissions.describeAllowPlaceholder": "\u63CF\u8FF0\u5141\u8BB8\u7684\u5185\u5BB9\u2026",
|
|
@@ -40275,15 +40376,15 @@ var init_ui_permissions2 = __esm(() => {
|
|
|
40275
40376
|
"permissions.editNotebookTitle": "\u7F16\u8F91\u7B14\u8BB0\u672C",
|
|
40276
40377
|
"permissions.useSkillTitle": '\u4F7F\u7528\u6280\u80FD "{name}"\uFF1F',
|
|
40277
40378
|
"permissions.skillDescription": "CoStrict \u53EF\u80FD\u4F1A\u4F7F\u7528\u6B64\u6280\u80FD\u4E2D\u7684\u6307\u4EE4\u3001\u4EE3\u7801\u6216\u6587\u4EF6\u3002",
|
|
40278
|
-
"permissions.toolUse": "\u5DE5\u5177\
|
|
40379
|
+
"permissions.toolUse": "\u5DE5\u5177\u8C03\u7528",
|
|
40279
40380
|
"permissions.mcpSuffix": "\uFF08MCP\uFF09",
|
|
40280
40381
|
"permissions.pastedImage": "\u7C98\u8D34\u7684\u56FE\u7247",
|
|
40281
|
-
"permissions.waitingForApproval": "\u7B49\u5F85\u56E2\u961F\u8D1F\u8D23\u4EBA\u6279
|
|
40382
|
+
"permissions.waitingForApproval": "\u7B49\u5F85\u56E2\u961F\u8D1F\u8D23\u4EBA\u5BA1\u6279",
|
|
40282
40383
|
"permissions.toolLabel": "\u5DE5\u5177\uFF1A",
|
|
40283
40384
|
"permissions.hostLabel": "\u4E3B\u673A\uFF1A",
|
|
40284
40385
|
"permissions.allowConnection": "\u662F\u5426\u5141\u8BB8\u6B64\u8FDE\u63A5\uFF1F",
|
|
40285
40386
|
"permissions.networkOutsideSandbox": "\u6C99\u7BB1\u5916\u90E8\u7684\u7F51\u7EDC\u8BF7\u6C42",
|
|
40286
|
-
"permissions.enterPlanMode": "CoStrict \u60F3\u8981\u8FDB\u5165\u8BA1\u5212\u6A21\u5F0F\u4EE5\u63A2\u7D22\u548C\u8BBE\u8BA1\u5B9E\u73B0\
|
|
40387
|
+
"permissions.enterPlanMode": "CoStrict \u60F3\u8981\u8FDB\u5165\u8BA1\u5212\u6A21\u5F0F\u4EE5\u63A2\u7D22\u548C\u8BBE\u8BA1\u5B9E\u73B0\u8BA1\u5212\u3002",
|
|
40287
40388
|
"permissions.exitPlanMode": "CoStrict \u60F3\u8981\u9000\u51FA\u8BA1\u5212\u6A21\u5F0F",
|
|
40288
40389
|
"permissions.hereIsPlan": "\u4EE5\u4E0B\u662F CoStrict \u7684\u8BA1\u5212\uFF1A",
|
|
40289
40390
|
"permissions.reviewArtifact": "CoStrict \u60F3\u8981\u5BA1\u67E5{title}\u3002",
|
|
@@ -40368,7 +40469,7 @@ var init_ui_messages2 = __esm(() => {
|
|
|
40368
40469
|
"messages.tokenWarning": "\u63A5\u8FD1 token \u4E0A\u9650\uFF08{used}/{max}\uFF09",
|
|
40369
40470
|
"messages.toolComplete": "{tool} \u5DF2\u5B8C\u6210",
|
|
40370
40471
|
"messages.toolFailed": "{tool} \u5931\u8D25\uFF1A{error}",
|
|
40371
|
-
"messages.toolRunning": "\u6B63\u5728\
|
|
40472
|
+
"messages.toolRunning": "\u6B63\u5728\u6267\u884C {tool}...",
|
|
40372
40473
|
"messages.userRejected": "\u7528\u6237\u62D2\u7EDD\u4E86{operation}",
|
|
40373
40474
|
"rateLimit.closeToExtraUsageSpending": "\u60A8\u5373\u5C06\u8FBE\u5230\u989D\u5916\u4F7F\u7528\u989D\u5EA6\u4E0A\u9650",
|
|
40374
40475
|
"rateLimit.outOfExtraUsage": "\u60A8\u7684\u989D\u5916\u7528\u91CF\u5DF2\u7528\u5B8C",
|
|
@@ -40463,7 +40564,7 @@ var init_ui_common2 = __esm(() => {
|
|
|
40463
40564
|
"settings.config.saved.remoteControlReset": "\u5DF2\u91CD\u7F6E\u8FDC\u7A0B\u63A7\u5236\u4E3A\u9ED8\u8BA4\u503C",
|
|
40464
40565
|
"settings.config.dismissed": "\u914D\u7F6E\u5BF9\u8BDD\u6846\u5DF2\u5173\u95ED",
|
|
40465
40566
|
"dialog.help.dismissed": "\u5E2E\u52A9\u5BF9\u8BDD\u6846\u5DF2\u5173\u95ED",
|
|
40466
|
-
"dialog.agents.dismissed": "
|
|
40567
|
+
"dialog.agents.dismissed": "\u4EE3\u7406\u5BF9\u8BDD\u6846\u5DF2\u5173\u95ED",
|
|
40467
40568
|
"dialog.skills.dismissed": "\u6280\u80FD\u5BF9\u8BDD\u6846\u5DF2\u5173\u95ED",
|
|
40468
40569
|
"dialog.theme.dismissed": "\u4E3B\u9898\u9009\u62E9\u5668\u5DF2\u5173\u95ED",
|
|
40469
40570
|
"dialog.stats.dismissed": "\u7EDF\u8BA1\u5BF9\u8BDD\u6846\u5DF2\u5173\u95ED",
|
|
@@ -40504,8 +40605,8 @@ var init_ui_common2 = __esm(() => {
|
|
|
40504
40605
|
"mcp.needsAuth": "\u9700\u8981\u8BA4\u8BC1",
|
|
40505
40606
|
"mcp.failedUnavailable": "\u5931\u8D25\uFF08\u53EF\u80FD\u4E0D\u53EF\u7528\uFF09",
|
|
40506
40607
|
"mcp.mayNeedAuth": "\u53EF\u80FD\u9700\u8981\u8BA4\u8BC1",
|
|
40507
|
-
"mcp.agentOnly": "\u4EC5
|
|
40508
|
-
"mcp.agentMCPs": "
|
|
40608
|
+
"mcp.agentOnly": "\u4EC5\u4EE3\u7406",
|
|
40609
|
+
"mcp.agentMCPs": "\u4EE3\u7406 MCP",
|
|
40509
40610
|
"mcp.unavailableServers": "\u4E0D\u53EF\u7528\u7684\u670D\u52A1\u5668\u5728\u91CD\u8FDE\u524D\u65E0\u6CD5\u4F7F\u7528",
|
|
40510
40611
|
"mcp.errorLogsDebug": "\u4F7F\u7528 --debug \u67E5\u770B\u9519\u8BEF\u65E5\u5FD7",
|
|
40511
40612
|
"mcp.runCscDebug": "\u8FD0\u884C csc --debug \u67E5\u770B\u9519\u8BEF\u65E5\u5FD7",
|
|
@@ -40527,11 +40628,11 @@ var init_ui_common2 = __esm(() => {
|
|
|
40527
40628
|
"mcp.command": "\u547D\u4EE4\uFF1A",
|
|
40528
40629
|
"mcp.usedBy": "\u4F7F\u7528\u8005\uFF1A",
|
|
40529
40630
|
"mcp.status": "\u72B6\u6001\uFF1A",
|
|
40530
|
-
"mcp.notConnectedAgentOnly": "\u672A\u8FDE\u63A5\uFF08\u4EC5
|
|
40631
|
+
"mcp.notConnectedAgentOnly": "\u672A\u8FDE\u63A5\uFF08\u4EC5\u4EE3\u7406\uFF09",
|
|
40531
40632
|
"mcp.auth": "\u8BA4\u8BC1\uFF1A",
|
|
40532
40633
|
"mcp.authenticated": "\u5DF2\u8BA4\u8BC1",
|
|
40533
40634
|
"mcp.mayNeedAuthentication": "\u53EF\u80FD\u9700\u8981\u8BA4\u8BC1",
|
|
40534
|
-
"mcp.agentOnlyNote": "\u6B64\u670D\u52A1\u5668\u4EC5\u5728\u8FD0\u884C
|
|
40635
|
+
"mcp.agentOnlyNote": "\u6B64\u670D\u52A1\u5668\u4EC5\u5728\u8FD0\u884C\u4EE3\u7406\u65F6\u8FDE\u63A5\u3002",
|
|
40535
40636
|
"mcp.error": "\u9519\u8BEF\uFF1A{error}",
|
|
40536
40637
|
"mcp.failedToLoadDescription": "\u52A0\u8F7D\u63CF\u8FF0\u5931\u8D25",
|
|
40537
40638
|
"mcp.readOnly": "[\u53EA\u8BFB]",
|
|
@@ -40544,6 +40645,7 @@ var init_ui_common2 = __esm(() => {
|
|
|
40544
40645
|
"mcp.required": "\uFF08\u5FC5\u586B\uFF09",
|
|
40545
40646
|
"mcp.unknown": "\u672A\u77E5",
|
|
40546
40647
|
"mcp.failedToParse": "\u89E3\u6790\u5931\u8D25",
|
|
40648
|
+
"mcp.notConfigured": "\u672A\u914D\u7F6E",
|
|
40547
40649
|
"mcp.containsWarnings": "\u5305\u542B\u8B66\u544A",
|
|
40548
40650
|
"mcp.location": "\u4F4D\u7F6E\uFF1A",
|
|
40549
40651
|
"mcp.errorTag": "[\u9519\u8BEF]",
|
|
@@ -40672,8 +40774,8 @@ var init_ui_common2 = __esm(() => {
|
|
|
40672
40774
|
"doctor.noVersionLocks": "\u65E0\u6D3B\u8DC3\u7248\u672C\u9501",
|
|
40673
40775
|
"doctor.running": "\uFF08\u8FD0\u884C\u4E2D\uFF09",
|
|
40674
40776
|
"doctor.stale": "\uFF08\u5DF2\u8FC7\u671F\uFF09",
|
|
40675
|
-
"doctor.agentParseErrors": "
|
|
40676
|
-
"doctor.failedToParseAgents": "\u89E3\u6790 {n} \u4E2A
|
|
40777
|
+
"doctor.agentParseErrors": "\u4EE3\u7406\u89E3\u6790\u9519\u8BEF",
|
|
40778
|
+
"doctor.failedToParseAgents": "\u89E3\u6790 {n} \u4E2A\u4EE3\u7406\u6587\u4EF6\u5931\u8D25\uFF1A",
|
|
40677
40779
|
"doctor.pluginErrors": "\u63D2\u4EF6\u9519\u8BEF",
|
|
40678
40780
|
"doctor.pluginErrorsDetected": "\u68C0\u6D4B\u5230 {n} \u4E2A\u63D2\u4EF6\u9519\u8BEF\uFF1A",
|
|
40679
40781
|
"doctor.unknown": "\u672A\u77E5",
|
|
@@ -40710,11 +40812,11 @@ var init_ui_common2 = __esm(() => {
|
|
|
40710
40812
|
"panel.fetch": "\u83B7\u53D6",
|
|
40711
40813
|
"panel.entries": "\u6761\u76EE",
|
|
40712
40814
|
"panel.archive": "\u5F52\u6863",
|
|
40713
|
-
"panel.statusDesc": "\u663E\u793A\u5F85\u5904\u7406\u6807\u8BB0\u3001\u59CB\u7EC8\u6A21\u5F0F\u548C\
|
|
40714
|
-
"panel.onceDesc": "\u4EC5\u5728\u4E0B\u6B21 API \u8C03\u7528\u65F6\
|
|
40715
|
-
"panel.alwaysDesc": "\u6BCF\u6B21 API \u8C03\u7528\u90FD\
|
|
40815
|
+
"panel.statusDesc": "\u663E\u793A\u5F85\u5904\u7406\u6807\u8BB0\u3001\u59CB\u7EC8\u6A21\u5F0F\u548C\u5931\u6548\u6B21\u6570",
|
|
40816
|
+
"panel.onceDesc": "\u4EC5\u5728\u4E0B\u6B21 API \u8C03\u7528\u65F6\u4F7F\u63D0\u793A\u7F13\u5B58\u5931\u6548",
|
|
40817
|
+
"panel.alwaysDesc": "\u6BCF\u6B21 API \u8C03\u7528\u90FD\u4F7F\u63D0\u793A\u7F13\u5B58\u5931\u6548",
|
|
40716
40818
|
"panel.offDesc": "\u7981\u7528\u59CB\u7EC8\u6A21\u5F0F\u5E76\u6E05\u9664\u5F85\u5904\u7406\u5355\u6B21\u6807\u8BB0",
|
|
40717
|
-
"panel.clearOnceDesc": "\u53D6\u6D88\u5F85\u5904\u7406\u7684\u5355\u6B21\u7F13\u5B58\
|
|
40819
|
+
"panel.clearOnceDesc": "\u53D6\u6D88\u5F85\u5904\u7406\u7684\u5355\u6B21\u7F13\u5B58\u5931\u6548",
|
|
40718
40820
|
"panel.statusTuiDesc": "\u663E\u793A\u6807\u8BB0\u548C\u73AF\u5883\u8986\u76D6\u72B6\u6001",
|
|
40719
40821
|
"panel.toggleDesc": "\u5207\u6362\u4E0B\u6B21\u4F1A\u8BDD\u7684\u6301\u4E45\u5316 TUI \u6A21\u5F0F",
|
|
40720
40822
|
"panel.onDesc": "\u542F\u7528\u65E0\u95EA\u70C1\u7684\u4EA4\u66FF\u5C4F\u5E55\u6A21\u5F0F",
|
|
@@ -40783,7 +40885,7 @@ var init_ui_common2 = __esm(() => {
|
|
|
40783
40885
|
"panel.autoWorkflowRuns": "\u5DE5\u4F5C\u6D41\u8FD0\u884C",
|
|
40784
40886
|
"panel.autoWorkflowRunsDesc": "\u663E\u793A\u6301\u4E45\u5316\u7684 WorkflowTool \u8FD0\u884C\u53CA\u5176\u5F53\u524D\u5DE5\u4F5C\u6D41\u6B65\u9AA4",
|
|
40785
40887
|
"panel.autoTeams": "\u56E2\u961F",
|
|
40786
|
-
"panel.autoTeamsDesc": "\u663E\u793A
|
|
40888
|
+
"panel.autoTeamsDesc": "\u663E\u793A\u4EE3\u7406\u56E2\u961F\u3001\u961F\u53CB\u540E\u7AEF\u3001\u6D3B\u52A8\u548C\u5F00\u653E\u4EFB\u52A1",
|
|
40787
40889
|
"panel.autoPipes": "\u7BA1\u9053",
|
|
40788
40890
|
"panel.autoPipesDesc": "\u663E\u793A\u7EC8\u7AEF\u6D88\u606F\u4F20\u9012\u7684 UDS/\u547D\u540D\u7BA1\u9053\u548C LAN \u6CE8\u518C\u8868",
|
|
40789
40891
|
"panel.autoRuntime": "\u8FD0\u884C\u65F6",
|
|
@@ -40815,7 +40917,7 @@ var init_ui_common2 = __esm(() => {
|
|
|
40815
40917
|
"panel.skillLearningStopDesc": "\u4E3A\u6B64\u4F1A\u8BDD\u7981\u7528\u6280\u80FD\u5B66\u4E60",
|
|
40816
40918
|
"panel.skillLearningAboutDesc": "\u6280\u80FD\u5B66\u4E60\u529F\u80FD\u7684\u8BE6\u7EC6\u63CF\u8FF0",
|
|
40817
40919
|
"panel.tuiTitle": "TUI \u6A21\u5F0F",
|
|
40818
|
-
"panel.breakCacheTitle": "\u7F13\u5B58\
|
|
40920
|
+
"panel.breakCacheTitle": "\u7F13\u5B58\u5931\u6548",
|
|
40819
40921
|
"panel.flowLabel": "\u6D41\u7A0B {id}",
|
|
40820
40922
|
"panel.flowStatusGoal": "{status}\uFF1A{goal}",
|
|
40821
40923
|
"panel.resumeLabel": "\u6062\u590D {id}",
|
|
@@ -40847,22 +40949,22 @@ var init_ui_common2 = __esm(() => {
|
|
|
40847
40949
|
{value}`,
|
|
40848
40950
|
"panel.internalMissingKeyValue": "\u5185\u90E8\u9519\u8BEF\uFF1A\u7F3A\u5C11 key \u6216 value",
|
|
40849
40951
|
"panel.storedEntry": "\u5DF2\u5B58\u50A8 {key}\uFF08{length} \u5B57\u7B26\uFF09",
|
|
40850
|
-
"agents.createNew": "\u521B\u5EFA\u65B0
|
|
40851
|
-
"agents.noAgentsFound": "\u672A\u627E\u5230
|
|
40852
|
-
"agents.noAgentsDescription": "\u672A\u627E\u5230
|
|
40853
|
-
"agents.agentsDescription": "\u6BCF\u4E2A\u5B50
|
|
40952
|
+
"agents.createNew": "\u521B\u5EFA\u65B0\u4EE3\u7406",
|
|
40953
|
+
"agents.noAgentsFound": "\u672A\u627E\u5230\u4EE3\u7406",
|
|
40954
|
+
"agents.noAgentsDescription": "\u672A\u627E\u5230\u4EE3\u7406\u3002\u521B\u5EFA\u4E13\u95E8\u7684\u5B50\u4EE3\u7406\uFF0CCoStrict \u53EF\u4EE5\u59D4\u6D3E\u4EFB\u52A1\u7ED9\u5B83\u4EEC\u3002",
|
|
40955
|
+
"agents.agentsDescription": "\u6BCF\u4E2A\u5B50\u4EE3\u7406\u6709\u81EA\u5DF1\u7684\u4E0A\u4E0B\u6587\u7A97\u53E3\u3001\u81EA\u5B9A\u4E49\u7CFB\u7EDF\u63D0\u793A\u8BCD\u548C\u7279\u5B9A\u5DE5\u5177\u3002",
|
|
40854
40956
|
"agents.suggestions": "\u5C1D\u8BD5\u521B\u5EFA\uFF1A\u4EE3\u7801\u5BA1\u67E5\u5458\u3001\u4EE3\u7801\u7B80\u5316\u5458\u3001\u5B89\u5168\u5BA1\u67E5\u5458\u3001\u6280\u672F\u4E3B\u7BA1\u6216 UX \u5BA1\u67E5\u5458\u3002",
|
|
40855
|
-
"agents.builtinAgents": "\u5185\u7F6E
|
|
40957
|
+
"agents.builtinAgents": "\u5185\u7F6E\u4EE3\u7406",
|
|
40856
40958
|
"agents.alwaysAvailable": "\uFF08\u59CB\u7EC8\u53EF\u7528\uFF09",
|
|
40857
|
-
"agents.builtinDescription": "\u5185\u7F6E
|
|
40858
|
-
"agents.countAgents": "{count} \u4E2A
|
|
40959
|
+
"agents.builtinDescription": "\u5185\u7F6E\u4EE3\u7406\u9ED8\u8BA4\u63D0\u4F9B\uFF0C\u65E0\u6CD5\u4FEE\u6539\u3002",
|
|
40960
|
+
"agents.countAgents": "{count} \u4E2A\u4EE3\u7406",
|
|
40859
40961
|
"agents.memory": "\u8BB0\u5FC6",
|
|
40860
40962
|
"agents.shadowedBy": "\u88AB {source} \u8986\u76D6",
|
|
40861
40963
|
"agents.allTools": "\u5168\u90E8\u5DE5\u5177",
|
|
40862
40964
|
"agents.none": "\u65E0",
|
|
40863
40965
|
"agents.unrecognized": "\u672A\u8BC6\u522B\uFF1A",
|
|
40864
40966
|
"agents.description": "\u63CF\u8FF0",
|
|
40865
|
-
"agents.descriptionHint": "\uFF08\u544A\u8BC9 CoStrict \u4F55\u65F6\u4F7F\u7528\u6B64
|
|
40967
|
+
"agents.descriptionHint": "\uFF08\u544A\u8BC9 CoStrict \u4F55\u65F6\u4F7F\u7528\u6B64\u4EE3\u7406\uFF09\uFF1A",
|
|
40866
40968
|
"agents.tools": "\u5DE5\u5177",
|
|
40867
40969
|
"agents.model": "\u6A21\u578B",
|
|
40868
40970
|
"agents.permissionMode": "\u6743\u9650\u6A21\u5F0F",
|
|
@@ -40873,18 +40975,18 @@ var init_ui_common2 = __esm(() => {
|
|
|
40873
40975
|
"agents.color": "\u989C\u8272",
|
|
40874
40976
|
"agents.systemPrompt": "\u7CFB\u7EDF\u63D0\u793A\u8BCD",
|
|
40875
40977
|
"agents.source": "\u6765\u6E90\uFF1A",
|
|
40876
|
-
"agents.viewAgent": "\u67E5\u770B
|
|
40877
|
-
"agents.editAgent": "\u7F16\u8F91
|
|
40878
|
-
"agents.deleteAgent": "\u5220\u9664
|
|
40978
|
+
"agents.viewAgent": "\u67E5\u770B\u4EE3\u7406",
|
|
40979
|
+
"agents.editAgent": "\u7F16\u8F91\u4EE3\u7406",
|
|
40980
|
+
"agents.deleteAgent": "\u5220\u9664\u4EE3\u7406",
|
|
40879
40981
|
"agents.back": "\u8FD4\u56DE",
|
|
40880
40982
|
"agents.yesDelete": "\u662F\uFF0C\u5220\u9664",
|
|
40881
40983
|
"agents.noCancel": "\u5426\uFF0C\u53D6\u6D88",
|
|
40882
|
-
"agents.deleteTitle": "\u5220\u9664
|
|
40883
|
-
"agents.deleteConfirm": "\u786E\u5B9A\u8981\u5220\u9664
|
|
40884
|
-
"agents.editTitle": "\u7F16\u8F91
|
|
40984
|
+
"agents.deleteTitle": "\u5220\u9664\u4EE3\u7406",
|
|
40985
|
+
"agents.deleteConfirm": "\u786E\u5B9A\u8981\u5220\u9664\u4EE3\u7406 {name} \u5417\uFF1F",
|
|
40986
|
+
"agents.editTitle": "\u7F16\u8F91\u4EE3\u7406\uFF1A{name}",
|
|
40885
40987
|
"agents.openedInEditor": "\u5DF2\u5728\u7F16\u8F91\u5668\u4E2D\u6253\u5F00 {name}\u3002\u5982\u679C\u505A\u4E86\u4FEE\u6539\uFF0C\u8BF7\u91CD\u542F\u4EE5\u52A0\u8F7D\u6700\u65B0\u7248\u672C\u3002",
|
|
40886
|
-
"agents.updatedAgent": "\u5DF2\u66F4\u65B0
|
|
40887
|
-
"agents.failedToSave": "\u4FDD\u5B58
|
|
40988
|
+
"agents.updatedAgent": "\u5DF2\u66F4\u65B0\u4EE3\u7406\uFF1A{name}",
|
|
40989
|
+
"agents.failedToSave": "\u4FDD\u5B58\u4EE3\u7406\u5931\u8D25",
|
|
40888
40990
|
"agents.openInEditor": "\u5728\u7F16\u8F91\u5668\u4E2D\u6253\u5F00",
|
|
40889
40991
|
"agents.editTools": "\u7F16\u8F91\u5DE5\u5177",
|
|
40890
40992
|
"agents.editModel": "\u7F16\u8F91\u6A21\u578B",
|
|
@@ -40892,37 +40994,37 @@ var init_ui_common2 = __esm(() => {
|
|
|
40892
40994
|
"agents.navigateHint": "\u6309 \u2191/\u2193 \u5BFC\u822A \xB7 Enter \u9009\u62E9 \xB7 Esc \u8FD4\u56DE",
|
|
40893
40995
|
"agents.selectHint": "\u6309 \u2191/\u2193 \u5BFC\u822A\uFF0CEnter \u9009\u62E9\uFF0CEsc \u53D6\u6D88",
|
|
40894
40996
|
"agents.enterOrEsc": "\u6309 Enter \u6216 Esc \u8FD4\u56DE",
|
|
40895
|
-
"agents.deletedAgent": "\u5DF2\u5220\u9664
|
|
40896
|
-
"agents.agentChanges":
|
|
40997
|
+
"agents.deletedAgent": "\u5DF2\u5220\u9664\u4EE3\u7406\uFF1A{name}",
|
|
40998
|
+
"agents.agentChanges": `\u4EE3\u7406\u53D8\u66F4\uFF1A
|
|
40897
40999
|
{changes}`,
|
|
40898
41000
|
"agents.builtinSource": "\u5185\u7F6E\uFF08\u59CB\u7EC8\u53EF\u7528\uFF09\uFF1A",
|
|
40899
|
-
"agents.title": "
|
|
40900
|
-
"agents.pluginAgents": "\u63D2\u4EF6
|
|
40901
|
-
"agents.wizard.title": "\u521B\u5EFA\u65B0
|
|
40902
|
-
"agents.wizard.typeStep": "
|
|
41001
|
+
"agents.title": "\u4EE3\u7406",
|
|
41002
|
+
"agents.pluginAgents": "\u63D2\u4EF6\u4EE3\u7406",
|
|
41003
|
+
"agents.wizard.title": "\u521B\u5EFA\u65B0\u4EE3\u7406",
|
|
41004
|
+
"agents.wizard.typeStep": "\u4EE3\u7406\u7C7B\u578B\uFF08\u6807\u8BC6\u7B26\uFF09",
|
|
40903
41005
|
"agents.wizard.enterText": "\u8F93\u5165\u6587\u672C",
|
|
40904
41006
|
"agents.wizard.continue": "\u7EE7\u7EED",
|
|
40905
|
-
"agents.wizard.enterId": "\u4E3A\u60A8\u7684
|
|
41007
|
+
"agents.wizard.enterId": "\u4E3A\u60A8\u7684\u4EE3\u7406\u8F93\u5165\u552F\u4E00\u6807\u8BC6\u7B26\uFF1A",
|
|
40906
41008
|
"agents.wizard.idPlaceholder": "\u4F8B\u5982\uFF1Atest-runner, tech-lead \u7B49",
|
|
40907
41009
|
"agents.wizard.generateMethod": "\u4F7F\u7528 CoStrict \u751F\u6210\uFF08\u63A8\u8350\uFF09",
|
|
40908
41010
|
"agents.wizard.manualMethod": "\u624B\u52A8\u914D\u7F6E",
|
|
40909
41011
|
"agents.wizard.creationMethod": "\u521B\u5EFA\u65B9\u5F0F",
|
|
40910
41012
|
"agents.wizard.descriptionRequired": "\u63CF\u8FF0\u4E3A\u5FC5\u586B\u9879",
|
|
40911
|
-
"agents.wizard.descriptionStep": "\u63CF\u8FF0\uFF08\u544A\u8BC9 CoStrict \u4F55\u65F6\u4F7F\u7528\u6B64
|
|
40912
|
-
"agents.wizard.whenToUse": "CoStrict \u5E94\u5728\u4F55\u65F6\u4F7F\u7528\u6B64
|
|
40913
|
-
"agents.wizard.descPlaceholder": "\u4F8B\u5982\uFF1A\u5728\u5B8C\u6210\u4EE3\u7801\u7F16\u5199\u540E\u4F7F\u7528\u6B64
|
|
41013
|
+
"agents.wizard.descriptionStep": "\u63CF\u8FF0\uFF08\u544A\u8BC9 CoStrict \u4F55\u65F6\u4F7F\u7528\u6B64\u4EE3\u7406\uFF09",
|
|
41014
|
+
"agents.wizard.whenToUse": "CoStrict \u5E94\u5728\u4F55\u65F6\u4F7F\u7528\u6B64\u4EE3\u7406\uFF1F",
|
|
41015
|
+
"agents.wizard.descPlaceholder": "\u4F8B\u5982\uFF1A\u5728\u5B8C\u6210\u4EE3\u7801\u7F16\u5199\u540E\u4F7F\u7528\u6B64\u4EE3\u7406...",
|
|
40914
41016
|
"agents.wizard.selectTools": "\u9009\u62E9\u5DE5\u5177",
|
|
40915
41017
|
"agents.wizard.toggleSelection": "\u5207\u6362\u9009\u62E9",
|
|
40916
41018
|
"agents.wizard.selectModel": "\u9009\u62E9\u6A21\u578B",
|
|
40917
41019
|
"agents.wizard.promptRequired": "\u7CFB\u7EDF\u63D0\u793A\u8BCD\u4E3A\u5FC5\u586B\u9879",
|
|
40918
41020
|
"agents.wizard.systemPromptStep": "\u7CFB\u7EDF\u63D0\u793A\u8BCD",
|
|
40919
|
-
"agents.wizard.enterPrompt": "\u8F93\u5165
|
|
41021
|
+
"agents.wizard.enterPrompt": "\u8F93\u5165\u4EE3\u7406\u7684\u7CFB\u7EDF\u63D0\u793A\u8BCD\uFF1A",
|
|
40920
41022
|
"agents.wizard.beComprehensive": "\u5C3D\u53EF\u80FD\u8BE6\u7EC6\u4EE5\u83B7\u5F97\u6700\u4F73\u6548\u679C",
|
|
40921
41023
|
"agents.wizard.promptPlaceholder": "\u4F60\u662F\u4E00\u540D\u79F0\u804C\u7684\u4EE3\u7801\u5BA1\u67E5\u5458...",
|
|
40922
41024
|
"agents.wizard.generationCancelled": "\u751F\u6210\u5DF2\u53D6\u6D88",
|
|
40923
|
-
"agents.wizard.describePrompt": "\u8BF7\u63CF\u8FF0
|
|
40924
|
-
"agents.wizard.describeAgent": "\u63CF\u8FF0\u6B64
|
|
40925
|
-
"agents.wizard.generating": "\u6B63\u5728\u6839\u636E\u63CF\u8FF0\u751F\u6210
|
|
41025
|
+
"agents.wizard.describePrompt": "\u8BF7\u63CF\u8FF0\u4EE3\u7406\u5E94\u8BE5\u505A\u4EC0\u4E48",
|
|
41026
|
+
"agents.wizard.describeAgent": "\u63CF\u8FF0\u6B64\u4EE3\u7406\u5E94\u8BE5\u505A\u4EC0\u4E48\u4EE5\u53CA\u4F55\u65F6\u4F7F\u7528\uFF08\u5C3D\u53EF\u80FD\u8BE6\u7EC6\u4EE5\u83B7\u5F97\u6700\u4F73\u6548\u679C\uFF09",
|
|
41027
|
+
"agents.wizard.generating": "\u6B63\u5728\u6839\u636E\u63CF\u8FF0\u751F\u6210\u4EE3\u7406...",
|
|
40926
41028
|
"agents.wizard.descPromptPlaceholder": "\u4F8B\u5982\uFF1A\u5E2E\u6211\u4E3A\u6211\u7684\u4EE3\u7801\u7F16\u5199\u5355\u5143\u6D4B\u8BD5...",
|
|
40927
41029
|
"agents.wizard.chooseColor": "\u9009\u62E9\u80CC\u666F\u989C\u8272",
|
|
40928
41030
|
"agents.wizard.projectLocation": "\u9879\u76EE\uFF08.costrict/agents/\uFF09",
|
|
@@ -40933,7 +41035,7 @@ var init_ui_common2 = __esm(() => {
|
|
|
40933
41035
|
"agents.wizard.memoryProjectScope": "\u9879\u76EE\u8303\u56F4\uFF08.costrict/agent-memory/\uFF09",
|
|
40934
41036
|
"agents.wizard.memoryLocalScope": "\u672C\u5730\u8303\u56F4\uFF08.costrict/agent-memory-local/\uFF09",
|
|
40935
41037
|
"agents.wizard.memoryProjectRecommended": "\u9879\u76EE\u8303\u56F4\uFF08.costrict/agent-memory/\uFF09\uFF08\u63A8\u8350\uFF09",
|
|
40936
|
-
"agents.wizard.configureMemory": "\u914D\u7F6E
|
|
41038
|
+
"agents.wizard.configureMemory": "\u914D\u7F6E\u4EE3\u7406\u8BB0\u5FC6",
|
|
40937
41039
|
"agents.wizard.confirmSave": "\u786E\u8BA4\u5E76\u4FDD\u5B58",
|
|
40938
41040
|
"agents.wizard.save": "\u4FDD\u5B58",
|
|
40939
41041
|
"agents.wizard.editInEditor": "\u5728\u7F16\u8F91\u5668\u4E2D\u7F16\u8F91",
|
|
@@ -40942,8 +41044,8 @@ var init_ui_common2 = __esm(() => {
|
|
|
40942
41044
|
"agents.wizard.warnings": "\u8B66\u544A\uFF1A",
|
|
40943
41045
|
"agents.wizard.errors": "\u9519\u8BEF\uFF1A",
|
|
40944
41046
|
"agents.wizard.saveHint": "\u6309 s \u6216 Enter \u4FDD\u5B58\uFF0C\u6309 e \u4FDD\u5B58\u5E76\u7F16\u8F91",
|
|
40945
|
-
"agents.wizard.createdAndOpened": "\u5DF2\u521B\u5EFA
|
|
40946
|
-
"agents.wizard.created": "\u5DF2\u521B\u5EFA
|
|
41047
|
+
"agents.wizard.createdAndOpened": "\u5DF2\u521B\u5EFA\u4EE3\u7406\uFF1A{name} \u5E76\u5728\u7F16\u8F91\u5668\u4E2D\u6253\u5F00\u3002\u5982\u679C\u505A\u4E86\u4FEE\u6539\uFF0C\u8BF7\u91CD\u542F\u4EE5\u52A0\u8F7D\u6700\u65B0\u7248\u672C\u3002",
|
|
41048
|
+
"agents.wizard.created": "\u5DF2\u521B\u5EFA\u4EE3\u7406\uFF1A{name}",
|
|
40947
41049
|
" and an API key": " \u548C API \u5BC6\u94A5",
|
|
40948
41050
|
"login.envVariable": " \u73AF\u5883\u53D8\u91CF\u3002",
|
|
40949
41051
|
active: "\u6D3B\u8DC3",
|
|
@@ -40958,13 +41060,13 @@ var init_ui_common2 = __esm(() => {
|
|
|
40958
41060
|
"commands.-.theme": "\u4E3B\u9898",
|
|
40959
41061
|
"commands.1.open.your.api.providers.key.management.page": "1. \u6253\u5F00\u60A8\u7684 API \u63D0\u4F9B\u5546\u5BC6\u94A5\u7BA1\u7406\u9875\u9762",
|
|
40960
41062
|
"commands.active": "\u6D3B\u8DC3",
|
|
40961
|
-
"commands.agent": "
|
|
40962
|
-
"commands.agent_2": "
|
|
40963
|
-
"commands.agent.created": "
|
|
40964
|
-
"commands.agent5": "
|
|
41063
|
+
"commands.agent": "\u4EE3\u7406",
|
|
41064
|
+
"commands.agent_2": "\u4EE3\u7406",
|
|
41065
|
+
"commands.agent.created": "\u4EE3\u7406\u5DF2\u521B\u5EFA",
|
|
41066
|
+
"commands.agent5": "\u4EE3\u7406",
|
|
40965
41067
|
"commands.allowed.tools": "\u5141\u8BB8\u7684\u5DE5\u5177",
|
|
40966
41068
|
"commands.answering": "\u6B63\u5728\u56DE\u7B54",
|
|
40967
|
-
"commands.anthropic.auth.status": "
|
|
41069
|
+
"commands.anthropic.auth.status": "CoStrict \u8BA4\u8BC1\u72B6\u6001",
|
|
40968
41070
|
"commands.archived": "\u5DF2\u5F52\u6863",
|
|
40969
41071
|
"commands.archived_2": "\u5DF2\u5F52\u6863",
|
|
40970
41072
|
"commands.archived_3": "\u5DF2\u5F52\u6863",
|
|
@@ -41005,7 +41107,7 @@ var init_ui_common2 = __esm(() => {
|
|
|
41005
41107
|
"commands.answering.navHint": "{upArrow}/{downArrow} \u6EDA\u52A8 \xB7 Space\u3001Enter \u6216 Escape \u5173\u95ED",
|
|
41006
41108
|
"commands.credential.archived": "\u51ED\u636E\u5DF2\u5F52\u6863",
|
|
41007
41109
|
"commands.credentials.in": "\u4E2D\u7684\u51ED\u636E",
|
|
41008
|
-
"commands.current.plan": "\u5F53\u524D\
|
|
41110
|
+
"commands.current.plan": "\u5F53\u524D\u8BA1\u5212",
|
|
41009
41111
|
"commands.deleted": "\u5DF2\u5220\u9664",
|
|
41010
41112
|
"commands.deleted_2": "\u5DF2\u5220\u9664",
|
|
41011
41113
|
"commands.deleted_4": "\u5DF2\u5220\u9664",
|
|
@@ -41044,7 +41146,7 @@ var init_ui_common2 = __esm(() => {
|
|
|
41044
41146
|
"commands.loading.conversations": "\u6B63\u5728\u52A0\u8F7D\u5BF9\u8BDD",
|
|
41045
41147
|
"commands.loading.thinkback.skill": "\u6B63\u5728\u52A0\u8F7D ThinkBack \u6280\u80FD",
|
|
41046
41148
|
"commands.local.memory.stores": "\u672C\u5730\u8BB0\u5FC6\u5E93",
|
|
41047
|
-
"commands.local.vault.keys": "\u672C\u5730\u4FDD\
|
|
41149
|
+
"commands.local.vault.keys": "\u672C\u5730\u4FDD\u7BA1\u5E93\u5BC6\u94A5",
|
|
41048
41150
|
"commands.location": "\u4F4D\u7F6E",
|
|
41049
41151
|
"commands.login": "\u767B\u5F55",
|
|
41050
41152
|
"commands.manage.permissions": "\u7BA1\u7406\u6743\u9650",
|
|
@@ -41072,7 +41174,7 @@ var init_ui_common2 = __esm(() => {
|
|
|
41072
41174
|
"commands.next.run_2": "\u4E0B\u6B21\u8FD0\u884C",
|
|
41073
41175
|
"commands.no": "\u5426",
|
|
41074
41176
|
"commands.no.active.assistant.sessions.found": "\u672A\u627E\u5230\u6D3B\u8DC3\u7684\u52A9\u624B\u4F1A\u8BDD",
|
|
41075
|
-
"commands.no.credentials.in.vault": "\u4FDD\
|
|
41177
|
+
"commands.no.credentials.in.vault": "\u4FDD\u7BA1\u5E93\u4E2D\u6CA1\u6709\u51ED\u636E",
|
|
41076
41178
|
"commands.no.entries.in": "\u6CA1\u6709\u6761\u76EE",
|
|
41077
41179
|
"commands.no.favorites.in.this.category": "\u6B64\u5206\u7C7B\u4E2D\u6CA1\u6709\u6536\u85CF",
|
|
41078
41180
|
"commands.no.ide.selected": "\u672A\u9009\u62E9 IDE",
|
|
@@ -41101,7 +41203,7 @@ var init_ui_common2 = __esm(() => {
|
|
|
41101
41203
|
"commands.redacted": "\u5DF2\u8131\u654F",
|
|
41102
41204
|
"commands.redacted_2": "\u5DF2\u8131\u654F",
|
|
41103
41205
|
"commands.redacted.at": "\u8131\u654F\u4E8E",
|
|
41104
|
-
"commands.relive.your.year.of.coding.with.claude": "\u91CD\u6E29\u60A8\u4E0E
|
|
41206
|
+
"commands.relive.your.year.of.coding.with.claude": "\u91CD\u6E29\u60A8\u4E0E CoStrict \u7F16\u7801\u7684\u4E00\u5E74",
|
|
41105
41207
|
"commands.remote.session": "\u8FDC\u7A0B\u4F1A\u8BDD",
|
|
41106
41208
|
"commands.remove.tag": "\u79FB\u9664\u6807\u7B7E",
|
|
41107
41209
|
"commands.renamed.to": "\u5DF2\u91CD\u547D\u540D\u4E3A",
|
|
@@ -41112,7 +41214,7 @@ var init_ui_common2 = __esm(() => {
|
|
|
41112
41214
|
"commands.schedule_2": "\u5B9A\u65F6\u4EFB\u52A1",
|
|
41113
41215
|
"commands.scheduled.empty": "\u6CA1\u6709\u8BA1\u5212\u7684\u89E6\u53D1\u5668\u3002\u4F7F\u7528 /schedule create <cron\u8868\u8FBE\u5F0F> <\u63D0\u793A\u8BCD> \u521B\u5EFA\u4E00\u4E2A\u3002",
|
|
41114
41216
|
"commands.scheduled.triggers": "\u8BA1\u5212\u7684\u89E6\u53D1\u5668 (",
|
|
41115
|
-
"commands.scheduled.agents": "\u5DF2\u8C03\u5EA6\u7684
|
|
41217
|
+
"commands.scheduled.agents": "\u5DF2\u8C03\u5EA6\u7684\u4EE3\u7406",
|
|
41116
41218
|
"commands.secret.revealed.in.terminal.clear.scrollback.if.this.session": "\u5BC6\u94A5\u5DF2\u663E\u793A\u5728\u7EC8\u7AEF\u4E2D\uFF0C\u5982\u6709\u9700\u8981\u8BF7\u6E05\u9664\u6EDA\u52A8\u7F13\u51B2\u533A",
|
|
41117
41219
|
"commands.secret.stored": "\u5BC6\u94A5\u5DF2\u5B58\u50A8",
|
|
41118
41220
|
"commands.select.an.ide.to.open.the.project": "\u9009\u62E9 IDE \u4EE5\u6253\u5F00\u9879\u76EE",
|
|
@@ -41148,7 +41250,7 @@ var init_ui_common2 = __esm(() => {
|
|
|
41148
41250
|
"commands.this.will.remove.the.tag.from.the.current.session": "\u8FD9\u5C06\u4ECE\u5F53\u524D\u4F1A\u8BDD\u79FB\u9664\u6807\u7B7E",
|
|
41149
41251
|
"commands.to.connect": "\u8FDE\u63A5",
|
|
41150
41252
|
"commands.to.create.a.cloud.session": "\u521B\u5EFA\u4E91\u7AEF\u4F1A\u8BDD",
|
|
41151
|
-
"commands.to.enable.vault.agents-platform.memory-stores": "\u5982\u9700\u542F\u7528\u4FDD\
|
|
41253
|
+
"commands.to.enable.vault.agents-platform.memory-stores": "\u5982\u9700\u542F\u7528\u4FDD\u7BA1\u5E93\u4EE3\u7406\u548C\u5E73\u53F0\u8BB0\u5FC6\u5E93",
|
|
41152
41254
|
"commands.to.get.started": "\u5F00\u59CB\u4F7F\u7528",
|
|
41153
41255
|
"commands.track": "\u8DDF\u8E2A",
|
|
41154
41256
|
"commands.trigger": "\u89E6\u53D1\u5668",
|
|
@@ -41163,17 +41265,17 @@ var init_ui_common2 = __esm(() => {
|
|
|
41163
41265
|
"commands.updated": "\u66F4\u65B0\u65F6\u95F4",
|
|
41164
41266
|
"commands.usage": "\u7528\u91CF",
|
|
41165
41267
|
"commands.use.local-memory.store": "\u4F7F\u7528\u672C\u5730\u8BB0\u5FC6\u5E93",
|
|
41166
|
-
"commands.use.local-vault.get": "\u4F7F\u7528\u672C\u5730\u4FDD\
|
|
41268
|
+
"commands.use.local-vault.get": "\u4F7F\u7528\u672C\u5730\u4FDD\u7BA1\u5E93\u83B7\u53D6",
|
|
41167
41269
|
"commands.use.memory-stores.create-memory": "\u4F7F\u7528 memory-stores create-memory",
|
|
41168
41270
|
"commands.use.vault.add-credential": "\u4F7F\u7528 vault add-credential",
|
|
41169
41271
|
"commands.value.mask": "\u503C\u63A9\u7801",
|
|
41170
41272
|
"commands.value.mask_2": "\u503C\u63A9\u7801",
|
|
41171
|
-
"commands.vault": "\u4FDD\
|
|
41172
|
-
"commands.vault_2": "\u4FDD\
|
|
41173
|
-
"commands.vault_3": "\u4FDD\
|
|
41174
|
-
"commands.vault.archived": "\u4FDD\
|
|
41175
|
-
"commands.vault.created": "\u4FDD\
|
|
41176
|
-
"commands.vaults": "\u4FDD\
|
|
41273
|
+
"commands.vault": "\u4FDD\u7BA1\u5E93",
|
|
41274
|
+
"commands.vault_2": "\u4FDD\u7BA1\u5E93",
|
|
41275
|
+
"commands.vault_3": "\u4FDD\u7BA1\u5E93",
|
|
41276
|
+
"commands.vault.archived": "\u4FDD\u7BA1\u5E93\u5DF2\u5F52\u6863",
|
|
41277
|
+
"commands.vault.created": "\u4FDD\u7BA1\u5E93\u5DF2\u521B\u5EFA",
|
|
41278
|
+
"commands.vaults": "\u4FDD\u7BA1\u5E93",
|
|
41177
41279
|
"commands.version": "\u7248\u672C",
|
|
41178
41280
|
"commands.version_2": "\u7248\u672C",
|
|
41179
41281
|
"commands.version.redacted": "\u7248\u672C\u5DF2\u8131\u654F",
|
|
@@ -41211,7 +41313,7 @@ var init_ui_common2 = __esm(() => {
|
|
|
41211
41313
|
"common.iterm2.split.pane.setup": "iTerm2 \u5206\u5C4F\u8BBE\u7F6E",
|
|
41212
41314
|
"common.iterm2.split.pane.support.is.ready": "iTerm2 \u5206\u5C4F\u652F\u6301\u5DF2\u5C31\u7EEA",
|
|
41213
41315
|
"common.large": "\u5927",
|
|
41214
|
-
"common.large.cumulative.agent.descriptions.will.impact.performance": "\u7D2F\u79EF\u7684
|
|
41316
|
+
"common.large.cumulative.agent.descriptions.will.impact.performance": "\u7D2F\u79EF\u7684\u4EE3\u7406\u63CF\u8FF0\u8FC7\u5927\u5C06\u5F71\u54CD\u6027\u80FD",
|
|
41215
41317
|
"common.last.said": "\u4E0A\u6B21\u53D1\u8A00",
|
|
41216
41318
|
"common.lsp.for": "LSP -",
|
|
41217
41319
|
"common.make.sure": "\u8BF7\u786E\u4FDD",
|
|
@@ -41277,6 +41379,7 @@ var init_ui_common2 = __esm(() => {
|
|
|
41277
41379
|
"login.consoleKeyConflict": "\u800C\u975E CoStrict Console \u5BC6\u94A5\u3002\u8BF7\u53D6\u6D88\u8BBE\u7F6E",
|
|
41278
41380
|
"mcp.desktop-import-name-collision": "\u684C\u9762\u5BFC\u5165\u540D\u79F0\u51B2\u7A81",
|
|
41279
41381
|
"mcp.failed": "\u5931\u8D25",
|
|
41382
|
+
"mcp.failedServersNotice": "{count} \u4E2A MCP \u670D\u52A1\u5668\u5931\u8D25",
|
|
41280
41383
|
"mcp.more-below": "\u4E0B\u65B9\u8FD8\u6709\u66F4\u591A",
|
|
41281
41384
|
"mcp.needs-auth": "\u9700\u8981\u8BA4\u8BC1",
|
|
41282
41385
|
"mcp.return-after-auth": "\u8BA4\u8BC1\u540E\u8FD4\u56DE",
|
|
@@ -41347,7 +41450,7 @@ var init_ui_common2 = __esm(() => {
|
|
|
41347
41450
|
"permissions.mode": "\u6A21\u5F0F",
|
|
41348
41451
|
"permissions.more": "\u66F4\u591A",
|
|
41349
41452
|
"permissions.navigate.enter.select.type.search.switch.esc.cancel": "\u65B9\u5411\u952E\u5BFC\u822A\uFF0CEnter \u9009\u62E9\uFF0C\u8F93\u5165\u641C\u7D22\uFF0CTab \u5207\u6362\uFF0CEsc \u53D6\u6D88",
|
|
41350
|
-
"permissions.no.code.changes.will.be.made.until.you.approve.the.plan": "\u5728\u60A8\u6279\u51C6\
|
|
41453
|
+
"permissions.no.code.changes.will.be.made.until.you.approve.the.plan": "\u5728\u60A8\u6279\u51C6\u8BA1\u5212\u4E4B\u524D\u4E0D\u4F1A\u8FDB\u884C\u4EFB\u4F55\u4EE3\u7801\u4FEE\u6539",
|
|
41351
41454
|
"permissions.no.recent.denials.commands.denied.by.the.auto.mode.classifie": "\u6700\u8FD1\u6CA1\u6709\u88AB\u81EA\u52A8\u6A21\u5F0F\u5206\u7C7B\u5668\u62D2\u7EDD\u7684\u547D\u4EE4",
|
|
41352
41455
|
"permissions.not.installed": "\u672A\u5B89\u88C5",
|
|
41353
41456
|
"permissions.notes": "\u5907\u6CE8",
|
|
@@ -41357,10 +41460,10 @@ var init_ui_common2 = __esm(() => {
|
|
|
41357
41460
|
"permissions.permission.rule": "\u6743\u9650\u89C4\u5219",
|
|
41358
41461
|
"permissions.permission.rules.are.a.tool.name.optionally.followed.by.a.sp": "\u6743\u9650\u89C4\u5219\u683C\u5F0F\uFF1A\u5DE5\u5177\u540D\u79F0\uFF0C\u53EF\u9009\u540E\u8DDF\u7A7A\u683C",
|
|
41359
41462
|
"permissions.permissions": "\u6743\u9650",
|
|
41360
|
-
"permissions.plan.saved": "\
|
|
41361
|
-
"permissions.plan.saved_2": "\
|
|
41463
|
+
"permissions.plan.saved": "\u8BA1\u5212\u5DF2\u4FDD\u5B58",
|
|
41464
|
+
"permissions.plan.saved_2": "\u8BA1\u5212\u5DF2\u4FDD\u5B58",
|
|
41362
41465
|
"permissions.planning": "\u89C4\u5212\u4E2D",
|
|
41363
|
-
"permissions.present.a.plan.for.your.approval": "\u63D0\u4EA4\
|
|
41466
|
+
"permissions.present.a.plan.for.your.approval": "\u63D0\u4EA4\u8BA1\u5212\u4F9B\u60A8\u5BA1\u6279",
|
|
41364
41467
|
"permissions.press": "\u6309",
|
|
41365
41468
|
"permissions.ready.to.code": "\u51C6\u5907\u7F16\u7801",
|
|
41366
41469
|
"permissions.ready.to.submit.your.answers": "\u51C6\u5907\u63D0\u4EA4\u60A8\u7684\u56DE\u7B54",
|
|
@@ -41473,7 +41576,7 @@ var init_ui_common2 = __esm(() => {
|
|
|
41473
41576
|
"settings.auto.mode.plan": "\u89C4\u5212\u65F6\u4F7F\u7528\u81EA\u52A8\u6A21\u5F0F",
|
|
41474
41577
|
"tasks.archive-remote-session": "\u5F52\u6863\u8FDC\u7A0B\u4F1A\u8BDD",
|
|
41475
41578
|
"login.unsetThe": "\u53D6\u6D88\u8BBE\u7F6E ",
|
|
41476
|
-
"login.unsetAnthropicApiKey": '\u53D6\u6D88\u8BBE\u7F6E ANTHROPIC_API_KEY \u73AF\u5883\u53D8\u91CF\uFF0C\u6216\u8FD0\u884C csc /logout \u540E\
|
|
41579
|
+
"login.unsetAnthropicApiKey": '\u53D6\u6D88\u8BBE\u7F6E ANTHROPIC_API_KEY \u73AF\u5883\u53D8\u91CF\uFF0C\u6216\u5728\u8FD0\u884C csc /logout \u540E\u3001\u91CD\u65B0\u767B\u5F55\u65F6\u5BF9"\u662F\u5426\u4F7F\u7528 API \u5BC6\u94A5"\u63D0\u793A\u9009\u62E9"\u5426"\u3002',
|
|
41477
41580
|
"login.unsetApiKeyHelper": "\u53D6\u6D88\u8BBE\u7F6E apiKeyHelper \u914D\u7F6E\u3002",
|
|
41478
41581
|
"web-search.did-searches": "\u5DF2\u5B8C\u6210\u641C\u7D22",
|
|
41479
41582
|
"web-search.found-results": "\u627E\u5230 {count} \u6761\u7ED3\u679C",
|
|
@@ -41495,7 +41598,7 @@ var init_ui_common2 = __esm(() => {
|
|
|
41495
41598
|
"tag.ctx": "\u4E0A\u4E0B\u6587",
|
|
41496
41599
|
"tag.read": "\u8BFB\u53D6",
|
|
41497
41600
|
"tag.grep": "\u641C\u7D22",
|
|
41498
|
-
"tag.agent": "
|
|
41601
|
+
"tag.agent": "\u4EE3\u7406",
|
|
41499
41602
|
"tag.web": "\u7F51\u7EDC",
|
|
41500
41603
|
"tag.compile": "\u7F16\u8BD1",
|
|
41501
41604
|
"tag.analyze": "\u5206\u6790",
|
|
@@ -41525,8 +41628,8 @@ var init_ui_common2 = __esm(() => {
|
|
|
41525
41628
|
"hooks.summary.sessionStart": "\u65B0\u4F1A\u8BDD\u542F\u52A8\u65F6",
|
|
41526
41629
|
"hooks.summary.stop": "CoStrict \u5B8C\u6210\u54CD\u5E94\u524D",
|
|
41527
41630
|
"hooks.summary.stopFailure": "\u56E0 API \u9519\u8BEF\u5BFC\u81F4\u8F6E\u6B21\u7ED3\u675F\u65F6",
|
|
41528
|
-
"hooks.summary.subagentStart": "\u5B50
|
|
41529
|
-
"hooks.summary.subagentStop": "\u5B50
|
|
41631
|
+
"hooks.summary.subagentStart": "\u5B50\u4EE3\u7406\u542F\u52A8\u65F6",
|
|
41632
|
+
"hooks.summary.subagentStop": "\u5B50\u4EE3\u7406\u5B8C\u6210\u524D",
|
|
41530
41633
|
"hooks.summary.preCompact": "\u5BF9\u8BDD\u538B\u7F29\u524D",
|
|
41531
41634
|
"hooks.summary.postCompact": "\u5BF9\u8BDD\u538B\u7F29\u540E",
|
|
41532
41635
|
"hooks.summary.sessionEnd": "\u4F1A\u8BDD\u7ED3\u675F\u65F6",
|
|
@@ -41543,13 +41646,13 @@ var init_ui_common2 = __esm(() => {
|
|
|
41543
41646
|
"hooks.summary.worktreeRemove": "\u79FB\u9664\u4E4B\u524D\u521B\u5EFA\u7684\u5DE5\u4F5C\u6811",
|
|
41544
41647
|
"hooks.summary.cwdChanged": "\u5DE5\u4F5C\u76EE\u5F55\u53D8\u66F4\u540E",
|
|
41545
41648
|
"hooks.summary.fileChanged": "\u76D1\u89C6\u7684\u6587\u4EF6\u53D8\u66F4\u65F6",
|
|
41546
|
-
"agents.source.userAgents": "\u7528\u6237
|
|
41547
|
-
"agents.source.projectAgents": "\u9879\u76EE
|
|
41548
|
-
"agents.source.localAgents": "\u672C\u5730
|
|
41549
|
-
"agents.source.managedAgents": "\u53D7\u7BA1
|
|
41550
|
-
"agents.source.pluginAgents": "\u63D2\u4EF6
|
|
41551
|
-
"agents.source.cliArgAgents": "CLI \u53C2\u6570
|
|
41552
|
-
"agents.source.builtInAgents": "\u5185\u7F6E
|
|
41649
|
+
"agents.source.userAgents": "\u7528\u6237\u4EE3\u7406",
|
|
41650
|
+
"agents.source.projectAgents": "\u9879\u76EE\u4EE3\u7406",
|
|
41651
|
+
"agents.source.localAgents": "\u672C\u5730\u4EE3\u7406",
|
|
41652
|
+
"agents.source.managedAgents": "\u53D7\u7BA1\u4EE3\u7406",
|
|
41653
|
+
"agents.source.pluginAgents": "\u63D2\u4EF6\u4EE3\u7406",
|
|
41654
|
+
"agents.source.cliArgAgents": "CLI \u53C2\u6570\u4EE3\u7406",
|
|
41655
|
+
"agents.source.builtInAgents": "\u5185\u7F6E\u4EE3\u7406",
|
|
41553
41656
|
"commands.btw.usage": "\u7528\u6CD5\uFF1A/btw <\u4F60\u7684\u95EE\u9898>",
|
|
41554
41657
|
"common.to": "\u5230",
|
|
41555
41658
|
"common.navigate": "\u5BFC\u822A",
|
|
@@ -41592,13 +41695,13 @@ var init_commands_descriptions2 = __esm(() => {
|
|
|
41592
41695
|
commands_descriptions_default2 = {
|
|
41593
41696
|
"commands.desc.addDir": "\u6DFB\u52A0\u65B0\u7684\u5DE5\u4F5C\u76EE\u5F55",
|
|
41594
41697
|
"commands.desc.advisor": "\u914D\u7F6E advisor \u6A21\u578B",
|
|
41595
|
-
"commands.desc.agents": "\u7BA1\u7406
|
|
41596
|
-
"commands.desc.agentsPlatform": "\u7BA1\u7406\u5B9A\u65F6\u8FDC\u7A0B
|
|
41698
|
+
"commands.desc.agents": "\u7BA1\u7406\u4EE3\u7406\u914D\u7F6E",
|
|
41699
|
+
"commands.desc.agentsPlatform": "\u7BA1\u7406\u5B9A\u65F6\u8FDC\u7A0B\u4EE3\u7406\uFF08cron \u98CE\u683C\u89E6\u53D1\u5668\uFF09",
|
|
41597
41700
|
"commands.desc.assistant": "\u6253\u5F00 Kairos \u52A9\u624B\u9762\u677F",
|
|
41598
41701
|
"commands.desc.attach": "\u901A\u8FC7\u547D\u540D\u7BA1\u9053\u9644\u52A0\u5230\u5B50 CLI \u5B9E\u4F8B",
|
|
41599
41702
|
"commands.desc.autofixPr": "\u81EA\u52A8\u4FEE\u590D PR \u4E0A\u7684 CI \u5931\u8D25",
|
|
41600
41703
|
"commands.desc.branch": "\u5728\u6B64\u5904\u521B\u5EFA\u5F53\u524D\u5BF9\u8BDD\u7684\u5206\u652F",
|
|
41601
|
-
"commands.desc.breakCache": "\u7BA1\u7406\u63D0\u793A\u7F13\u5B58\
|
|
41704
|
+
"commands.desc.breakCache": "\u7BA1\u7406\u63D0\u793A\u7F13\u5B58\u5931\u6548\u3002\u6253\u5F00\u64CD\u4F5C\u9762\u677F\u6216\u8FD0\u884C\uFF1Aonce, status, always, off",
|
|
41602
41705
|
"commands.desc.breakCacheNonInteractive": "\u5F3A\u5236\u4E0B\u4E00\u6B21\uFF08\u6216\u6240\u6709\uFF09API \u8C03\u7528\u8DF3\u8FC7\u63D0\u793A\u7F13\u5B58\u3002\u8303\u56F4\uFF1Aonce, status, always, off",
|
|
41603
41706
|
"commands.desc.brief": "\u5207\u6362\u7B80\u6D01\u6A21\u5F0F",
|
|
41604
41707
|
"commands.desc.btw": "\u5FEB\u901F\u63D0\u95EE\uFF0C\u4E0D\u4E2D\u65AD\u4E3B\u5BF9\u8BDD",
|
|
@@ -41611,7 +41714,7 @@ var init_commands_descriptions2 = __esm(() => {
|
|
|
41611
41714
|
"commands.desc.config": "\u6253\u5F00\u914D\u7F6E\u9762\u677F",
|
|
41612
41715
|
"commands.desc.context": "\u4EE5\u5F69\u8272\u7F51\u683C\u53EF\u89C6\u5316\u5F53\u524D\u4E0A\u4E0B\u6587\u7528\u91CF",
|
|
41613
41716
|
"commands.desc.continue": "\u7EE7\u7EED\u6700\u8FD1\u7684\u5BF9\u8BDD",
|
|
41614
|
-
"commands.desc.coordinator": "\u5207\u6362\u534F\u8C03\u5668\uFF08\u591A\
|
|
41717
|
+
"commands.desc.coordinator": "\u5207\u6362\u534F\u8C03\u5668\uFF08\u591A worker\uFF09\u6A21\u5F0F",
|
|
41615
41718
|
"commands.desc.copy": "\u590D\u5236\u6700\u540E\u4E00\u6761\u56DE\u590D\u5230\u526A\u8D34\u677F",
|
|
41616
41719
|
"commands.desc.daemon": "\u7BA1\u7406\u540E\u53F0\u4F1A\u8BDD\u548C\u5B88\u62A4\u8FDB\u7A0B",
|
|
41617
41720
|
"commands.desc.detach": "\u4ECE\u5B50 CLI \u65AD\u5F00\uFF08\u6216\u65AD\u5F00\u6240\u6709\u8FDE\u63A5\uFF09",
|
|
@@ -41624,7 +41727,7 @@ var init_commands_descriptions2 = __esm(() => {
|
|
|
41624
41727
|
"commands.desc.extraUsage": "\u914D\u7F6E\u989D\u5916\u7528\u91CF\u4EE5\u5728\u8FBE\u5230\u9650\u5236\u65F6\u7EE7\u7EED\u5DE5\u4F5C",
|
|
41625
41728
|
"commands.desc.feedback": "\u63D0\u4EA4\u5173\u4E8E CoStrict \u7684\u53CD\u9988",
|
|
41626
41729
|
"commands.desc.files": "\u5217\u51FA\u5F53\u524D\u4E0A\u4E0B\u6587\u4E2D\u7684\u6240\u6709\u6587\u4EF6",
|
|
41627
|
-
"commands.desc.fork": "\u5C06\u5F53\u524D\u4F1A\u8BDD Fork \u4E3A\u65B0\u7684\u5B50
|
|
41730
|
+
"commands.desc.fork": "\u5C06\u5F53\u524D\u4F1A\u8BDD Fork \u4E3A\u65B0\u7684\u5B50\u4EE3\u7406",
|
|
41628
41731
|
"commands.desc.heapdump": "\u5C06 JS \u5806\u8F6C\u50A8\u5230 ~/Desktop",
|
|
41629
41732
|
"commands.desc.help": "\u663E\u793A\u5E2E\u52A9\u548C\u53EF\u7528\u547D\u4EE4",
|
|
41630
41733
|
"commands.desc.history": "\u67E5\u770B\u5DF2\u8FDE\u63A5\u5B50 CLI \u7684\u4F1A\u8BDD\u5386\u53F2",
|
|
@@ -41699,10 +41802,10 @@ var init_commands_others2 = __esm(() => {
|
|
|
41699
41802
|
"context.autocompactBuffer": "\u81EA\u52A8\u538B\u7F29\u7F13\u51B2",
|
|
41700
41803
|
"context.memoryFiles": "\u8BB0\u5FC6\u6587\u4EF6",
|
|
41701
41804
|
"context.mcpTools": "MCP \u5DE5\u5177",
|
|
41702
|
-
"context.customAgents": "\u81EA\u5B9A\u4E49
|
|
41805
|
+
"context.customAgents": "\u81EA\u5B9A\u4E49\u4EE3\u7406",
|
|
41703
41806
|
"context.skills": "\u6280\u80FD",
|
|
41704
41807
|
"context.col.server": "\u670D\u52A1\u5668",
|
|
41705
|
-
"context.col.agentType": "
|
|
41808
|
+
"context.col.agentType": "\u4EE3\u7406\u7C7B\u578B",
|
|
41706
41809
|
"context.col.source": "\u6765\u6E90",
|
|
41707
41810
|
"context.agentSource.project": "\u9879\u76EE",
|
|
41708
41811
|
"context.agentSource.user": "\u7528\u6237",
|
|
@@ -41731,9 +41834,9 @@ var init_commands_others2 = __esm(() => {
|
|
|
41731
41834
|
"context.cacheBelowThreshold": " (\u4F4E\u4E8E {threshold}% \u9608\u503C)",
|
|
41732
41835
|
"context.systemTools": "\u7CFB\u7EDF\u5DE5\u5177",
|
|
41733
41836
|
"context.systemPromptSections": "\u7CFB\u7EDF\u63D0\u793A\u8BCD\u7247\u6BB5",
|
|
41734
|
-
"context.messageBreakdown": "\u6D88\u606F\
|
|
41735
|
-
"context.topTools": "\
|
|
41736
|
-
"context.topAttachments": "\
|
|
41837
|
+
"context.messageBreakdown": "\u6D88\u606F\u660E\u7EC6",
|
|
41838
|
+
"context.topTools": "\u7528\u91CF\u6700\u9AD8\u7684\u5DE5\u5177",
|
|
41839
|
+
"context.topAttachments": "\u7528\u91CF\u6700\u9AD8\u7684\u9644\u4EF6",
|
|
41737
41840
|
"context.someLoadedOnDemand": " (\u90E8\u5206\u6309\u9700\u52A0\u8F7D)",
|
|
41738
41841
|
"context.loadedOnDemand": " (\u6309\u9700\u52A0\u8F7D)",
|
|
41739
41842
|
"context.collapseLastError": "(\u6700\u8FD1: {error})",
|
|
@@ -41869,8 +41972,8 @@ var init_commands_others2 = __esm(() => {
|
|
|
41869
41972
|
"commands.memoryStores.noVersions": "\u672A\u627E\u5230\u5B58\u50A8 {storeId} \u7684\u8BB0\u5FC6\u7248\u672C\u3002",
|
|
41870
41973
|
"commands.memoryStores.nVersions": "\u5B58\u50A8 {storeId} \u4E2D\u6709 {n} \u4E2A\u7248\u672C\u3002",
|
|
41871
41974
|
"commands.memoryStores.failedToListVersions": "\u5217\u51FA\u5B58\u50A8 {storeId} \u7684\u7248\u672C\u5931\u8D25: {error}",
|
|
41872
|
-
"commands.memoryStores.versionRedacted": "\u7248\u672C {id} \u5DF2\
|
|
41873
|
-
"commands.memoryStores.failedToRedact": "\
|
|
41975
|
+
"commands.memoryStores.versionRedacted": "\u7248\u672C {id} \u5DF2\u8131\u654F\u3002",
|
|
41976
|
+
"commands.memoryStores.failedToRedact": "\u8131\u654F\u7248\u672C {id} \u5931\u8D25: {error}",
|
|
41874
41977
|
"mcp.config.invalidName": "\u65E0\u6548\u540D\u79F0 {name}\u3002\u540D\u79F0\u53EA\u80FD\u5305\u542B\u5B57\u6BCD\u3001\u6570\u5B57\u3001\u8FDE\u5B57\u7B26\u548C\u4E0B\u5212\u7EBF\u3002",
|
|
41875
41978
|
"mcp.config.reservedName": '\u65E0\u6CD5\u6DFB\u52A0 MCP \u670D\u52A1\u5668 "{name}"\uFF1A\u6B64\u540D\u79F0\u5DF2\u88AB\u4FDD\u7559\u3002',
|
|
41876
41979
|
"mcp.config.enterpriseExclusive": "\u65E0\u6CD5\u6DFB\u52A0 MCP \u670D\u52A1\u5668\uFF1A\u4F01\u4E1A MCP \u914D\u7F6E\u5904\u4E8E\u6D3B\u52A8\u72B6\u6001\uFF0C\u5177\u6709\u5BF9 MCP \u670D\u52A1\u5668\u7684\u72EC\u5360\u63A7\u5236\u6743",
|
|
@@ -41901,12 +42004,12 @@ var init_commands_others2 = __esm(() => {
|
|
|
41901
42004
|
"break-cache.usage": [
|
|
41902
42005
|
"\u7528\u6CD5: /break-cache [\u8303\u56F4]",
|
|
41903
42006
|
"",
|
|
41904
|
-
" (\u65E0\u53C2\u6570) \u4E3A\u4E0B\u4E00\u6B21 API \u8C03\u7528\u5B89\u6392\u4E00\u6B21\
|
|
42007
|
+
" (\u65E0\u53C2\u6570) \u4E3A\u4E0B\u4E00\u6B21 API \u8C03\u7528\u5B89\u6392\u4E00\u6B21\u7F13\u5B58\u5931\u6548",
|
|
41905
42008
|
" once \u540C\u65E0\u53C2\u6570",
|
|
41906
|
-
" always \u542F\u7528\u6301\u7EED\u7F13\u5B58\
|
|
42009
|
+
" always \u542F\u7528\u6301\u7EED\u7F13\u5B58\u5931\u6548\u6A21\u5F0F\uFF08\u6BCF\u6B21\u8BF7\u6C42\uFF09",
|
|
41907
42010
|
" off \u7981\u7528\u6301\u7EED\u6A21\u5F0F\u5E76\u6E05\u9664\u5F85\u5904\u7406\u6807\u8BB0",
|
|
41908
42011
|
" --clear \u6E05\u9664\u5F85\u5904\u7406\u7684\u4E00\u6B21\u6027\u6807\u8BB0\uFF08\u53D6\u6D88\uFF09",
|
|
41909
|
-
" status \u663E\u793A\u5F53\u524D\u7F13\u5B58\
|
|
42012
|
+
" status \u663E\u793A\u5F53\u524D\u7F13\u5B58\u5931\u6548\u72B6\u6001\u548C\u7EDF\u8BA1",
|
|
41910
42013
|
"",
|
|
41911
42014
|
"\u5DE5\u4F5C\u539F\u7406:",
|
|
41912
42015
|
" \u63D0\u793A\u7F13\u5B58\u57FA\u4E8E\u7CFB\u7EDF\u63D0\u793A\u8BCD\u524D\u7F00\u54C8\u5E0C\u8FDB\u884C\u5339\u914D\u3002",
|
|
@@ -41919,29 +42022,29 @@ var init_commands_others2 = __esm(() => {
|
|
|
41919
42022
|
"break-cache.never": "\u4ECE\u672A",
|
|
41920
42023
|
"break-cache.off": "\u5173\u95ED",
|
|
41921
42024
|
"break-cache.alwaysOn": "\u6301\u7EED\u5F00\u542F",
|
|
41922
|
-
"break-cache.status.title": "## \u7F13\u5B58\
|
|
42025
|
+
"break-cache.status.title": "## \u7F13\u5B58\u5931\u6548\u72B6\u6001",
|
|
41923
42026
|
"break-cache.status.once": "\u4E0B\u6B21\u8BF7\u6C42\u6807\u8BB0: {state}",
|
|
41924
42027
|
"break-cache.status.always": "\u6301\u7EED\u6A21\u5F0F: {state}",
|
|
41925
42028
|
"break-cache.stats.title": "### \u7EDF\u8BA1",
|
|
41926
|
-
"break-cache.stats.total": "\u603B\u8BA1\
|
|
41927
|
-
"break-cache.stats.last": "\u4E0A\u6B21\
|
|
41928
|
-
"break-cache.off.disabled": "\u7F13\u5B58\
|
|
41929
|
-
"break-cache.off.wasNotActive": "\u7F13\u5B58\
|
|
41930
|
-
"break-cache.clear.cleared": "\u7F13\u5B58\
|
|
41931
|
-
"break-cache.clear.noMarkerSet": "\u672A\u8BBE\u7F6E\u7F13\u5B58\
|
|
41932
|
-
"break-cache.always.title": "## \u5DF2\u542F\u7528\u6301\u7EED\u7F13\u5B58\
|
|
42029
|
+
"break-cache.stats.total": "\u603B\u8BA1\u5931\u6548: {count}",
|
|
42030
|
+
"break-cache.stats.last": "\u4E0A\u6B21\u5931\u6548: {time}",
|
|
42031
|
+
"break-cache.off.disabled": "\u7F13\u5B58\u5931\u6548\u5DF2\u7981\u7528\u3002\u5DF2\u79FB\u9664\u4E00\u6B21\u6027\u6807\u8BB0\u548C/\u6216\u6301\u7EED\u6807\u8BB0\u3002",
|
|
42032
|
+
"break-cache.off.wasNotActive": "\u7F13\u5B58\u5931\u6548\u672A\u5904\u4E8E\u6D3B\u52A8\u72B6\u6001\u3002",
|
|
42033
|
+
"break-cache.clear.cleared": "\u7F13\u5B58\u5931\u6548\u6807\u8BB0\u5DF2\u6E05\u9664\u3002\n `{path}`",
|
|
42034
|
+
"break-cache.clear.noMarkerSet": "\u672A\u8BBE\u7F6E\u7F13\u5B58\u5931\u6548\u6807\u8BB0\u3002",
|
|
42035
|
+
"break-cache.always.title": "## \u5DF2\u542F\u7528\u6301\u7EED\u7F13\u5B58\u5931\u6548",
|
|
41933
42036
|
"break-cache.always.flagWritten": "\u6807\u8BB0\u5DF2\u5199\u5165\uFF1A`{path}`",
|
|
41934
42037
|
"break-cache.always.desc1": "\u6BCF\u6B21 API \u8C03\u7528\u73B0\u5728\u90FD\u4F1A\u5411\u7CFB\u7EDF\u63D0\u793A\u8BCD\u8FFD\u52A0\u552F\u4E00\u968F\u673A\u6570\uFF0C",
|
|
41935
42038
|
"break-cache.always.desc2": "\u6C38\u4E45\u963B\u6B62\u6B64\u4F1A\u8BDD\u7684\u63D0\u793A\u7F13\u5B58\u547D\u4E2D\u3002",
|
|
41936
42039
|
"break-cache.always.disableHint": "\u7981\u7528: `/break-cache off`",
|
|
41937
|
-
"break-cache.once.title": "## \u7F13\u5B58\
|
|
42040
|
+
"break-cache.once.title": "## \u7F13\u5B58\u5931\u6548\u5DF2\u5B89\u6392",
|
|
41938
42041
|
"break-cache.once.markerWritten": "\u6807\u8BB0\u5DF2\u5199\u5165\uFF1A`{path}`",
|
|
41939
42042
|
"break-cache.once.timestamp": "\u65F6\u95F4\u6233\uFF1A{timestamp}",
|
|
41940
42043
|
"break-cache.once.desc1": "\u4E0B\u4E00\u6B21 API \u8C03\u7528\u5C06\u8FFD\u52A0\u552F\u4E00\u968F\u673A\u6570\u5230\u7CFB\u7EDF\u63D0\u793A\u8BCD\uFF0C",
|
|
41941
42044
|
"break-cache.once.desc2": "\u5BFC\u81F4\u7F13\u5B58\u672A\u547D\u4E2D\u3002\u6807\u8BB0\u5728\u4F7F\u7528\u540E\u81EA\u52A8\u79FB\u9664\u3002",
|
|
41942
42045
|
"break-cache.once.cancelHint": "\u5728\u4E0B\u6B21\u8C03\u7528\u524D\u53D6\u6D88: `/break-cache --clear`",
|
|
41943
|
-
"break-cache.once.alwaysHint": "\u6BCF\u6B21\u8C03\u7528\u90FD\
|
|
41944
|
-
"break-cache.once.totalBreaks": "\u672C\u6B21\u4F1A\u8BDD\u603B\u8BA1\
|
|
42046
|
+
"break-cache.once.alwaysHint": "\u6BCF\u6B21\u8C03\u7528\u90FD\u5931\u6548: `/break-cache always`",
|
|
42047
|
+
"break-cache.once.totalBreaks": "\u672C\u6B21\u4F1A\u8BDD\u603B\u8BA1\u5931\u6548: {count}",
|
|
41945
42048
|
"break-cache.once.howItWorks1": "_\u5DE5\u4F5C\u539F\u7406: \u63D0\u793A\u7F13\u5B58\u57FA\u4E8E\u7CFB\u7EDF\u63D0\u793A\u8BCD\u524D\u7F00\u54C8\u5E0C\u8FDB\u884C\u5339\u914D\u3002_",
|
|
41946
42049
|
"break-cache.once.howItWorks2": "_\u552F\u4E00\u968F\u673A\u6570\u4F7F\u54C8\u5E0C\u5931\u6548\uFF0C\u5F3A\u5236\u91CD\u65B0\u8BA1\u7B97\u3002_",
|
|
41947
42050
|
"break-cache.unknownScope": '\u672A\u77E5\u8303\u56F4: "{scope}"',
|
|
@@ -42006,7 +42109,7 @@ var init_commands_others2 = __esm(() => {
|
|
|
42006
42109
|
"tui.unknownSubcommand": "\u672A\u77E5\u5B50\u547D\u4EE4\uFF1A{sub}",
|
|
42007
42110
|
"tui.unknownScope": '\u672A\u77E5\u8303\u56F4\uFF1A"{scope}"',
|
|
42008
42111
|
"tui.bridgeError": "\u901A\u8FC7 Remote Control \u4F7F\u7528 /tui status/on/off/toggle\u3002",
|
|
42009
|
-
"commands.invalidFormat": "\u547D\u4EE4\u683C\u5F0F\u4E3A
|
|
42112
|
+
"commands.invalidFormat": "\u547D\u4EE4\u683C\u5F0F\u4E3A `/command [\u53C2\u6570]`",
|
|
42010
42113
|
"commands.unknownSkill": "\u672A\u77E5\u6280\u80FD\uFF1A{name}",
|
|
42011
42114
|
"commands.argsFromUnknownSkill": "\u672A\u77E5\u6280\u80FD\u7684\u53C2\u6570\uFF1A{args}",
|
|
42012
42115
|
"commands.skill.modelOnly": '\u6B64\u6280\u80FD\u53EA\u80FD\u7531 CoStrict \u8C03\u7528\uFF0C\u7528\u6237\u4E0D\u80FD\u76F4\u63A5\u8C03\u7528\u3002\u8BF7\u8BA9 CoStrict \u4F7F\u7528 "{name}" \u6280\u80FD\u3002',
|
|
@@ -42029,7 +42132,7 @@ var init_commands_others2 = __esm(() => {
|
|
|
42029
42132
|
"ultraplan.usage": [
|
|
42030
42133
|
'\u7528\u6CD5\uFF1A/ultraplan \\<\u63D0\u793A\u8BCD\\>\uFF0C\u6216\u5728\u63D0\u793A\u8BCD\u4EFB\u610F\u4F4D\u7F6E\u5305\u542B "ultraplan"',
|
|
42031
42134
|
"",
|
|
42032
|
-
"\u4F7F\u7528\u6211\u4EEC\u6700\u5F3A\u5927\u7684\u6A21\u578B\uFF08Opus\uFF09\u8FDB\u884C\u9AD8\u7EA7\u591A
|
|
42135
|
+
"\u4F7F\u7528\u6211\u4EEC\u6700\u5F3A\u5927\u7684\u6A21\u578B\uFF08Opus\uFF09\u8FDB\u884C\u9AD8\u7EA7\u591A\u4EE3\u7406\u534F\u4F5C\u89C4\u5212\u3002",
|
|
42033
42136
|
"\u5728 CoStrict \u7F51\u9875\u7AEF\u8FD0\u884C\u3002\u8BA1\u5212\u5C31\u7EEA\u540E\uFF0C",
|
|
42034
42137
|
"\u60A8\u53EF\u4EE5\u5728\u7F51\u9875\u7AEF\u6267\u884C\uFF0C\u6216\u5C06\u5176\u53D1\u56DE\u672C\u5730\u7EC8\u7AEF\u3002",
|
|
42035
42138
|
"\u8FDC\u7A0B\u89C4\u5212\u65F6\u7EC8\u7AEF\u4E0D\u53D7\u5F71\u54CD\u3002",
|
|
@@ -42041,7 +42144,7 @@ var init_commands_others2 = __esm(() => {
|
|
|
42041
42144
|
"ultraplan.sessionCreationFailed": "ultraplan\uFF1A\u4F1A\u8BDD\u521B\u5EFA\u5931\u8D25{failDetail}\u3002\u8BE6\u60C5\u8BF7\u89C1 --debug\u3002",
|
|
42042
42145
|
"ultraplan.unexpectedError": "ultraplan\uFF1A\u610F\u5916\u9519\u8BEF \u2014 {error}",
|
|
42043
42146
|
"ultraplan.unexpectedError.meta": "Ultraplan \u542F\u52A8\u65F6\u53D1\u751F\u610F\u5916\u9519\u8BEF\u3002\u8BF7\u7B49\u5F85\u7528\u6237\u7684\u4E0B\u4E00\u6761\u6307\u4EE4\u3002",
|
|
42044
|
-
"daemon.supervisor.title": "=== \u5B88\u62A4\u8FDB\u7A0B\
|
|
42147
|
+
"daemon.supervisor.title": "=== \u5B88\u62A4\u8FDB\u7A0B\u7BA1\u7406\u5668 ===",
|
|
42045
42148
|
"daemon.supervisor.statusRunning": " \u72B6\u6001\uFF1A\u8FD0\u884C\u4E2D",
|
|
42046
42149
|
"daemon.supervisor.statusStopped": " \u72B6\u6001\uFF1A\u5DF2\u505C\u6B62",
|
|
42047
42150
|
"daemon.supervisor.statusStale": " \u72B6\u6001\uFF1A\u8FC7\u671F\uFF08\u5DF2\u6E05\u7406\uFF09",
|
|
@@ -42157,7 +42260,7 @@ var init_commands_others2 = __esm(() => {
|
|
|
42157
42260
|
"commands.advisor.status": `Advisor\uFF1A{current}
|
|
42158
42261
|
\u4F7F\u7528 "/advisor unset" \u7981\u7528\u6216 "/advisor <\u6A21\u578B>" \u66F4\u6362\u3002`,
|
|
42159
42262
|
"commands.advisor.disabled": "Advisor \u5DF2\u7981\u7528\uFF08\u4E4B\u524D\u4E3A {prev}\uFF09\u3002",
|
|
42160
|
-
"commands.advisor.alreadyUnset": "Advisor \u5DF2\
|
|
42263
|
+
"commands.advisor.alreadyUnset": "Advisor \u5DF2\u5904\u4E8E\u672A\u8BBE\u7F6E\u72B6\u6001\u3002",
|
|
42161
42264
|
"commands.advisor.invalidModel": "\u65E0\u6548\u7684 advisor \u6A21\u578B\uFF1A{error}",
|
|
42162
42265
|
"commands.advisor.unknownModel": "\u672A\u77E5\u6A21\u578B\uFF1A{arg}\uFF08{resolvedModel}\uFF09",
|
|
42163
42266
|
"commands.advisor.cannotBeAdvisor": "\u6A21\u578B {arg}\uFF08{resolvedModel}\uFF09\u4E0D\u80FD\u7528\u4F5C advisor",
|
|
@@ -42219,15 +42322,15 @@ var init_commands_others2 = __esm(() => {
|
|
|
42219
42322
|
"commands.schedule.enableFailed": "\u542F\u7528\u89E6\u53D1\u5668 {id} \u5931\u8D25\uFF1A{error}",
|
|
42220
42323
|
"commands.schedule.disabled": "\u89E6\u53D1\u5668 {id} \u5DF2\u7981\u7528\u3002",
|
|
42221
42324
|
"commands.schedule.disableFailed": "\u7981\u7528\u89E6\u53D1\u5668 {id} \u5931\u8D25\uFF1A{error}",
|
|
42222
|
-
"commands.vault.listEmpty": "\u672A\u627E\u5230\u4FDD\
|
|
42223
|
-
"commands.vault.listCount": "{count} \u4E2A\u4FDD\
|
|
42224
|
-
"commands.vault.created": "\u4FDD\
|
|
42225
|
-
"commands.vault.getFetched": "\u4FDD\
|
|
42226
|
-
"commands.vault.archived": "\u4FDD\
|
|
42325
|
+
"commands.vault.listEmpty": "\u672A\u627E\u5230\u4FDD\u7BA1\u5E93\u3002",
|
|
42326
|
+
"commands.vault.listCount": "{count} \u4E2A\u4FDD\u7BA1\u5E93\u3002",
|
|
42327
|
+
"commands.vault.created": "\u4FDD\u7BA1\u5E93\u5DF2\u521B\u5EFA\uFF1A{id}",
|
|
42328
|
+
"commands.vault.getFetched": "\u4FDD\u7BA1\u5E93\u5DF2\u83B7\u53D6\u3002",
|
|
42329
|
+
"commands.vault.archived": "\u4FDD\u7BA1\u5E93\u5DF2\u5F52\u6863\u3002",
|
|
42227
42330
|
"commands.vault.credentialAdded": "\u51ED\u8BC1\u5DF2\u6DFB\u52A0\uFF1A{id}",
|
|
42228
42331
|
"commands.vault.credentialArchived": "\u51ED\u8BC1 {id} \u5DF2\u5F52\u6863\u3002",
|
|
42229
|
-
"commands.vault.credentialsEmpty": "\u4FDD\
|
|
42230
|
-
"commands.vault.credentialsCount": "\u4FDD\
|
|
42332
|
+
"commands.vault.credentialsEmpty": "\u4FDD\u7BA1\u5E93 {vaultId} \u4E2D\u6CA1\u6709\u51ED\u8BC1\u3002",
|
|
42333
|
+
"commands.vault.credentialsCount": "\u4FDD\u7BA1\u5E93 {vaultId} \u4E2D\u6709 {count} \u4E2A\u51ED\u8BC1\u3002",
|
|
42231
42334
|
"commands.vault.credentialsListFailed": "\u5217\u51FA\u51ED\u8BC1\u5931\u8D25\uFF1A{error}",
|
|
42232
42335
|
"commands.skillStore.listEmpty": "\u5E02\u573A\u4E0A\u672A\u627E\u5230\u6280\u80FD\u3002",
|
|
42233
42336
|
"commands.skillStore.listCount": "{count} \u4E2A\u53EF\u7528\u6280\u80FD\u3002",
|
|
@@ -42246,16 +42349,16 @@ var init_commands_others2 = __esm(() => {
|
|
|
42246
42349
|
"commands.skillStore.noPublishedVersions": "\u6280\u80FD {id} \u6CA1\u6709\u5DF2\u53D1\u5E03\u7684\u7248\u672C\u53EF\u4F9B\u5B89\u88C5\u3002",
|
|
42247
42350
|
"commands.skillStore.installed": "\u6280\u80FD\u5DF2\u5B89\u88C5\u5230 {path}",
|
|
42248
42351
|
"commands.skillStore.installFailed": "\u5B89\u88C5\u6280\u80FD {id} \u5931\u8D25\uFF1A{error}",
|
|
42249
|
-
"commands.agentsPlatform.listEmpty": "\u672A\u627E\u5230\u5B9A\u65F6
|
|
42250
|
-
"commands.agentsPlatform.listCount": "{count} \u4E2A\u5B9A\u65F6
|
|
42251
|
-
"commands.agentsPlatform.listFailed": "\u5217\u51FA
|
|
42352
|
+
"commands.agentsPlatform.listEmpty": "\u672A\u627E\u5230\u5B9A\u65F6\u4EE3\u7406\u3002",
|
|
42353
|
+
"commands.agentsPlatform.listCount": "{count} \u4E2A\u5B9A\u65F6\u4EE3\u7406\u3002",
|
|
42354
|
+
"commands.agentsPlatform.listFailed": "\u5217\u51FA\u4EE3\u7406\u5931\u8D25\uFF1A{error}",
|
|
42252
42355
|
"commands.agentsPlatform.invalidCron": '\u65E0\u6548\u7684 cron \u8868\u8FBE\u5F0F\uFF1A"{cron}"\u3002\u671F\u671B 5 \u4E2A\u5B57\u6BB5\uFF08\u5206 \u65F6 \u65E5 \u6708 \u5468\uFF09\u3002',
|
|
42253
|
-
"commands.agentsPlatform.created": "
|
|
42254
|
-
"commands.agentsPlatform.createFailed": "\u521B\u5EFA
|
|
42255
|
-
"commands.agentsPlatform.deleted": "
|
|
42256
|
-
"commands.agentsPlatform.deleteFailed": "\u5220\u9664
|
|
42257
|
-
"commands.agentsPlatform.ran": "
|
|
42258
|
-
"commands.agentsPlatform.runFailed": "\u6267\u884C
|
|
42356
|
+
"commands.agentsPlatform.created": "\u4EE3\u7406\u5DF2\u521B\u5EFA\uFF1A{id}",
|
|
42357
|
+
"commands.agentsPlatform.createFailed": "\u521B\u5EFA\u4EE3\u7406\u5931\u8D25\uFF1A{error}",
|
|
42358
|
+
"commands.agentsPlatform.deleted": "\u4EE3\u7406 {id} \u5DF2\u5220\u9664\u3002",
|
|
42359
|
+
"commands.agentsPlatform.deleteFailed": "\u5220\u9664\u4EE3\u7406 {id} \u5931\u8D25\uFF1A{error}",
|
|
42360
|
+
"commands.agentsPlatform.ran": "\u4EE3\u7406 {id} \u5DF2\u89E6\u53D1\u3002\u8FD0\u884C ID\uFF1A{runId}",
|
|
42361
|
+
"commands.agentsPlatform.runFailed": "\u6267\u884C\u4EE3\u7406 {id} \u5931\u8D25\uFF1A{error}",
|
|
42259
42362
|
"commands.brief.notEnabled": "Brief \u5DE5\u5177\u672A\u5BF9\u60A8\u7684\u8D26\u6237\u542F\u7528",
|
|
42260
42363
|
"commands.brief.enabled": "Brief-only \u6A21\u5F0F\u5DF2\u542F\u7528",
|
|
42261
42364
|
"commands.brief.disabled": "Brief-only \u6A21\u5F0F\u5DF2\u7981\u7528",
|
|
@@ -42310,7 +42413,7 @@ var init_commands_others2 = __esm(() => {
|
|
|
42310
42413
|
"commands.copy.written": "\u5DF2\u5199\u5165 {filePath}",
|
|
42311
42414
|
"commands.copy.writeFailed": "\u5199\u5165\u6587\u4EF6\u5931\u8D25\uFF1A{error}",
|
|
42312
42415
|
"commands.copy.cancelled": "\u590D\u5236\u5DF2\u53D6\u6D88",
|
|
42313
|
-
"commands.copy.usage": "\u7528\u6CD5\uFF1A/copy [N]\uFF0CN \u4E3A 1\uFF08\u6700\u65B0\uFF09\u30012\u30013... \
|
|
42416
|
+
"commands.copy.usage": "\u7528\u6CD5\uFF1A/copy [N]\uFF0CN \u4E3A 1\uFF08\u6700\u65B0\uFF09\u30012\u30013... \u5B9E\u9645\u8F93\u5165\uFF1A{arg}",
|
|
42314
42417
|
"commands.copy.onlyMessages": "\u4EC5\u6709 {count} \u6761\u52A9\u624B{messages}\u53EF\u590D\u5236",
|
|
42315
42418
|
"commands.copy.fullResponse": "\u5B8C\u6574\u56DE\u590D",
|
|
42316
42419
|
"commands.copy.alwaysCopyFull": "\u59CB\u7EC8\u590D\u5236\u5B8C\u6574\u56DE\u590D",
|
|
@@ -42373,7 +42476,7 @@ var init_commands_others2 = __esm(() => {
|
|
|
42373
42476
|
"commands.autofixPr.cannotDetectRepo": "\u65E0\u6CD5\u4ECE\u5F53\u524D\u76EE\u5F55\u68C0\u6D4B GitHub \u4ED3\u5E93\u3002",
|
|
42374
42477
|
"commands.autofixPr.crossRepoNotSupported": "\u5F53\u524D\u76EE\u5F55\u4E0D\u652F\u6301\u8DE8\u4ED3\u5E93 autofix\u3002\u8BF7\u5728 {owner}/{repo} \u4E0B\u8FD0\u884C\u6216\u4EC5\u4F20\u5165 PR \u7F16\u53F7\u3002",
|
|
42375
42478
|
"commands.autofixPr.alreadyMonitoring": "\u5DF2\u5728\u540E\u53F0\u76D1\u63A7 {repo}#{prNumber}\u3002",
|
|
42376
|
-
"commands.autofixPr.remoteNotAvailable": `\u8FDC\u7A0B
|
|
42479
|
+
"commands.autofixPr.remoteNotAvailable": `\u8FDC\u7A0B\u4EE3\u7406\u4E0D\u53EF\u7528\uFF1A
|
|
42377
42480
|
{reasons}`,
|
|
42378
42481
|
"commands.autofixPr.alreadyMonitoringOther": "\u5DF2\u5728\u76D1\u63A7 {repo}#{prNumber}\u3002\u8BF7\u5148\u8FD0\u884C /autofix-pr stop\u3002",
|
|
42379
42482
|
"commands.autofixPr.teleportFailed": "\u4F20\u9001\u5931\u8D25\uFF1A{error}",
|
|
@@ -42383,6 +42486,57 @@ var init_commands_others2 = __esm(() => {
|
|
|
42383
42486
|
};
|
|
42384
42487
|
});
|
|
42385
42488
|
|
|
42489
|
+
// locales/zh-CN/commands.pipe.ts
|
|
42490
|
+
var commands_pipe_default2;
|
|
42491
|
+
var init_commands_pipe2 = __esm(() => {
|
|
42492
|
+
commands_pipe_default2 = {
|
|
42493
|
+
"pipe.send.notMasterMode": "\u4E0D\u5728 master \u6A21\u5F0F\u3002\u8BF7\u5148\u4F7F\u7528 /attach <pipe-name>\u3002",
|
|
42494
|
+
"pipe.send.usage": "\u7528\u6CD5: /send <pipe-name> <message>",
|
|
42495
|
+
"pipe.send.notAttached": '\u672A\u8FDE\u63A5\u5230 "{targetName}"\u3002\u4F7F\u7528 /status \u67E5\u770B\u5DF2\u8FDE\u63A5\u7684\u5B50\u4F1A\u8BDD\u3002',
|
|
42496
|
+
"pipe.send.connectionClosed": '\u5230 "{targetName}" \u7684\u8FDE\u63A5\u5DF2\u5173\u95ED\u3002\u4F7F\u7528 /detach {targetName} \u540E\u91CD\u65B0\u8FDE\u63A5\u3002',
|
|
42497
|
+
"pipe.send.sent": '\u5DF2\u53D1\u9001\u5230 "{targetName}": {message}',
|
|
42498
|
+
"pipe.send.failed": '\u53D1\u9001\u5230 "{targetName}" \u5931\u8D25: {error}',
|
|
42499
|
+
"pipe.attach.usage": `\u7528\u6CD5: /attach <pipe-name>
|
|
42500
|
+
\u4F7F\u7528 /pipes \u5217\u51FA\u53EF\u7528 pipe\u3002`,
|
|
42501
|
+
"pipe.attach.alreadyAttached": '\u5DF2\u8FDE\u63A5\u5230 "{targetName}"\u3002',
|
|
42502
|
+
"pipe.attach.cannotAttachControlled": "\u65E0\u6CD5\u8FDE\u63A5: \u8BE5\u5B50\u4F1A\u8BDD\u5F53\u524D\u7531\u4E00\u4E2A master \u63A7\u5236\u3002\u8BF7\u5148\u5C06\u5176\u4ECE master \u65AD\u5F00\u3002",
|
|
42503
|
+
"pipe.attach.connectFailed": '\u8FDE\u63A5\u5230 "{targetName}"{endpoint} \u5931\u8D25: {error}',
|
|
42504
|
+
"pipe.attach.timeout": '\u8FDE\u63A5\u5230 "{targetName}" \u8D85\u65F6\uFF085 \u79D2\u5185\u65E0\u54CD\u5E94\uFF09\u3002',
|
|
42505
|
+
"pipe.attach.attachedAsMaster": `\u5DF2\u4F5C\u4E3A master \u8FDE\u63A5\u5230 "{targetName}"\u3002\u6B63\u5728\u76D1\u63A7 {slaveCount} \u4E2A\u5B50\u4F1A\u8BDD\u3002
|
|
42506
|
+
\u4F7F\u7528 /send {targetName} <message> \u53D1\u9001\u4EFB\u52A1\u3002
|
|
42507
|
+
\u4F7F\u7528 /status \u67E5\u770B\u6240\u6709\u5DF2\u8FDE\u63A5\u7684\u5B50\u4F1A\u8BDD\u3002
|
|
42508
|
+
\u4F7F\u7528 /detach {targetName} \u65AD\u5F00\u8FDE\u63A5\u3002`,
|
|
42509
|
+
"pipe.attach.rejected": '\u8FDE\u63A5\u5230 "{targetName}" \u88AB\u62D2\u7EDD: {reason}',
|
|
42510
|
+
"pipe.detach.notAttachedAny": "\u672A\u8FDE\u63A5\u5230\u4EFB\u4F55 CLI\u3002",
|
|
42511
|
+
"pipe.detach.controlledByMaster": "\u8BE5\u5B50\u4F1A\u8BDD\u7531\u4E00\u4E2A master \u63A7\u5236\u3002\u5FC5\u987B\u7531 master \u65AD\u5F00\u3002",
|
|
42512
|
+
"pipe.detach.notAttached": '\u672A\u8FDE\u63A5\u5230 "{targetName}"\u3002\u4F7F\u7528 /status \u67E5\u770B\u5DF2\u8FDE\u63A5\u7684\u5B50\u4F1A\u8BDD\u3002',
|
|
42513
|
+
"pipe.detach.detached": '\u5DF2\u4ECE "{targetName}" \u65AD\u5F00\u3002',
|
|
42514
|
+
"pipe.detach.detachedAll": "\u5DF2\u4ECE {count} \u4E2A\u5B50\u4F1A\u8BDD\u65AD\u5F00: {names}\u3002\u8FD4\u56DE main \u6A21\u5F0F\u3002",
|
|
42515
|
+
"pipe.status.mainNotConnected": `Main \u6A21\u5F0F \u2014 \u672A\u8FDE\u63A5\u5230\u4EFB\u4F55 CLI\u3002
|
|
42516
|
+
\u4F7F\u7528 /attach <pipe-name> \u8FDE\u63A5\u5230\u4E00\u4E2A\u5B50\u4F1A\u8BDD\u3002`,
|
|
42517
|
+
"pipe.status.controlledByMaster": `{role} \u6A21\u5F0F \u2014 \u7531 "{attachedBy}" \u63A7\u5236\u3002
|
|
42518
|
+
\u6240\u6709\u4F1A\u8BDD\u6570\u636E\u6B63\u5728\u4E0A\u62A5\u7ED9 master\u3002`,
|
|
42519
|
+
"pipe.status.masterNoSubs": `Master \u6A21\u5F0F\uFF0C\u4F46\u6CA1\u6709\u8FDE\u63A5\u4EFB\u4F55\u5B50\u4F1A\u8BDD\u3002
|
|
42520
|
+
\u4F7F\u7528 /attach <pipe-name> \u8FDB\u884C\u8FDE\u63A5\u3002`,
|
|
42521
|
+
"pipe.status.masterHeader": "Master \u6A21\u5F0F \u2014 \u5DF2\u8FDE\u63A5 {count} \u4E2A\u5B50\u4F1A\u8BDD:",
|
|
42522
|
+
"pipe.status.slaveStatus": " \u72B6\u6001: {status} ({connected})",
|
|
42523
|
+
"pipe.status.slaveConnected": " \u8FDE\u63A5\u65F6\u95F4: {time}",
|
|
42524
|
+
"pipe.status.slaveHistory": " \u5386\u53F2: {count} \u6761\u8BB0\u5F55",
|
|
42525
|
+
"pipe.status.commandsHeader": "\u547D\u4EE4:",
|
|
42526
|
+
"pipe.status.cmdSend": " /send <name> <msg> \u2014 \u5411\u5B50\u4F1A\u8BDD\u53D1\u9001\u4EFB\u52A1",
|
|
42527
|
+
"pipe.status.cmdHistory": " /history <name> \u2014 \u67E5\u770B\u5B50\u4F1A\u8BDD\u8BB0\u5F55",
|
|
42528
|
+
"pipe.status.cmdDetach": " /detach [name] \u2014 \u65AD\u5F00\u5B50\u4F1A\u8BDD\uFF08\u6216\u5168\u90E8\uFF09",
|
|
42529
|
+
"pipe.claimMain.noServer": "Pipe \u670D\u52A1\u672A\u542F\u52A8\u3002\u65E0\u6CD5\u58F0\u660E main\u3002",
|
|
42530
|
+
"pipe.claimMain.alreadyMain": "\u5F53\u524D\u5B9E\u4F8B\u5DF2\u7ECF\u662F main\u3002\u65E0\u9700\u66F4\u6539\u3002",
|
|
42531
|
+
"pipe.claimMain.success": "\u5DF2\u6210\u529F\u58F0\u660E main \u89D2\u8272\u3002",
|
|
42532
|
+
"pipe.claimMain.machineId": "\u673A\u5668 ID: {id}",
|
|
42533
|
+
"pipe.claimMain.pipe": "Pipe: {pipe}",
|
|
42534
|
+
"pipe.claimMain.previousMain": "\u4E0A\u4E00\u4E2A main \u673A\u5668: {id}",
|
|
42535
|
+
"pipe.claimMain.subsBound": "\u6240\u6709\u73B0\u6709\u5B50\u4F1A\u8BDD\u73B0\u5DF2\u7ED1\u5B9A\u5230\u5F53\u524D\u5B9E\u4F8B\u3002",
|
|
42536
|
+
"pipe.claimMain.usePipes": "\u4F7F\u7528 /pipes \u8FDB\u884C\u9A8C\u8BC1\u3002"
|
|
42537
|
+
};
|
|
42538
|
+
});
|
|
42539
|
+
|
|
42386
42540
|
// locales/zh-CN/tools.ts
|
|
42387
42541
|
var tools_default2;
|
|
42388
42542
|
var init_tools2 = __esm(() => {
|
|
@@ -42398,7 +42552,7 @@ var init_tools2 = __esm(() => {
|
|
|
42398
42552
|
"tools.ConfigTool.settings.preferredNotifChannel.description": "\u9996\u9009\u901A\u77E5\u6E20\u9053",
|
|
42399
42553
|
"tools.ConfigTool.settings.autoCompactEnabled.description": "\u4E0A\u4E0B\u6587\u6EE1\u65F6\u81EA\u52A8\u538B\u7F29",
|
|
42400
42554
|
"tools.ConfigTool.settings.autoMemoryEnabled.description": "\u542F\u7528\u81EA\u52A8\u8BB0\u5FC6",
|
|
42401
|
-
"tools.ConfigTool.settings.autoDreamEnabled.description": "\u542F\u7528\u540E\u53F0\u8BB0\u5FC6\u6574\
|
|
42555
|
+
"tools.ConfigTool.settings.autoDreamEnabled.description": "\u542F\u7528\u540E\u53F0\u8BB0\u5FC6\u6574\u5408",
|
|
42402
42556
|
"tools.ConfigTool.settings.fileCheckpointingEnabled.description": "\u542F\u7528\u6587\u4EF6\u68C0\u67E5\u70B9\uFF08\u4EE3\u7801\u56DE\u9000\uFF09",
|
|
42403
42557
|
"tools.ConfigTool.settings.showTurnDuration.description": '\u54CD\u5E94\u540E\u663E\u793A\u8017\u65F6\u6D88\u606F\uFF08\u5982"\u8017\u65F6 1 \u5206 6 \u79D2"\uFF09',
|
|
42404
42558
|
"tools.ConfigTool.settings.terminalProgressBarEnabled.description": "\u5728\u652F\u6301\u7684\u7EC8\u7AEF\u4E2D\u663E\u793A OSC 9;4 \u8FDB\u5EA6\u6307\u793A\u5668",
|
|
@@ -42418,7 +42572,7 @@ var init_tools2 = __esm(() => {
|
|
|
42418
42572
|
"tools.CronCreateTool.description": "\u8C03\u5EA6\u4E00\u4E2A prompt \u5728\u672A\u6765\u8FD0\u884C\u2014\u2014\u53EF\u4EE5\u662F\u6309 cron \u8BA1\u5212\u91CD\u590D\u6267\u884C\uFF0C\u4E5F\u53EF\u4EE5\u662F\u5355\u6B21\u6267\u884C\u3002",
|
|
42419
42573
|
"tools.CronDeleteTool.description": "\u6309 ID \u53D6\u6D88\u5DF2\u8BA1\u5212\u7684 cron \u4EFB\u52A1",
|
|
42420
42574
|
"tools.CronListTool.description": "\u5217\u51FA\u5DF2\u8BA1\u5212\u7684 cron \u4EFB\u52A1",
|
|
42421
|
-
"tools.CtxInspectTool.description": "\u68C0\u67E5\u5F53\u524D\u4E0A\u4E0B\u6587\u7A97\u53E3\u5185\u5BB9\u548C\
|
|
42575
|
+
"tools.CtxInspectTool.description": "\u68C0\u67E5\u5F53\u524D\u4E0A\u4E0B\u6587\u7A97\u53E3\u5185\u5BB9\u548C token \u4F7F\u7528\u60C5\u51B5",
|
|
42422
42576
|
"tools.DiscoverSkillsTool.description": "\u901A\u8FC7\u63CF\u8FF0\u4F60\u60F3\u505A\u4EC0\u4E48\u6765\u641C\u7D22\u76F8\u5173\u6280\u80FD",
|
|
42423
42577
|
"tools.EnterPlanModeTool.description": "\u8FDB\u5165\u8BA1\u5212\u6A21\u5F0F\u4EE5\u83B7\u53D6\u8BBE\u8BA1\u6279\u51C6",
|
|
42424
42578
|
"tools.EnterWorktreeTool.description": "\u521B\u5EFA\u4E00\u4E2A\u72EC\u7ACB\u7684\u5DE5\u4F5C\u6811\uFF08\u901A\u8FC7 git \u6216\u914D\u7F6E\u7684\u94A9\u5B50\uFF09\u5C06\u4F1A\u8BDD\u5207\u6362\u5230\u5176\u4E2D",
|
|
@@ -42435,12 +42589,12 @@ var init_tools2 = __esm(() => {
|
|
|
42435
42589
|
"tools.LocalMemoryRecallTool.description": "\u83B7\u53D6\u7528\u6237\u5B58\u50A8\u5728 ~/.costrict/local-memory/ \u4E2D\u7684\u672C\u5730\u8DE8\u4F1A\u8BDD\u7B14\u8BB0",
|
|
42436
42590
|
"tools.LSPTool.description": "\u4E0E\u8BED\u8A00\u670D\u52A1\u5668\u534F\u8BAE (LSP) \u670D\u52A1\u5668\u4EA4\u4E92\u4EE5\u83B7\u53D6\u4EE3\u7801\u667A\u80FD\u529F\u80FD\u3002",
|
|
42437
42591
|
"tools.McpAuthTool.description": "\u4E3A\u672A\u7ECF\u8EAB\u4EFD\u9A8C\u8BC1\u7684 MCP \u670D\u52A1\u5668\u542F\u52A8 OAuth \u6388\u6743\u6D41\u7A0B",
|
|
42438
|
-
"tools.MCPTool.description": "\u901A\u8FC7\u5DF2\u8FDE\u63A5\u7684 MCP\
|
|
42592
|
+
"tools.MCPTool.description": "\u901A\u8FC7\u5DF2\u8FDE\u63A5\u7684 MCP \u670D\u52A1\u5668\u6267\u884C\u5DE5\u5177\u3002",
|
|
42439
42593
|
"tools.MonitorTool.description": "\u542F\u52A8\u4E00\u4E2A\u957F\u65F6\u95F4\u8FD0\u884C\u7684\u540E\u53F0\u76D1\u89C6\u5668",
|
|
42440
42594
|
"tools.NotebookEditTool.description": "\u66FF\u6362 Jupyter notebook \u4E2D\u7279\u5B9A\u5355\u5143\u683C\u7684\u5185\u5BB9\u3002",
|
|
42441
42595
|
"tools.PowerShellTool.description": "\u8FD0\u884C PowerShell \u547D\u4EE4",
|
|
42442
42596
|
"tools.ReadMcpResourceTool.description": "\u4ECE MCP \u670D\u52A1\u5668\u8BFB\u53D6\u7279\u5B9A\u8D44\u6E90\u3002",
|
|
42443
|
-
"tools.RemoteTriggerTool.description": "\u901A\u8FC7 claude.ai CCR API \u7BA1\u7406\u5DF2\u8BA1\u5212\u7684\u8FDC\u7A0B CoStrict
|
|
42597
|
+
"tools.RemoteTriggerTool.description": "\u901A\u8FC7 claude.ai CCR API \u7BA1\u7406\u5DF2\u8BA1\u5212\u7684\u8FDC\u7A0B CoStrict \u4EE3\u7406\uFF08\u89E6\u53D1\u5668\uFF09\u3002",
|
|
42444
42598
|
"tools.REPLTool.description": "\u5728 REPL \u73AF\u5883\u4E2D\u6267\u884C\u4EE3\u7801\uFF0C\u53EF\u8BBF\u95EE\u6240\u6709\u539F\u59CB\u5DE5\u5177",
|
|
42445
42599
|
"tools.ReviewArtifactTool.description": "\u5BA1\u67E5\u4EE3\u7801\u7247\u6BB5\u3001\u6587\u6863\u6216\u5176\u4ED6\u5185\u5BB9\uFF0C\u5E76\u5E26\u6709\u5185\u8054\u6CE8\u91CA\u548C\u53CD\u9988\u3002",
|
|
42446
42600
|
"tools.SearchExtraToolsTool.description": "\u6309\u540D\u79F0\u6216\u5173\u952E\u8BCD\u641C\u7D22\u5EF6\u8FDF\u5DE5\u5177\u3002",
|
|
@@ -42458,13 +42612,13 @@ var init_tools2 = __esm(() => {
|
|
|
42458
42612
|
"tools.TaskOutputTool.description": "[\u5DF2\u5F03\u7528]\u2014\u2014\u5EFA\u8BAE\u4F7F\u7528 Read \u5DE5\u5177\u8BFB\u53D6\u4EFB\u52A1\u8F93\u51FA\u6587\u4EF6\u8DEF\u5F84",
|
|
42459
42613
|
"tools.TaskStopTool.description": "\u6309 ID \u505C\u6B62\u6B63\u5728\u8FD0\u884C\u7684\u540E\u53F0\u4EFB\u52A1",
|
|
42460
42614
|
"tools.TaskUpdateTool.description": "\u66F4\u65B0\u4EFB\u52A1\u72B6\u6001",
|
|
42461
|
-
"tools.TeamCreateTool.description": "\u521B\u5EFA\u65B0\u56E2\u961F\u4EE5\u534F\u8C03\u591A\u4E2A
|
|
42462
|
-
"tools.TeamDeleteTool.description": "\u6E05\u7406\u56E2\u961F\u548C\u4EFB\u52A1\u76EE\u5F55\uFF08\u5F53\
|
|
42615
|
+
"tools.TeamCreateTool.description": "\u521B\u5EFA\u65B0\u56E2\u961F\u4EE5\u534F\u8C03\u591A\u4E2A\u4EE3\u7406",
|
|
42616
|
+
"tools.TeamDeleteTool.description": "\u6E05\u7406\u56E2\u961F\u548C\u4EFB\u52A1\u76EE\u5F55\uFF08\u5F53 swarm \u5B8C\u6210\u65F6\uFF09",
|
|
42463
42617
|
"tools.TerminalCaptureTool.description": "\u6355\u83B7\u7EC8\u7AEF\u9762\u677F\u7684\u8F93\u51FA",
|
|
42464
42618
|
"tools.TodoWriteTool.description": "\u66F4\u65B0\u5F53\u524D\u4F1A\u8BDD\u7684\u5F85\u529E\u4E8B\u9879\u5217\u8868\u3002\u5E94\u4E3B\u52A8\u4E14\u9891\u7E41\u4F7F\u7528\u4EE5\u8DDF\u8E2A\u8FDB\u5EA6\u548C\u5F85\u529E\u4EFB\u52A1\u3002\u786E\u4FDD\u59CB\u7EC8\u81F3\u5C11\u6709\u4E00\u4E2A\u4EFB\u52A1\u5904\u4E8E\u8FDB\u884C\u4E2D\u72B6\u6001\u3002\u59CB\u7EC8\u4E3A\u6BCF\u4E2A\u4EFB\u52A1\u63D0\u4F9B content\uFF08\u7948\u4F7F\u5F62\u5F0F\uFF09\u548C activeForm\uFF08\u73B0\u5728\u8FDB\u884C\u65F6\u5F62\u5F0F\uFF09\u3002",
|
|
42465
42619
|
"tools.ToolSearchTool.description": "\u83B7\u53D6\u5EF6\u8FDF\u5DE5\u5177\u7684\u5B8C\u6574\u6A21\u5F0F\u5B9A\u4E49\u4EE5\u4FBF\u8C03\u7528\u3002",
|
|
42466
42620
|
"tools.UpdateTodoListCompatTool.description": "\u63A8\u8350\u7684 CoStrict \u5DE5\u5177\uFF0C\u7528\u4E8E\u4ECE markdown \u521B\u5EFA\u548C\u66F4\u65B0\u7B80\u5355\u7684\u4EFB\u52A1\u68C0\u67E5\u5217\u8868\u3002",
|
|
42467
|
-
"tools.VaultHttpFetchTool.description": "\u4F7F\u7528\u5B58\u50A8\u5728\u7528\u6237\u52A0\u5BC6\u672C\u5730\u4FDD\
|
|
42621
|
+
"tools.VaultHttpFetchTool.description": "\u4F7F\u7528\u5B58\u50A8\u5728\u7528\u6237\u52A0\u5BC6\u672C\u5730\u4FDD\u7BA1\u5E93\u4E2D\u7684\u5BC6\u94A5\u53D1\u8D77\u7ECF\u8FC7\u8EAB\u4EFD\u9A8C\u8BC1\u7684 HTTPS \u8BF7\u6C42\u3002",
|
|
42468
42622
|
"tools.VerifyPlanExecutionTool.description": "\u5728\u9000\u51FA\u8BA1\u5212\u6A21\u5F0F\u4E4B\u524D\u9A8C\u8BC1\u8BA1\u5212\u662F\u5426\u6B63\u786E\u6267\u884C",
|
|
42469
42623
|
"tools.WebBrowserTool.description": "\u901A\u8FC7 HTTP \u83B7\u53D6\u548C\u8BFB\u53D6\u7F51\u9875\u5185\u5BB9",
|
|
42470
42624
|
"tools.WebFetchTool.description": "\u4ECE URL \u83B7\u53D6\u5185\u5BB9",
|
|
@@ -42548,14 +42702,14 @@ var init_tools2 = __esm(() => {
|
|
|
42548
42702
|
"tools.vaulthttpfetch": "VaultHttpFetch",
|
|
42549
42703
|
"tools.waiting": "\u7B49\u5F85\u4E2D",
|
|
42550
42704
|
"tools.waiting_2": "\u7B49\u5F85\u4E2D",
|
|
42551
|
-
"tools.waiting.for.team.lead.to.review.and.approve": "\u7B49\u5F85\u56E2\u961F\u8D1F\u8D23\u4EBA\u5BA1\u6838\u6279
|
|
42705
|
+
"tools.waiting.for.team.lead.to.review.and.approve": "\u7B49\u5F85\u56E2\u961F\u8D1F\u8D23\u4EBA\u5BA1\u6838\u5BA1\u6279",
|
|
42552
42706
|
"tools.workflow": "\u5DE5\u4F5C\u6D41",
|
|
42553
42707
|
"tools.yes.and.don": "\u662F\uFF0C\u4E0D\u518D\u8BE2\u95EE",
|
|
42554
42708
|
"tools.bash.userFacingName": "Bash",
|
|
42555
|
-
"tools.bash.sandboxedUserFacingName": "\u6C99\
|
|
42709
|
+
"tools.bash.sandboxedUserFacingName": "\u6C99\u7BB1 Bash",
|
|
42556
42710
|
"tools.bash.activityDescRunning": "\u6B63\u5728\u8FD0\u884C\u547D\u4EE4",
|
|
42557
42711
|
"tools.bash.activityDesc": "\u6B63\u5728\u8FD0\u884C {desc}",
|
|
42558
|
-
"tools.bash.blockedSleep": "\u5DF2\u963B\u6B62\uFF1A{pattern}\u3002\u8BF7\u5728\u540E\u53F0\u4F7F\u7528 run_in_background: true \u8FD0\u884C\u963B\u585E\u547D\u4EE4\u2014\u2014\u5B8C\u6210\u540E\u4F1A\u6536\u5230\u901A\u77E5\u3002\u5BF9\u4E8E\u6D41\u5F0F\u4E8B\u4EF6\uFF08\u76D1\u63A7\u65E5\u5FD7\u3001\u8F6E\u8BE2 API\uFF09\uFF0C\u8BF7\u4F7F\u7528 Monitor \u5DE5\u5177\u3002\u5982\u679C\u786E\u5B9E\u9700\u8981\u5EF6\u8FDF\uFF08\u9650\
|
|
42712
|
+
"tools.bash.blockedSleep": "\u5DF2\u963B\u6B62\uFF1A{pattern}\u3002\u8BF7\u5728\u540E\u53F0\u4F7F\u7528 run_in_background: true \u8FD0\u884C\u963B\u585E\u547D\u4EE4\u2014\u2014\u5B8C\u6210\u540E\u4F1A\u6536\u5230\u901A\u77E5\u3002\u5BF9\u4E8E\u6D41\u5F0F\u4E8B\u4EF6\uFF08\u76D1\u63A7\u65E5\u5FD7\u3001\u8F6E\u8BE2 API\uFF09\uFF0C\u8BF7\u4F7F\u7528 Monitor \u5DE5\u5177\u3002\u5982\u679C\u786E\u5B9E\u9700\u8981\u5EF6\u8FDF\uFF08\u901F\u7387\u9650\u5236\u3001\u523B\u610F\u653E\u7F13\uFF09\uFF0C\u8BF7\u4FDD\u6301\u5728 2 \u79D2\u4EE5\u5185\u3002",
|
|
42559
42713
|
"tools.fileEdit.description": "\u7528\u4E8E\u7F16\u8F91\u6587\u4EF6\u7684\u5DE5\u5177",
|
|
42560
42714
|
"tools.fileEdit.userFacingNameUpdate": "\u66F4\u65B0",
|
|
42561
42715
|
"tools.fileEdit.userFacingNameUpdatedPlan": "\u66F4\u65B0\u8BA1\u5212",
|
|
@@ -42563,7 +42717,7 @@ var init_tools2 = __esm(() => {
|
|
|
42563
42717
|
"tools.fileEdit.activityDescEditing": "\u6B63\u5728\u7F16\u8F91\u6587\u4EF6",
|
|
42564
42718
|
"tools.fileEdit.activityDesc": "\u6B63\u5728\u7F16\u8F91 {summary}",
|
|
42565
42719
|
"tools.fileRead.userFacingNameReadingPlan": "\u6B63\u5728\u8BFB\u53D6\u8BA1\u5212",
|
|
42566
|
-
"tools.fileRead.userFacingNameReadAgentOutput": "\u8BFB\u53D6
|
|
42720
|
+
"tools.fileRead.userFacingNameReadAgentOutput": "\u8BFB\u53D6\u4EE3\u7406\u8F93\u51FA",
|
|
42567
42721
|
"tools.fileRead.userFacingNameRead": "\u8BFB\u53D6",
|
|
42568
42722
|
"tools.fileRead.activityDescReading": "\u6B63\u5728\u8BFB\u53D6\u6587\u4EF6",
|
|
42569
42723
|
"tools.fileRead.activityDesc": "\u6B63\u5728\u8BFB\u53D6 {summary}",
|
|
@@ -42674,15 +42828,15 @@ var init_errors3 = __esm(() => {
|
|
|
42674
42828
|
"errors.localVault.valueTooLarge": "LocalVault: \u673A\u5BC6\u503C\u8FC7\u5927 ({bytes} \u5B57\u8282)\u3002\u6700\u5927\u5141\u8BB8 {max} \u5B57\u8282 ({maxKB} KB)\u3002\u5927\u578B\u6570\u636E\u8BF7\u4F7F\u7528\u5916\u90E8\u5B58\u50A8\u3002",
|
|
42675
42829
|
"errors.localVault.keyEmpty": "\u5BC6\u94A5\u4E0D\u80FD\u4E3A\u7A7A",
|
|
42676
42830
|
"errors.localVault.keychainUnavailable": "[LocalVault] \u64CD\u4F5C\u7CFB\u7EDF\u5BC6\u94A5\u94FE\u4E0D\u53EF\u7528\uFF0C\u56DE\u9000\u5230\u52A0\u5BC6\u6587\u4EF6\u3002\u8BF7\u5B89\u88C5\u5E73\u53F0\u5BC6\u94A5\u94FE\u6216\u8BBE\u7F6E CLAUDE_LOCAL_VAULT_PASSPHRASE \u73AF\u5883\u53D8\u91CF\u3002",
|
|
42677
|
-
"errors.localVault.windowsPerm": 'LocalVault\uFF1A\u65E0\u6CD5\u5728 Windows \u4E0A\u8BBE\u7F6E\u5BC6\u7801\u6587\u4EF6\u6743\u9650\u3002\u4E3A\u4FDD\u62A4\u4FDD\
|
|
42678
|
-
"errors.localVault.passphraseGenerated": "[LocalVault] \u5DF2\u751F\u6210\u65B0\u7684\u5BC6\u7801\u6587\u4EF6: {path} \u2014 \u8BF7\u5907\u4EFD\uFF01\u4E22\u5931\u6B64\u6587\u4EF6\u610F\u5473\u7740\u5C06\u65E0\u6CD5\u8BBF\u95EE\u60A8\u7684\u52A0\u5BC6\u4FDD\
|
|
42831
|
+
"errors.localVault.windowsPerm": 'LocalVault\uFF1A\u65E0\u6CD5\u5728 Windows \u4E0A\u8BBE\u7F6E\u5BC6\u7801\u6587\u4EF6\u6743\u9650\u3002\u4E3A\u4FDD\u62A4\u4FDD\u7BA1\u5E93\uFF0C\u8BF7\u8BBE\u7F6E CLAUDE_LOCAL_VAULT_PASSPHRASE \u73AF\u5883\u53D8\u91CF\u800C\u975E\u4F9D\u8D56\u5BC6\u7801\u6587\u4EF6\u3002\u8FD0\u884C\uFF1Aicacls "%USERPROFILE%\\.claude\\.local-vault-passphrase" /inheritance:r /grant:r "%USERNAME%":F',
|
|
42832
|
+
"errors.localVault.passphraseGenerated": "[LocalVault] \u5DF2\u751F\u6210\u65B0\u7684\u5BC6\u7801\u6587\u4EF6: {path} \u2014 \u8BF7\u5907\u4EFD\uFF01\u4E22\u5931\u6B64\u6587\u4EF6\u610F\u5473\u7740\u5C06\u65E0\u6CD5\u8BBF\u95EE\u60A8\u7684\u52A0\u5BC6\u4FDD\u7BA1\u5E93\u3002",
|
|
42679
42833
|
"errors.localVault.corruptedRecord": "\u8BB0\u5F55\u7F16\u7801\u635F\u574F",
|
|
42680
42834
|
"errors.localVault.invalidIvTag": "\u65E0\u6548\u7684 IV \u6216\u6807\u7B7E\u957F\u5EA6",
|
|
42681
42835
|
"errors.localVault.authTagMismatch": "\u8BA4\u8BC1\u6807\u7B7E\u4E0D\u5339\u914D \u2014 \u5BC6\u7801\u9519\u8BEF\u6216\u6570\u636E\u88AB\u7BE1\u6539",
|
|
42682
|
-
"errors.localVault.notUtf8": "\u89E3\u5BC6\u540E\u7684\u6570\u636E\u4E0D\u662F\u6709\u6548\u7684 UTF-8 \u2014 \u4FDD\
|
|
42683
|
-
"errors.localVault.corruptJson": "\u4FDD\
|
|
42684
|
-
"errors.localVault.unexpectedFormat": "\u4FDD\
|
|
42685
|
-
"errors.localVault.oldFormat": "\u4FDD\
|
|
42836
|
+
"errors.localVault.notUtf8": "\u89E3\u5BC6\u540E\u7684\u6570\u636E\u4E0D\u662F\u6709\u6548\u7684 UTF-8 \u2014 \u4FDD\u7BA1\u5E93\u8BB0\u5F55\u53EF\u80FD\u5DF2\u635F\u574F",
|
|
42837
|
+
"errors.localVault.corruptJson": "\u4FDD\u7BA1\u5E93\u6587\u4EF6\u635F\u574F\uFF08\u65E0\u6548\u7684 JSON\uFF09\u2014 \u8BF7\u4ECE\u5907\u4EFD\u6062\u590D",
|
|
42838
|
+
"errors.localVault.unexpectedFormat": "\u4FDD\u7BA1\u5E93\u6587\u4EF6\u683C\u5F0F\u5F02\u5E38 \u2014 \u8BF7\u4ECE\u5907\u4EFD\u6062\u590D",
|
|
42839
|
+
"errors.localVault.oldFormat": "\u4FDD\u7BA1\u5E93\u662F\u7528\u65E7\u683C\u5F0F\u521B\u5EFA\u7684\uFF08\u65E0 KDF \u76D0\u503C\uFF09\u3002\u8BF7\u4F7F\u7528 /local-vault set \u91CD\u65B0\u8BBE\u7F6E\u60A8\u7684\u673A\u5BC6\u6570\u636E\u4EE5\u5347\u7EA7\u5230\u5B89\u5168\u683C\u5F0F",
|
|
42686
42840
|
"friendlyError.hint.login": "\u8FD0\u884C /login \u91CD\u65B0\u8BA4\u8BC1\uFF0C\u6216\u68C0\u67E5 COSTRICT_API_KEY \u73AF\u5883\u53D8\u91CF\u3002",
|
|
42687
42841
|
"friendlyError.hint.retry": "\u8BF7\u7A0D\u7B49\u51E0\u79D2\u540E\u91CD\u8BD5\u3002\u5982\u679C\u95EE\u9898\u6301\u7EED\uFF0C\u8BF7\u68C0\u67E5\u7F51\u7EDC\u6216\u8FD0\u884C /doctor\u3002",
|
|
42688
42842
|
"friendlyError.hint.compact": "\u8FD0\u884C /compact \u538B\u7F29\u5386\u53F2\u8BB0\u5F55\uFF0C\u6216\u8FD0\u884C /clear \u91CD\u65B0\u5F00\u59CB\u3002",
|
|
@@ -42750,7 +42904,7 @@ var init_errors3 = __esm(() => {
|
|
|
42750
42904
|
"errors.acp.option.reject": "\u62D2\u7EDD",
|
|
42751
42905
|
"errors.acp.option.yesAutoMode": '\u662F\uFF0C\u5E76\u4F7F\u7528 "auto" \u6A21\u5F0F',
|
|
42752
42906
|
"errors.acp.option.yesAutoAcceptEdits": "\u662F\uFF0C\u5E76\u81EA\u52A8\u63A5\u53D7\u7F16\u8F91",
|
|
42753
|
-
"errors.acp.option.yesManuallyApprove": "\u662F\uFF0C\u5E76\u624B\u52A8\u6279\
|
|
42907
|
+
"errors.acp.option.yesManuallyApprove": "\u662F\uFF0C\u5E76\u624B\u52A8\u5BA1\u6279\u7F16\u8F91",
|
|
42754
42908
|
"errors.acp.option.noKeepPlanning": "\u5426\uFF0C\u7EE7\u7EED\u89C4\u5212",
|
|
42755
42909
|
"errors.acp.option.yesBypassPermissions": "\u662F\uFF0C\u5E76\u7ED5\u8FC7\u6743\u9650",
|
|
42756
42910
|
"errors.mcp.requiresPermission": "MCPTool \u9700\u8981\u6743\u9650\u3002",
|
|
@@ -42765,7 +42919,29 @@ var init_errors3 = __esm(() => {
|
|
|
42765
42919
|
"errors.gemini.noResponseBody": "Gemini API \u672A\u8FD4\u56DE\u54CD\u5E94\u4F53",
|
|
42766
42920
|
"errors.gemini.ssePayloadFailed": "\u89E3\u6790 Gemini SSE \u8D1F\u8F7D\u5931\u8D25\uFF1A{error}",
|
|
42767
42921
|
"errors.gemini.trailingSsePayloadFailed": "\u89E3\u6790 Gemini \u5C3E\u90E8 SSE \u8D1F\u8F7D\u5931\u8D25\uFF1A{error}",
|
|
42768
|
-
"errors.plugins.invalidScope": '\u65E0\u6548\u7684\u4F5C\u7528\u57DF "{scope}"\u3002\u5FC5\u987B\u662F\u4EE5\u4E0B\u4E4B\u4E00\uFF1A{validScopes}'
|
|
42922
|
+
"errors.plugins.invalidScope": '\u65E0\u6548\u7684\u4F5C\u7528\u57DF "{scope}"\u3002\u5FC5\u987B\u662F\u4EE5\u4E0B\u4E4B\u4E00\uFF1A{validScopes}',
|
|
42923
|
+
"errors.print.executionError": "\u6267\u884C\u9519\u8BEF",
|
|
42924
|
+
"errors.print.maxTurns": `\u9519\u8BEF: \u5DF2\u8FBE\u5230\u6700\u5927\u8F6E\u6570\uFF08{maxTurns}\uFF09\u3002
|
|
42925
|
+
\u63D0\u793A: \u4F7F\u7528 --max-turns \u63D0\u9AD8\u4E0A\u9650\uFF0C\u6216\u5728\u65B0\u7684\u4F1A\u8BDD\u4E2D\u7EE7\u7EED\u3002`,
|
|
42926
|
+
"errors.print.maxBudgetUsd": "\u9519\u8BEF: \u5DF2\u8D85\u51FA USD \u9884\u7B97\uFF08${maxBudgetUsd}\uFF09\u3002\n\u63D0\u793A: \u4F7F\u7528 --max-budget-usd \u63D0\u9AD8\u4E0A\u9650\uFF0C\u6216\u5F00\u542F\u65B0\u7684\u4F1A\u8BDD\u7EE7\u7EED\u3002",
|
|
42927
|
+
"errors.print.maxStructuredOutputRetries": `\u9519\u8BEF: \u5728\u8FBE\u5230\u6700\u5927\u91CD\u8BD5\u6B21\u6570\u540E\u4ECD\u672A\u80FD\u63D0\u4F9B\u6709\u6548\u7684\u7ED3\u6784\u5316\u8F93\u51FA\u3002
|
|
42928
|
+
\u63D0\u793A: \u7B80\u5316\u4F60\u7684 schema\uFF0C\u6216\u68C0\u67E5\u8F93\u51FA\u683C\u5F0F\u662F\u5426\u4E0E\u9884\u671F\u7ED3\u6784\u5339\u914D\u3002`,
|
|
42929
|
+
"security.commandContains": "\u547D\u4EE4\u5305\u542B {message}",
|
|
42930
|
+
"security.commandSubstitution": "\u547D\u4EE4\u66FF\u6362 $()",
|
|
42931
|
+
"security.processSubIn": "\u8FDB\u7A0B\u66FF\u6362 <()",
|
|
42932
|
+
"security.processSubOut": "\u8FDB\u7A0B\u66FF\u6362 >()",
|
|
42933
|
+
"security.zshProcessSub": "Zsh \u8FDB\u7A0B\u66FF\u6362 =()",
|
|
42934
|
+
"security.zshEqualsExpansion": "Zsh \u7B49\u53F7\u5C55\u5F00",
|
|
42935
|
+
"security.paramExpansion": "\u53C2\u6570\u5C55\u5F00 ${}",
|
|
42936
|
+
"security.legacyArithExpansion": "\u65E7\u5F0F\u7B97\u672F\u5C55\u5F00 $[]",
|
|
42937
|
+
"security.zshParamExpansion": "Zsh \u98CE\u683C\u53C2\u6570\u5C55\u5F00",
|
|
42938
|
+
"security.zshGlobQualifier": "Zsh \u98CE\u683C\u901A\u914D\u9650\u5B9A",
|
|
42939
|
+
"security.zshGlobExec": "Zsh \u542B\u547D\u4EE4\u6267\u884C\u7684\u901A\u914D\u9650\u5B9A",
|
|
42940
|
+
"security.zshAlwaysBlock": "Zsh always \u5757",
|
|
42941
|
+
"security.powershellComment": "PowerShell \u6CE8\u91CA\u8BED\u6CD5",
|
|
42942
|
+
"security.backtickSubstitution": "\u53CD\u5F15\u53F7\u547D\u4EE4\u66FF\u6362",
|
|
42943
|
+
"security.powershellSubexpressions": "\u5B50\u8868\u8FBE\u5F0F $()",
|
|
42944
|
+
"security.powershellExpandableStrings": "\u53EF\u6269\u5C55\u5B57\u7B26\u4E32\u542B\u5D4C\u5165\u5F0F\u8868\u8FBE\u5F0F"
|
|
42769
42945
|
};
|
|
42770
42946
|
});
|
|
42771
42947
|
|
|
@@ -42971,8 +43147,8 @@ var init_ui_repl2 = __esm(() => {
|
|
|
42971
43147
|
"repl.streamingDots": "...",
|
|
42972
43148
|
"repl.this.conversation.is.from.a.different.directory": "\u6B64\u5BF9\u8BDD\u6765\u81EA\u4E0D\u540C\u7684\u76EE\u5F55\u3002",
|
|
42973
43149
|
"repl.to.resume.run": "\u8981\u6062\u590D\uFF0C\u8FD0\u884C\uFF1A",
|
|
42974
|
-
"repl.toolApproval": "\u662F\u5426\
|
|
42975
|
-
"repl.toolDenied": "\u5DE5\u5177\
|
|
43150
|
+
"repl.toolApproval": "\u662F\u5426\u6388\u6743\u6B64\u5DE5\u5177\u8C03\u7528\uFF1F",
|
|
43151
|
+
"repl.toolDenied": "\u5DE5\u5177\u8C03\u7528\u88AB\u62D2\u7EDD",
|
|
42976
43152
|
"repl.updateFailed": "\u81EA\u52A8\u66F4\u65B0\u5931\u8D25 \xB7 \u5C1D\u8BD5 /status",
|
|
42977
43153
|
"repl.updateInstalled": "\u66F4\u65B0\u5DF2\u5B89\u88C5 \xB7 \u91CD\u542F\u4EE5\u66F4\u65B0",
|
|
42978
43154
|
"repl.verbose": "\u8BE6\u7EC6\u6A21\u5F0F",
|
|
@@ -42983,11 +43159,11 @@ var init_ui_repl2 = __esm(() => {
|
|
|
42983
43159
|
"repl.transcript.showAll": "\u5C55\u5F00\u5168\u90E8",
|
|
42984
43160
|
"repl.transcript.collapse": "\u6298\u53E0",
|
|
42985
43161
|
"repl.worktreeCreationSlow": '\u5DE5\u4F5C\u6811\u521B\u5EFA\u8017\u65F6 {secs} \u79D2\u3002\u5BF9\u4E8E\u5927\u578B\u4ED3\u5E93\uFF0C\u8BF7\u5728 .costrict/settings.json \u4E2D\u8BBE\u7F6E `worktree.sparsePaths` \u4EC5\u68C0\u51FA\u6240\u9700\u76EE\u5F55 \u2014 \u4F8B\u5982 `{"worktree": {"sparsePaths": ["src", "packages/foo"]}}`\u3002',
|
|
42986
|
-
"repl.sandboxRequired": "\u9519\u8BEF\uFF1A\u9700\u8981\u6C99\u7BB1\u4F46\u4E0D\u53EF\u7528\uFF1A{reason}",
|
|
43162
|
+
"repl.sandboxRequired": "\u9519\u8BEF\uFF1A\u9700\u8981\u6C99\u7BB1\u4F46\u4E0D\u53EF\u7528\uFF1A{reason}\u3002\u8BF7\u5728 .costrict/settings.json \u4E2D\u914D\u7F6E sandbox\uFF0C\u6216\u5C06 sandbox.failIfUnavailable \u8BBE\u4E3A false \u8DF3\u8FC7\u6C99\u7BB1\u3002",
|
|
42987
43163
|
"repl.sandboxFailIfUnavailable": "\u5DF2\u8BBE\u7F6E sandbox.failIfUnavailable \u2014 \u62D2\u7EDD\u5728\u6CA1\u6709\u53EF\u7528\u6C99\u7BB1\u60C5\u51B5\u4E0B\u542F\u52A8\u3002",
|
|
42988
43164
|
"repl.sandboxDisabled": "\u6C99\u7BB1\u5DF2\u7981\u7528",
|
|
42989
|
-
"repl.slaveRequestFailed": "\
|
|
42990
|
-
"repl.slaveRequestInterrupted": "\
|
|
43165
|
+
"repl.slaveRequestFailed": "\u5B50\u4EE3\u7406\u8BF7\u6C42\u5931\u8D25",
|
|
43166
|
+
"repl.slaveRequestInterrupted": "\u5B50\u4EE3\u7406\u8BF7\u6C42\u5728\u5B8C\u6210\u524D\u88AB\u4E2D\u65AD\u3002",
|
|
42991
43167
|
"repl.suspended": "CoStrict \u5DF2\u6682\u505C\u3002\u8FD0\u884C `fg` \u4EE5\u6062\u590D CoStrict\u3002\n\u6CE8\u610F\uFF1ACtrl+Z \u6682\u505C CoStrict\uFF0CCtrl+_ \u64A4\u9500\u8F93\u5165\u3002",
|
|
42992
43168
|
"repl.runningStopHooks": "\u6B63\u5728\u8FD0\u884C\u505C\u6B62\u94A9\u5B50",
|
|
42993
43169
|
"repl.renderingMessages": "\u6B63\u5728\u6E32\u67D3 {count} \u6761\u6D88\u606F\u2026",
|
|
@@ -42996,7 +43172,7 @@ var init_ui_repl2 = __esm(() => {
|
|
|
42996
43172
|
"repl.wroteTranscript": "\u5DF2\u5199\u5165 {path} \xB7 \u672A\u8BBE\u7F6E $VISUAL/$EDITOR",
|
|
42997
43173
|
"repl.renderFailed": "\u6E32\u67D3\u5931\u8D25\uFF1A{error}",
|
|
42998
43174
|
"repl.promptCancelledByUser": "\u7528\u6237\u53D6\u6D88\u4E86\u5F53\u524D\u8F93\u5165",
|
|
42999
|
-
"repl.waitingForLeaderApproval": "\u7B49\u5F85
|
|
43175
|
+
"repl.waitingForLeaderApproval": "\u7B49\u5F85\u4E3B\u4EE3\u7406\u5BA1\u6279\u5BF9 {host} \u7684\u7F51\u7EDC\u8BBF\u95EE",
|
|
43000
43176
|
"repl.messageSniped": "\u8BE5\u6D88\u606F\u5DF2\u4E0D\u518D\u4F4D\u4E8E\u6D3B\u52A8\u4E0A\u4E0B\u6587\u4E2D\uFF08\u5DF2\u88AB\u88C1\u526A\u6216\u538B\u7F29\u79FB\u9664\uFF09\u3002\u8BF7\u9009\u62E9\u66F4\u8FD1\u671F\u7684\u6D88\u606F\u3002",
|
|
43001
43177
|
"repl.conversationSummarized": "\u5BF9\u8BDD\u5DF2\u603B\u7ED3\uFF08{shortcut} \u67E5\u770B\u5386\u53F2\uFF09",
|
|
43002
43178
|
"repl.shortcutsHint": "? \u67E5\u770B\u5FEB\u6377\u952E"
|
|
@@ -43009,7 +43185,7 @@ var init_cli2 = __esm(() => {
|
|
|
43009
43185
|
cli_default2 = {
|
|
43010
43186
|
"cli.argument.exportOutput": "\u5BFC\u51FA\u6587\u672C\u7684\u8F93\u51FA\u6587\u4EF6\u8DEF\u5F84",
|
|
43011
43187
|
"cli.argument.prompt": "\u4F60\u7684\u63D0\u793A\u8BCD",
|
|
43012
|
-
"cli.cmd.agents": "\u5217\u51FA\u5DF2\u914D\u7F6E\u7684
|
|
43188
|
+
"cli.cmd.agents": "\u5217\u51FA\u5DF2\u914D\u7F6E\u7684\u4EE3\u7406",
|
|
43013
43189
|
"cli.cmd.auth": "\u7BA1\u7406\u8BA4\u8BC1",
|
|
43014
43190
|
"cli.cmd.autoMode": "\u67E5\u770B\u81EA\u52A8\u6A21\u5F0F\u5206\u7C7B\u5668\u914D\u7F6E",
|
|
43015
43191
|
"cli.cmd.autoModeConfig": "\u4EE5 JSON \u683C\u5F0F\u8F93\u51FA\u6709\u6548\u7684\u81EA\u52A8\u6A21\u5F0F\u914D\u7F6E",
|
|
@@ -43085,11 +43261,11 @@ var init_cli2 = __esm(() => {
|
|
|
43085
43261
|
"cli.option.addDir": "\u989D\u5916\u7684 CLAUDE.md \u641C\u7D22\u76EE\u5F55",
|
|
43086
43262
|
"cli.option.advisor": "\u542F\u7528\u670D\u52A1\u7AEF advisor \u5DE5\u5177\u5E76\u6307\u5B9A\u6A21\u578B\uFF08\u522B\u540D\u6216\u5B8C\u6574 ID\uFF09",
|
|
43087
43263
|
"cli.option.afk": "[SF-ONLY] \u5DF2\u5F03\u7528\u7684 --permission-mode auto \u522B\u540D",
|
|
43088
|
-
"cli.option.agent": "\u4F7F\u7528\u7684
|
|
43264
|
+
"cli.option.agent": "\u4F7F\u7528\u7684\u4EE3\u7406\u540D\u79F0",
|
|
43089
43265
|
"cli.option.agentColor": "\u961F\u53CB UI \u989C\u8272",
|
|
43090
43266
|
"cli.option.agentId": "\u961F\u53CB agent ID",
|
|
43091
43267
|
"cli.option.agentName": "\u961F\u53CB\u663E\u793A\u540D\u79F0",
|
|
43092
|
-
"cli.option.agentTeams": "\u5F3A\u5236\u4F7F\u7528\u591A\u4EE3\u7406\u6A21\u5F0F",
|
|
43268
|
+
"cli.option.agentTeams": "\u5F3A\u5236 CoStrict \u4F7F\u7528\u591A\u4EE3\u7406\u6A21\u5F0F",
|
|
43093
43269
|
"cli.option.agentType": "\u6B64\u961F\u53CB\u7684\u81EA\u5B9A\u4E49 agent \u7C7B\u578B",
|
|
43094
43270
|
"cli.option.agents": `\u5B9A\u4E49\u81EA\u5B9A\u4E49\u4EE3\u7406\u7684 JSON \u5BF9\u8C61\uFF08\u4F8B\u5982 '{"reviewer": {"description": "Reviews code", "prompt": "You are a code reviewer"}}'\uFF09`,
|
|
43095
43271
|
"cli.option.all": "\u5E94\u7528\u5230\u6240\u6709\uFF08\u4F8B\u5982\u7981\u7528\u6240\u6709\u63D2\u4EF6\uFF09",
|
|
@@ -43101,7 +43277,7 @@ var init_cli2 = __esm(() => {
|
|
|
43101
43277
|
"cli.option.assistant": "\u5F3A\u5236\u4F7F\u7528 assistant \u6A21\u5F0F\uFF08Agent SDK daemon \u4F7F\u7528\uFF09",
|
|
43102
43278
|
"cli.option.authToken": "\u7528\u4E8E\u8BA4\u8BC1\u7684 Bearer token",
|
|
43103
43279
|
"cli.option.available": "\u5305\u542B\u5E02\u573A\u4E2D\u53EF\u7528\u7684\u63D2\u4EF6",
|
|
43104
|
-
"cli.option.bare": "\u6700\u5C0F\u6A21\u5F0F\uFF1A\u8DF3\u8FC7 hooks\u3001LSP\u3001\u63D2\u4EF6\u540C\u6B65\u3001attribution\u3001\u81EA\u52A8\u8BB0\u5FC6\u3001\u540E\u53F0\u9884\u53D6\u3001keychain \u8BFB\u53D6\u548C CLAUDE.md \u81EA\u52A8\u53D1\u73B0\u3002\u8BBE\u7F6E CLAUDE_CODE_SIMPLE=1\
|
|
43280
|
+
"cli.option.bare": "\u6700\u5C0F\u6A21\u5F0F\uFF1A\u8DF3\u8FC7 hooks\u3001LSP\u3001\u63D2\u4EF6\u540C\u6B65\u3001attribution\u3001\u81EA\u52A8\u8BB0\u5FC6\u3001\u540E\u53F0\u9884\u53D6\u3001keychain \u8BFB\u53D6\u548C CLAUDE.md \u81EA\u52A8\u53D1\u73B0\u3002\u8BBE\u7F6E CLAUDE_CODE_SIMPLE=1\u3002\u8BA4\u8BC1\u4E25\u683C\u4F7F\u7528 ANTHROPIC_API_KEY \u6216\u901A\u8FC7 --settings \u7684 apiKeyHelper\uFF08OAuth \u548C keychain \u4E0D\u4F1A\u88AB\u8BFB\u53D6\uFF09\u3002\u7B2C\u4E09\u65B9 provider\uFF08Bedrock/Vertex/Foundry\uFF09\u4F7F\u7528\u5404\u81EA\u7684\u51ED\u8BC1\u3002\u6280\u80FD\u4ECD\u901A\u8FC7 /skill-name \u89E3\u6790\u3002\u53EF\u901A\u8FC7\u4EE5\u4E0B\u65B9\u5F0F\u663E\u5F0F\u63D0\u4F9B\u4E0A\u4E0B\u6587\uFF1A--system-prompt[-file]\u3001--append-system-prompt[-file]\u3001--add-dir\uFF08CLAUDE.md \u76EE\u5F55\uFF09\u3001--mcp-config\u3001--settings\u3001--agents\u3001--plugin-dir\u3002",
|
|
43105
43281
|
"cli.option.betas": "API \u8BF7\u6C42\u4E2D\u5305\u542B\u7684 Beta \u5934\uFF08\u4EC5\u9650 API key \u7528\u6237\uFF09",
|
|
43106
43282
|
"cli.option.brief": "\u542F\u7528 SendUserMessage \u5DE5\u5177\u7528\u4E8E agent \u4E0E\u7528\u6237\u901A\u4FE1",
|
|
43107
43283
|
"cli.option.channels": "\u9700\u5728\u6B64\u4F1A\u8BDD\u4E2D\u6CE8\u518C\u9891\u9053\u901A\u77E5\uFF08\u5165\u7AD9\u63A8\u9001\uFF09\u7684 MCP \u670D\u52A1\u5668\u3002\u7A7A\u683C\u5206\u9694\u7684\u670D\u52A1\u5668\u540D\u79F0\u3002",
|
|
@@ -43158,7 +43334,7 @@ var init_cli2 = __esm(() => {
|
|
|
43158
43334
|
"cli.option.maxBudgetUsd": "API \u8C03\u7528\u7684\u6700\u5927\u7F8E\u5143\u82B1\u8D39\uFF08\u4EC5\u9002\u7528\u4E8E --print\uFF09",
|
|
43159
43335
|
"cli.option.maxSessions": "\u6700\u5927\u5E76\u53D1\u4F1A\u8BDD\u6570",
|
|
43160
43336
|
"cli.option.maxThinkingTokens": "[\u5DF2\u5F03\u7528\uFF0C\u65B0\u7248\u6A21\u578B\u8BF7\u4F7F\u7528 --thinking] \u6700\u5927 thinking token \u6570\uFF08\u4EC5\u9002\u7528\u4E8E --print\uFF09",
|
|
43161
|
-
"cli.option.maxTurns": "\u6700\u5927
|
|
43337
|
+
"cli.option.maxTurns": "\u6700\u5927\u4EE3\u7406\u8F6E\u6B21",
|
|
43162
43338
|
"cli.option.mcpConfig": "\u4ECE JSON \u6587\u4EF6\u6216\u5B57\u7B26\u4E32\u52A0\u8F7D MCP \u670D\u52A1\u5668\uFF08\u7A7A\u683C\u5206\u9694\uFF09",
|
|
43163
43339
|
"cli.option.mcpDebug": "[\u5DF2\u5F03\u7528\uFF0C\u8BF7\u4F7F\u7528 --debug] \u542F\u7528 MCP \u8C03\u8BD5\u6A21\u5F0F\uFF08\u663E\u793A MCP \u670D\u52A1\u5668\u9519\u8BEF\uFF09",
|
|
43164
43340
|
"cli.option.messagingSocketPath": "UDS \u6D88\u606F\u670D\u52A1\u5668\u7684 Unix domain socket \u8DEF\u5F84\uFF08\u9ED8\u8BA4\u4E3A\u4E34\u65F6\u8DEF\u5F84\uFF09",
|
|
@@ -43266,7 +43442,7 @@ detached \u5F15\u64CE\u6CA1\u6709\u7528\u4E8E\u4EA4\u4E92\u8F93\u5165\u7684\u7EC
|
|
|
43266
43442
|
`,
|
|
43267
43443
|
"cli.auth.loginFailed": `\u767B\u5F55\u5931\u8D25\uFF1A
|
|
43268
43444
|
`,
|
|
43269
|
-
"cli.auth.consoleAndClaudeaiConflict": `\u9519\u8BEF\uFF1A--console \u548C --claudeai \u4E0D\u80FD\u540C\u65F6\u4F7F\u7528\u3002
|
|
43445
|
+
"cli.auth.consoleAndClaudeaiConflict": `\u9519\u8BEF\uFF1A--console \u548C --claudeai \u4E0D\u80FD\u540C\u65F6\u4F7F\u7528\uFF0C\u8BF7\u4E8C\u9009\u4E00\u3002
|
|
43270
43446
|
`,
|
|
43271
43447
|
"cli.auth.oauthScopesRequired": `\u4F7F\u7528 COSTRICT_OAUTH_REFRESH_TOKEN \u65F6\u9700\u8981\u8BBE\u7F6E COSTRICT_OAUTH_SCOPES\u3002
|
|
43272
43448
|
\u5C06\u5176\u8BBE\u7F6E\u4E3A\u5237\u65B0\u4EE4\u724C\u9881\u53D1\u65F6\u7684\u8303\u56F4\uFF08\u4EE5\u7A7A\u683C\u5206\u9694\uFF09
|
|
@@ -43489,14 +43665,36 @@ detached \u5F15\u64CE\u6CA1\u6709\u7528\u4E8E\u4EA4\u4E92\u8F93\u5165\u7684\u7EC
|
|
|
43489
43665
|
csc up \u5931\u8D25\uFF0C\u9000\u51FA\u7801 {code}`,
|
|
43490
43666
|
"cli.up.completed": `
|
|
43491
43667
|
csc up \u5DF2\u6210\u529F\u5B8C\u6210\u3002`,
|
|
43492
|
-
"cli.agents.notFound": "\u672A\u627E\u5230
|
|
43493
|
-
"cli.agents.activeCount": `{count} \u4E2A\u6D3B\u8DC3
|
|
43668
|
+
"cli.agents.notFound": "\u672A\u627E\u5230\u4EE3\u7406\u3002",
|
|
43669
|
+
"cli.agents.activeCount": `{count} \u4E2A\u6D3B\u8DC3\u4EE3\u7406
|
|
43494
43670
|
`,
|
|
43495
43671
|
"cli.bg.tailWatching": `
|
|
43496
43672
|
[tail] \u6B63\u5728\u76D1\u542C\u65B0\u8F93\u51FA... (Ctrl+C \u5206\u79BB)
|
|
43497
43673
|
`,
|
|
43498
43674
|
"cli.bg.tailDetached": `
|
|
43499
|
-
[tail] \u5DF2\u4ECE\u4F1A\u8BDD\u5206\u79BB\u3002
|
|
43675
|
+
[tail] \u5DF2\u4ECE\u4F1A\u8BDD\u5206\u79BB\u3002`,
|
|
43676
|
+
"cli.updateCCB.currentVersion": `\u5F53\u524D\u7248\u672C: {version}
|
|
43677
|
+
`,
|
|
43678
|
+
"cli.updateCCB.packageManager": `\u5305\u7BA1\u7406\u5668: {manager}
|
|
43679
|
+
`,
|
|
43680
|
+
"cli.updateCCB.checkingUpdates": `\u6B63\u5728\u68C0\u67E5\u66F4\u65B0...
|
|
43681
|
+
`,
|
|
43682
|
+
"cli.updateCCB.failedCheck": "\u68C0\u67E5\u66F4\u65B0\u5931\u8D25",
|
|
43683
|
+
"cli.updateCCB.unableFetch": `\u65E0\u6CD5\u4ECE npm registry \u83B7\u53D6\u6700\u65B0\u7248\u672C\u3002
|
|
43684
|
+
`,
|
|
43685
|
+
"cli.updateCCB.upToDate": "ccb \u5DF2\u662F\u6700\u65B0\u7248\u672C\uFF08{version}\uFF09",
|
|
43686
|
+
"cli.updateCCB.newVersion": `\u6709\u65B0\u7248\u672C\u53EF\u7528: {latest}\uFF08\u5F53\u524D: {current}\uFF09
|
|
43687
|
+
`,
|
|
43688
|
+
"cli.updateCCB.installing": `\u6B63\u5728\u901A\u8FC7 {manager} \u5B89\u88C5\u66F4\u65B0...
|
|
43689
|
+
`,
|
|
43690
|
+
"cli.updateCCB.successfullyUpdated": "\u5DF2\u6210\u529F\u4ECE {from} \u66F4\u65B0\u5230 {to}",
|
|
43691
|
+
"cli.updateCCB.updateFailed": "\u66F4\u65B0\u5931\u8D25",
|
|
43692
|
+
"cli.updateCCB.errorDetail": `{error}
|
|
43693
|
+
`,
|
|
43694
|
+
"cli.updateCCB.tryManual": `
|
|
43695
|
+
\u5C1D\u8BD5\u624B\u52A8\u66F4\u65B0\uFF1A
|
|
43696
|
+
`,
|
|
43697
|
+
"cli.updateCCB.manualCommand": " {command}"
|
|
43500
43698
|
};
|
|
43501
43699
|
});
|
|
43502
43700
|
|
|
@@ -43513,8 +43711,8 @@ var init_ui_components2 = __esm(() => {
|
|
|
43513
43711
|
"components.advisor.unavailable": "\u987E\u95EE\u6682\u4E0D\u53EF\u7528",
|
|
43514
43712
|
"components.after.authenticating.in.your.browser": "\u6D4F\u89C8\u5668\u8BA4\u8BC1\u5B8C\u6210\u540E",
|
|
43515
43713
|
"components.again.to.exit": "\u518D\u6B21\u6309\u4EE5\u9000\u51FA",
|
|
43516
|
-
"components.agents": "
|
|
43517
|
-
"components.all.background.agents.stopped": "\u6240\u6709\u540E\u53F0
|
|
43714
|
+
"components.agents": "\u4EE3\u7406",
|
|
43715
|
+
"components.all.background.agents.stopped": "\u6240\u6709\u540E\u53F0\u4EE3\u7406\u5DF2\u505C\u6B62",
|
|
43518
43716
|
"components.all.hooks.are.currently": "\u5F53\u524D\u6240\u6709\u94A9\u5B50\u5747",
|
|
43519
43717
|
"components.allow.unsandboxed.fallback": "\u5141\u8BB8\u975E\u6C99\u7BB1\u56DE\u9000",
|
|
43520
43718
|
"components.allowed": "\u5DF2\u5141\u8BB8",
|
|
@@ -43558,7 +43756,7 @@ var init_ui_components2 = __esm(() => {
|
|
|
43558
43756
|
"components.memory.newSuffix": " (\u65B0\u5EFA)",
|
|
43559
43757
|
"components.memory.openAutoFolder": "\u6253\u5F00\u81EA\u52A8\u8BB0\u5FC6\u6587\u4EF6\u5939",
|
|
43560
43758
|
"components.memory.openTeamFolder": "\u6253\u5F00\u56E2\u961F\u8BB0\u5FC6\u6587\u4EF6\u5939",
|
|
43561
|
-
"components.memory.openAgentFolder": "\u6253\u5F00 {agent}
|
|
43759
|
+
"components.memory.openAgentFolder": "\u6253\u5F00 {agent} \u4EE3\u7406\u8BB0\u5FC6",
|
|
43562
43760
|
"components.memory.scope": "{scope} \u8303\u56F4",
|
|
43563
43761
|
"components.auto-updating": "\u81EA\u52A8\u66F4\u65B0\u4E2D",
|
|
43564
43762
|
"components.automatic.color": "\u81EA\u52A8\u914D\u8272",
|
|
@@ -43759,7 +43957,7 @@ var init_ui_components2 = __esm(() => {
|
|
|
43759
43957
|
"components.loading.output.styles": "\u6B63\u5728\u52A0\u8F7D\u8F93\u51FA\u683C\u5F0F",
|
|
43760
43958
|
"components.loading.preview": "\u6B63\u5728\u52A0\u8F7D\u9884\u89C8",
|
|
43761
43959
|
"components.loading.session": "\u6B63\u5728\u52A0\u8F7D\u4F1A\u8BDD",
|
|
43762
|
-
"components.local.agents": "\u672C\u5730
|
|
43960
|
+
"components.local.agents": "\u672C\u5730\u4EE3\u7406",
|
|
43763
43961
|
"components.location": "\u8DEF\u5F84",
|
|
43764
43962
|
"components.logged.in.as": "\u5DF2\u767B\u5F55",
|
|
43765
43963
|
"components.logging.to": "\u6B63\u5728\u8BB0\u5F55\u5230",
|
|
@@ -43772,7 +43970,7 @@ var init_ui_components2 = __esm(() => {
|
|
|
43772
43970
|
"components.managed.settings.require.approval": "\u6258\u7BA1\u8BBE\u7F6E\u9700\u8981\u5BA1\u6279",
|
|
43773
43971
|
"components.marketplace": "\u5E02\u573A",
|
|
43774
43972
|
"components.matcher": "\u5339\u914D\u89C4\u5219",
|
|
43775
|
-
"components.memory.consolidation": "\u8BB0\u5FC6\u6574\
|
|
43973
|
+
"components.memory.consolidation": "\u8BB0\u5FC6\u6574\u5408",
|
|
43776
43974
|
"components.memory.updated.in": "\u8BB0\u5FC6\u5DF2\u66F4\u65B0\u4E8E",
|
|
43777
43975
|
"components.message.from": "\u6D88\u606F\u6765\u81EA",
|
|
43778
43976
|
"components.message.from_2": "\u6D88\u606F\u6765\u81EA",
|
|
@@ -43877,7 +44075,7 @@ var init_ui_components2 = __esm(() => {
|
|
|
43877
44075
|
"components.referenced.pdf": "\u5F15\u7528\u7684 PDF",
|
|
43878
44076
|
"components.referral.link.copied.to.clipboard": "\u63A8\u8350\u94FE\u63A5\u5DF2\u590D\u5236\u5230\u526A\u8D34\u677F",
|
|
43879
44077
|
"components.reject.all": "\u5168\u90E8\u62D2\u7EDD",
|
|
43880
|
-
"components.remote.agents": "\u8FDC\u7A0B
|
|
44078
|
+
"components.remote.agents": "\u8FDC\u7A0B\u4EE3\u7406",
|
|
43881
44079
|
"components.remote.session.details": "\u8FDC\u7A0B\u4F1A\u8BDD\u8BE6\u60C5",
|
|
43882
44080
|
"components.removing.worktree": "\u6B63\u5728\u5220\u9664\u5DE5\u4F5C\u6811",
|
|
43883
44081
|
"components.rename.session": "\u91CD\u547D\u540D\u4F1A\u8BDD",
|
|
@@ -43891,6 +44089,7 @@ var init_ui_components2 = __esm(() => {
|
|
|
43891
44089
|
"components.retry": "\u91CD\u8BD5",
|
|
43892
44090
|
"components.retrying": "\u91CD\u8BD5\u4E2D",
|
|
43893
44091
|
"components.retrying.in": "\u5C06\u5728\u4EE5\u4E0B\u65F6\u95F4\u540E\u91CD\u8BD5",
|
|
44092
|
+
"components.retrying.in.detail": "\u5C06\u5728 {seconds} \u79D2\u540E\u91CD\u8BD5\uFF08\u7B2C {attempt}/{max} \u6B21\uFF09",
|
|
43894
44093
|
"components.review.the.requested.local.action.before.continuing": "\u7EE7\u7EED\u524D\u8BF7\u5BA1\u67E5\u8BF7\u6C42\u7684\u672C\u5730\u64CD\u4F5C",
|
|
43895
44094
|
"components.reviewing": "\u5BA1\u67E5\u4E2D",
|
|
43896
44095
|
"components.rewind": "\u56DE\u9000",
|
|
@@ -44180,7 +44379,7 @@ var init_ui_components2 = __esm(() => {
|
|
|
44180
44379
|
"components.shortcuts.disable": "\u7981\u7528",
|
|
44181
44380
|
"components.shortcuts.close": "\u5173\u95ED",
|
|
44182
44381
|
"components.shortcuts.clear": "\u6E05\u9664",
|
|
44183
|
-
"components.shortcuts.connector": "
|
|
44382
|
+
"components.shortcuts.connector": "",
|
|
44184
44383
|
"components.shortcuts.confirm": "\u786E\u8BA4",
|
|
44185
44384
|
"components.shortcuts.add": "\u6DFB\u52A0",
|
|
44186
44385
|
"components.shortcuts.complete": "\u8865\u5168",
|
|
@@ -44244,8 +44443,8 @@ var init_ui_plugins2 = __esm(() => {
|
|
|
44244
44443
|
"plugins.add.marketplace_3": "\u6DFB\u52A0\u5E02\u573A",
|
|
44245
44444
|
"plugins.again.to.go.back": "\u518D\u6309\u4E00\u6B21\u8FD4\u56DE",
|
|
44246
44445
|
"plugins.again.to.go.back_2": "\u518D\u6309\u4E00\u6B21\u8FD4\u56DE",
|
|
44247
|
-
"plugins.agents": "\xB7
|
|
44248
|
-
"plugins.agents_2": "\u2022
|
|
44446
|
+
"plugins.agents": "\xB7 \u4EE3\u7406\uFF1A",
|
|
44447
|
+
"plugins.agents_2": "\u2022 \u4EE3\u7406\uFF1A",
|
|
44249
44448
|
"plugins.all.available.plugins.are.already.installed": "\u6240\u6709\u53EF\u7528\u63D2\u4EF6\u5DF2\u5B89\u88C5\u3002",
|
|
44250
44449
|
"plugins.all.plugins.from.this.marketplace.are.already.installed": "\u6B64\u5E02\u573A\u4E2D\u7684\u6240\u6709\u63D2\u4EF6\u5DF2\u5B89\u88C5\u3002",
|
|
44251
44450
|
"plugins.already.installed": "\u5DF2\u5B89\u88C5",
|
|
@@ -44303,7 +44502,8 @@ var init_ui_plugins2 = __esm(() => {
|
|
|
44303
44502
|
"plugins.installed.and.configured": "\u5DF2\u5B89\u88C5\u5E76\u914D\u7F6E {name}",
|
|
44304
44503
|
"plugins.installed.but.failed.to.save.config": "{detail}",
|
|
44305
44504
|
"plugins.installed.components": "\u5DF2\u5B89\u88C5\u7EC4\u4EF6\uFF1A",
|
|
44306
|
-
"plugins.installed.count": "\u5DF2\u5B89\u88C5 {count} \u4E2A\u63D2\u4EF6",
|
|
44505
|
+
"plugins.installed.count.single": "\u5DF2\u5B89\u88C5 {count} \u4E2A\u63D2\u4EF6",
|
|
44506
|
+
"plugins.installed.count.plural": "\u5DF2\u5B89\u88C5 {count} \u4E2A\u63D2\u4EF6",
|
|
44307
44507
|
"plugins.installed.partial": "\u5DF2\u5B89\u88C5 {success}/{total} \u4E2A\u63D2\u4EF6",
|
|
44308
44508
|
"plugins.installed.plugins": "\u5DF2\u5B89\u88C5\u63D2\u4EF6\uFF08",
|
|
44309
44509
|
"plugins.installing": "\u6B63\u5728\u5B89\u88C5\u2026",
|
|
@@ -44350,7 +44550,6 @@ var init_ui_plugins2 = __esm(() => {
|
|
|
44350
44550
|
"plugins.plugin.command.usage": "\u63D2\u4EF6\u547D\u4EE4\u7528\u6CD5\uFF1A",
|
|
44351
44551
|
"plugins.plugin.details": "\u63D2\u4EF6\u8BE6\u60C5",
|
|
44352
44552
|
"plugins.plugin.details_2": "\u63D2\u4EF6\u8BE6\u60C5",
|
|
44353
|
-
"plugins.plugins.stateinstalledpluginslength.0": "\u5DF2\u5B89\u88C5\u63D2\u4EF6\u6570\u91CF > 0 \u4E14\uFF08",
|
|
44354
44553
|
"plugins.processing": "\u5904\u7406\u4E2D\u2026",
|
|
44355
44554
|
"plugins.processing_2": "\u5904\u7406\u4E2D\u2026",
|
|
44356
44555
|
"plugins.processing.changes": "\u6B63\u5728\u5904\u7406\u66F4\u6539...",
|
|
@@ -44401,18 +44600,18 @@ var init_ui_plugins2 = __esm(() => {
|
|
|
44401
44600
|
var acp_default2;
|
|
44402
44601
|
var init_acp2 = __esm(() => {
|
|
44403
44602
|
acp_default2 = {
|
|
44404
|
-
"acp.server.notConnected": "\u672A\u8FDE\u63A5\u5230
|
|
44603
|
+
"acp.server.notConnected": "\u672A\u8FDE\u63A5\u5230\u4EE3\u7406",
|
|
44405
44604
|
"acp.server.noActiveSession": "\u6CA1\u6709\u6D3B\u8DC3\u4F1A\u8BDD",
|
|
44406
44605
|
"acp.server.connectFailed": "\u8FDE\u63A5\u5931\u8D25\uFF1A{error}",
|
|
44407
44606
|
"acp.server.sessionCreateFailed": "\u521B\u5EFA\u4F1A\u8BDD\u5931\u8D25\uFF1A{error}",
|
|
44408
|
-
"acp.server.sessionListNotSupported": "\u6B64
|
|
44607
|
+
"acp.server.sessionListNotSupported": "\u6B64\u4EE3\u7406\u4E0D\u652F\u6301\u5217\u51FA\u4F1A\u8BDD",
|
|
44409
44608
|
"acp.server.sessionListFailed": "\u5217\u51FA\u4F1A\u8BDD\u5931\u8D25\uFF1A{error}",
|
|
44410
|
-
"acp.server.sessionLoadNotSupported": "\u6B64
|
|
44609
|
+
"acp.server.sessionLoadNotSupported": "\u6B64\u4EE3\u7406\u4E0D\u652F\u6301\u52A0\u8F7D\u4F1A\u8BDD",
|
|
44411
44610
|
"acp.server.sessionLoadFailed": "\u52A0\u8F7D\u4F1A\u8BDD\u5931\u8D25\uFF1A{error}",
|
|
44412
|
-
"acp.server.sessionResumeNotSupported": "\u6B64
|
|
44611
|
+
"acp.server.sessionResumeNotSupported": "\u6B64\u4EE3\u7406\u4E0D\u652F\u6301\u6062\u590D\u4F1A\u8BDD",
|
|
44413
44612
|
"acp.server.sessionResumeFailed": "\u6062\u590D\u4F1A\u8BDD\u5931\u8D25\uFF1A{error}",
|
|
44414
44613
|
"acp.server.promptFailed": "\u63D0\u793A\u8BCD\u5904\u7406\u5931\u8D25\uFF1A{error}",
|
|
44415
|
-
"acp.server.modelNotSupported": "\u6B64
|
|
44614
|
+
"acp.server.modelNotSupported": "\u6B64\u4EE3\u7406\u4E0D\u652F\u6301\u6A21\u578B\u9009\u62E9",
|
|
44416
44615
|
"acp.server.setModelFailed": "\u8BBE\u7F6E\u6A21\u578B\u5931\u8D25\uFF1A{error}",
|
|
44417
44616
|
"acp.server.unauthorizedToken": "\u672A\u6388\u6743\uFF1A\u65E0\u6548\u7684 Token",
|
|
44418
44617
|
"acp.server.messageTooLarge": "\u6D88\u606F\u8FC7\u5927",
|
|
@@ -44431,12 +44630,12 @@ var init_acp2 = __esm(() => {
|
|
|
44431
44630
|
"acp.server.urlLabel": "URL\uFF1A",
|
|
44432
44631
|
"acp.server.tokenConfigured": "\u5DF2\u914D\u7F6E",
|
|
44433
44632
|
"acp.server.authDisabled": "\u8BA4\u8BC1\u5DF2\u7981\u7528 (--no-auth)",
|
|
44434
|
-
"acp.server.agentLabel": "
|
|
44633
|
+
"acp.server.agentLabel": "\u4EE3\u7406\uFF1A",
|
|
44435
44634
|
"acp.server.cwdLabel": "\u5DE5\u4F5C\u76EE\u5F55\uFF1A",
|
|
44436
44635
|
"acp.server.pressCtrlC": "\u6309 Ctrl+C \u505C\u6B62",
|
|
44437
44636
|
"acp.agent.error.sessionNotFound": "\u4F1A\u8BDD\u672A\u627E\u5230",
|
|
44438
44637
|
"acp.agent.error.sessionXNotFound": "\u4F1A\u8BDD {sessionId} \u672A\u627E\u5230",
|
|
44439
|
-
"acp.agent.error.processExited": "CoStrict
|
|
44638
|
+
"acp.agent.error.processExited": "CoStrict \u4EE3\u7406\u8FDB\u7A0B\u610F\u5916\u9000\u51FA\u3002\u8BF7\u542F\u52A8\u65B0\u4F1A\u8BDD\u3002",
|
|
44440
44639
|
"acp.agent.error.unknownConfigOption": "\u672A\u77E5\u914D\u7F6E\u9009\u9879\uFF1A{configId}",
|
|
44441
44640
|
"acp.agent.error.invalidConfigValue": "\u914D\u7F6E\u9009\u9879 {configId} \u7684\u503C\u65E0\u6548\uFF1A{value}",
|
|
44442
44641
|
"acp.agent.error.invalidMode": "\u65E0\u6548\u6A21\u5F0F\uFF1A{modeId}",
|
|
@@ -44500,7 +44699,7 @@ var init_tips2 = __esm(() => {
|
|
|
44500
44699
|
"tips.shiftTab": "\u6309 {shortcut} \u5728\u9ED8\u8BA4\u3001\u63A5\u53D7\u7F16\u8F91\u3001\u8BA1\u5212\u3001\u81EA\u52A8\u548C\u7ED5\u8FC7\u6A21\u5F0F\u4E4B\u95F4\u5207\u6362",
|
|
44501
44700
|
"tips.imagePaste": "\u4F7F\u7528 {shortcut} \u4ECE\u526A\u8D34\u677F\u7C98\u8D34\u56FE\u7247",
|
|
44502
44701
|
"tips.customAgents": "\u4F7F\u7528 /agents \u4F18\u5316\u7279\u5B9A\u4EFB\u52A1\u3002\u4F8B\u5982\uFF1A\u8F6F\u4EF6\u67B6\u6784\u5E08\u3001\u4EE3\u7801\u7F16\u5199\u8005\u3001\u4EE3\u7801\u5BA1\u67E5\u8005",
|
|
44503
|
-
"tips.agentFlag": "\u4F7F\u7528 --agent <agent_name> \u76F4\u63A5\u542F\u52A8\u4E0E\u5B50
|
|
44702
|
+
"tips.agentFlag": "\u4F7F\u7528 --agent <agent_name> \u76F4\u63A5\u542F\u52A8\u4E0E\u5B50\u4EE3\u7406\u7684\u5BF9\u8BDD",
|
|
44504
44703
|
"tips.desktopApp": "\u5728\u672C\u5730\u6216\u901A\u8FC7 CoStrict Web \u8FDC\u7A0B\u8FD0\u884C CoStrict",
|
|
44505
44704
|
"tips.desktopShortcut": "\u4F7F\u7528 {command} \u5728 CoStrict Desktop \u4E2D\u7EE7\u7EED\u4F60\u7684\u4F1A\u8BDD",
|
|
44506
44705
|
"tips.webApp": "\u5728\u4E91\u7AEF\u8FD0\u884C\u4EFB\u52A1\uFF0C\u540C\u65F6\u7EE7\u7EED\u672C\u5730\u7F16\u7801 \xB7 costrict.ai",
|
|
@@ -44512,7 +44711,7 @@ var init_tips2 = __esm(() => {
|
|
|
44512
44711
|
{command}`,
|
|
44513
44712
|
"tips.effortHighNudgeA": "\u5728\u5904\u7406\u68D8\u624B\u95EE\u9898\uFF1F{cmd} \u80FD\u7ED9\u51FA\u66F4\u597D\u7684\u9996\u6B21\u56DE\u7B54",
|
|
44514
44713
|
"tips.effortHighNudgeB": "\u4F7F\u7528 {cmd} \u83B7\u5F97\u66F4\u597D\u7684\u4E00\u6B21\u6027\u7B54\u6848\u3002CoStrict \u4F1A\u5148\u4ED4\u7EC6\u601D\u8003\u3002",
|
|
44515
|
-
"tips.subagentFanoutNudgeA": "\u8BF4\u51FA {command}\uFF0CCoStrict \u4F1A\u6D3E\u51FA\u4E00\u652F\u56E2\u961F\u3002\u6BCF\u4E2A
|
|
44714
|
+
"tips.subagentFanoutNudgeA": "\u8BF4\u51FA {command}\uFF0CCoStrict \u4F1A\u6D3E\u51FA\u4E00\u652F\u56E2\u961F\u3002\u6BCF\u4E2A\u4EE3\u7406\u6DF1\u5165\u6316\u6398\uFF0C\u4E0D\u9057\u6F0F\u4EFB\u4F55\u7EC6\u8282\u3002",
|
|
44516
44715
|
"tips.subagentFanoutNudgeB": "\u5BF9\u4E8E\u5927\u578B\u4EFB\u52A1\uFF0C\u544A\u8BC9 CoStrict {command}\u3002\u5B83\u4EEC\u5E76\u884C\u5DE5\u4F5C\uFF0C\u4FDD\u6301\u4E3B\u7EBF\u7A0B\u6574\u6D01\u3002",
|
|
44517
44716
|
"tips.loopCommandNudgeA": "{command} \u6309\u5FAA\u73AF\u8BA1\u5212\u8FD0\u884C\u4EFB\u4F55\u63D0\u793A\u3002\u975E\u5E38\u9002\u5408\u76D1\u63A7\u90E8\u7F72\u3001\u7167\u770B PR \u6216\u8F6E\u8BE2\u72B6\u6001\u3002",
|
|
44518
44717
|
"tips.loopCommandNudgeB": "\u4F7F\u7528 {cmd} \u6309\u8BA1\u5212\u8FD0\u884C\u4EFB\u4F55\u63D0\u793A\u3002\u8BBE\u7F6E\u540E\u5373\u53EF\u5FD8\u8BB0\u3002",
|
|
@@ -63681,8 +63880,8 @@ var init_credentials = __esm(() => {
|
|
|
63681
63880
|
import { createRequire } from "module";
|
|
63682
63881
|
function getVersion() {
|
|
63683
63882
|
try {
|
|
63684
|
-
if (typeof MACRO !== "undefined" && "4.2.
|
|
63685
|
-
return "4.2.
|
|
63883
|
+
if (typeof MACRO !== "undefined" && "4.2.6-beta")
|
|
63884
|
+
return "4.2.6-beta";
|
|
63686
63885
|
} catch {}
|
|
63687
63886
|
try {
|
|
63688
63887
|
const require2 = createRequire(import.meta.url);
|
|
@@ -215669,7 +215868,7 @@ async function fetchCoStrictModels(baseUrl, accessToken) {
|
|
|
215669
215868
|
headers: {
|
|
215670
215869
|
Authorization: `Bearer ${accessToken}`,
|
|
215671
215870
|
Accept: "application/json",
|
|
215672
|
-
"User-Agent": `csc/${"4.2.
|
|
215871
|
+
"User-Agent": `csc/${"4.2.6-beta"}`
|
|
215673
215872
|
},
|
|
215674
215873
|
signal: controller.signal
|
|
215675
215874
|
});
|
|
@@ -219255,7 +219454,7 @@ var init_auth7 = __esm(() => {
|
|
|
219255
219454
|
|
|
219256
219455
|
// src/utils/userAgent.ts
|
|
219257
219456
|
function getClaudeCodeUserAgent() {
|
|
219258
|
-
return `costrict/${"4.2.
|
|
219457
|
+
return `costrict/${"4.2.6-beta"}`;
|
|
219259
219458
|
}
|
|
219260
219459
|
|
|
219261
219460
|
// src/utils/workloadContext.ts
|
|
@@ -219277,7 +219476,7 @@ function getUserAgent() {
|
|
|
219277
219476
|
const clientApp = process.env.CLAUDE_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}` : "";
|
|
219278
219477
|
const workload = getWorkload();
|
|
219279
219478
|
const workloadSuffix = workload ? `, workload/${workload}` : "";
|
|
219280
|
-
return `csc/${"4.2.
|
|
219479
|
+
return `csc/${"4.2.6-beta"}`;
|
|
219281
219480
|
}
|
|
219282
219481
|
function getMCPUserAgent() {
|
|
219283
219482
|
const parts = [];
|
|
@@ -219291,7 +219490,7 @@ function getMCPUserAgent() {
|
|
|
219291
219490
|
parts.push(`client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}`);
|
|
219292
219491
|
}
|
|
219293
219492
|
const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
|
|
219294
|
-
return `csc/${"4.2.
|
|
219493
|
+
return `csc/${"4.2.6-beta"}${suffix}`;
|
|
219295
219494
|
}
|
|
219296
219495
|
function getWebFetchUserAgent() {
|
|
219297
219496
|
return `Claude-User (${getClaudeCodeUserAgent()}; +https://support.anthropic.com/)`;
|
|
@@ -219411,7 +219610,7 @@ var init_user = __esm(() => {
|
|
|
219411
219610
|
deviceId,
|
|
219412
219611
|
sessionId: getSessionId(),
|
|
219413
219612
|
email: getEmail(),
|
|
219414
|
-
appVersion: "4.2.
|
|
219613
|
+
appVersion: "4.2.6-beta",
|
|
219415
219614
|
platform: getHostPlatformForAnalytics(),
|
|
219416
219615
|
organizationUuid,
|
|
219417
219616
|
accountUuid,
|
|
@@ -228911,7 +229110,7 @@ var init_metadata = __esm(() => {
|
|
|
228911
229110
|
COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
|
|
228912
229111
|
WHITESPACE_REGEX = /\s+/;
|
|
228913
229112
|
getVersionBase = memoize_default(() => {
|
|
228914
|
-
const match = "4.2.
|
|
229113
|
+
const match = "4.2.6-beta".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
|
|
228915
229114
|
return match ? match[0] : undefined;
|
|
228916
229115
|
});
|
|
228917
229116
|
buildEnvContext = memoize_default(async () => {
|
|
@@ -228951,9 +229150,9 @@ var init_metadata = __esm(() => {
|
|
|
228951
229150
|
isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
|
|
228952
229151
|
isClaudeCodeAction: isEnvTruthy(process.env.CLAUDE_CODE_ACTION),
|
|
228953
229152
|
isClaudeAiAuth: isClaudeAISubscriber(),
|
|
228954
|
-
version: "4.2.
|
|
229153
|
+
version: "4.2.6-beta",
|
|
228955
229154
|
versionBase: getVersionBase(),
|
|
228956
|
-
buildTime: "2026-06-
|
|
229155
|
+
buildTime: "2026-06-22T11:00:03.039Z",
|
|
228957
229156
|
deploymentEnvironment: env4.detectDeploymentEnvironment(),
|
|
228958
229157
|
...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
|
|
228959
229158
|
githubEventName: process.env.GITHUB_EVENT_NAME,
|
|
@@ -229624,7 +229823,7 @@ function initialize1PEventLogging() {
|
|
|
229624
229823
|
const platform3 = getPlatform();
|
|
229625
229824
|
const attributes = {
|
|
229626
229825
|
[import_semantic_conventions2.ATTR_SERVICE_NAME]: "claude-code",
|
|
229627
|
-
[import_semantic_conventions2.ATTR_SERVICE_VERSION]: "4.2.
|
|
229826
|
+
[import_semantic_conventions2.ATTR_SERVICE_VERSION]: "4.2.6-beta"
|
|
229628
229827
|
};
|
|
229629
229828
|
if (platform3 === "wsl") {
|
|
229630
229829
|
const wslVersion = getWslVersion();
|
|
@@ -229651,7 +229850,7 @@ function initialize1PEventLogging() {
|
|
|
229651
229850
|
})
|
|
229652
229851
|
]
|
|
229653
229852
|
});
|
|
229654
|
-
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.anthropic.claude_code.events", "4.2.
|
|
229853
|
+
firstPartyEventLogger = firstPartyEventLoggerProvider.getLogger("com.anthropic.claude_code.events", "4.2.6-beta");
|
|
229655
229854
|
}
|
|
229656
229855
|
async function reinitialize1PEventLoggingIfConfigChanged() {
|
|
229657
229856
|
if (!is1PEventLoggingEnabled() || !firstPartyEventLoggerProvider) {
|
|
@@ -231612,7 +231811,7 @@ function t(key, paramsOrFallback, explicitFallback, langOverride) {
|
|
|
231612
231811
|
}
|
|
231613
231812
|
return result;
|
|
231614
231813
|
} catch {
|
|
231615
|
-
return explicitFallback ?? paramsOrFallback
|
|
231814
|
+
return explicitFallback ?? (typeof paramsOrFallback === "string" ? paramsOrFallback : key);
|
|
231616
231815
|
}
|
|
231617
231816
|
}
|
|
231618
231817
|
function getToolDescription(tool, fallback) {
|
|
@@ -231627,6 +231826,7 @@ var init_locales2 = __esm(() => {
|
|
|
231627
231826
|
init_commands_help();
|
|
231628
231827
|
init_commands_descriptions();
|
|
231629
231828
|
init_commands_others();
|
|
231829
|
+
init_commands_pipe();
|
|
231630
231830
|
init_tools();
|
|
231631
231831
|
init_errors2();
|
|
231632
231832
|
init_prompts();
|
|
@@ -231644,6 +231844,7 @@ var init_locales2 = __esm(() => {
|
|
|
231644
231844
|
init_commands_help2();
|
|
231645
231845
|
init_commands_descriptions2();
|
|
231646
231846
|
init_commands_others2();
|
|
231847
|
+
init_commands_pipe2();
|
|
231647
231848
|
init_tools2();
|
|
231648
231849
|
init_errors3();
|
|
231649
231850
|
init_prompts2();
|
|
@@ -231663,6 +231864,7 @@ var init_locales2 = __esm(() => {
|
|
|
231663
231864
|
...commands_help_default,
|
|
231664
231865
|
...commands_descriptions_default,
|
|
231665
231866
|
...commands_others_default,
|
|
231867
|
+
...commands_pipe_default,
|
|
231666
231868
|
...tools_default,
|
|
231667
231869
|
...errors_default,
|
|
231668
231870
|
...prompts_default,
|
|
@@ -231682,6 +231884,7 @@ var init_locales2 = __esm(() => {
|
|
|
231682
231884
|
...commands_help_default2,
|
|
231683
231885
|
...commands_descriptions_default2,
|
|
231684
231886
|
...commands_others_default2,
|
|
231887
|
+
...commands_pipe_default2,
|
|
231685
231888
|
...tools_default2,
|
|
231686
231889
|
...errors_default2,
|
|
231687
231890
|
...prompts_default2,
|
|
@@ -231823,27 +232026,33 @@ function KeyboardShortcutHint({ shortcut, action, connector = "to", parens = fal
|
|
|
231823
232026
|
bold: true,
|
|
231824
232027
|
children: shortcut
|
|
231825
232028
|
}) : shortcut;
|
|
232029
|
+
const connectorText = connector.trim();
|
|
232030
|
+
const hint = connectorText ? /* @__PURE__ */ jsx_runtime23.jsxs(jsx_runtime23.Fragment, {
|
|
232031
|
+
children: [
|
|
232032
|
+
shortcutText,
|
|
232033
|
+
" ",
|
|
232034
|
+
connectorText,
|
|
232035
|
+
" ",
|
|
232036
|
+
action
|
|
232037
|
+
]
|
|
232038
|
+
}) : /* @__PURE__ */ jsx_runtime23.jsxs(jsx_runtime23.Fragment, {
|
|
232039
|
+
children: [
|
|
232040
|
+
shortcutText,
|
|
232041
|
+
" ",
|
|
232042
|
+
action
|
|
232043
|
+
]
|
|
232044
|
+
});
|
|
231826
232045
|
if (parens) {
|
|
231827
232046
|
return /* @__PURE__ */ jsx_runtime23.jsxs(Text, {
|
|
231828
232047
|
children: [
|
|
231829
232048
|
"(",
|
|
231830
|
-
|
|
231831
|
-
" ",
|
|
231832
|
-
connector,
|
|
231833
|
-
" ",
|
|
231834
|
-
action,
|
|
232049
|
+
hint,
|
|
231835
232050
|
")"
|
|
231836
232051
|
]
|
|
231837
232052
|
});
|
|
231838
232053
|
}
|
|
231839
|
-
return /* @__PURE__ */ jsx_runtime23.
|
|
231840
|
-
children:
|
|
231841
|
-
shortcutText,
|
|
231842
|
-
" ",
|
|
231843
|
-
connector,
|
|
231844
|
-
" ",
|
|
231845
|
-
action
|
|
231846
|
-
]
|
|
232054
|
+
return /* @__PURE__ */ jsx_runtime23.jsx(Text, {
|
|
232055
|
+
children: hint
|
|
231847
232056
|
});
|
|
231848
232057
|
}
|
|
231849
232058
|
var jsx_runtime23;
|
|
@@ -409935,7 +410144,7 @@ function getTelemetryAttributes() {
|
|
|
409935
410144
|
attributes["session.id"] = sessionId;
|
|
409936
410145
|
}
|
|
409937
410146
|
if (shouldIncludeAttribute("OTEL_METRICS_INCLUDE_VERSION")) {
|
|
409938
|
-
attributes["app.version"] = "4.2.
|
|
410147
|
+
attributes["app.version"] = "4.2.6-beta";
|
|
409939
410148
|
}
|
|
409940
410149
|
const oauthAccount = getOauthAccountInfo();
|
|
409941
410150
|
if (oauthAccount) {
|
|
@@ -415283,16 +415492,16 @@ function validateDangerousPatterns(context4) {
|
|
|
415283
415492
|
if (hasUnescapedChar(unquotedContent, "`")) {
|
|
415284
415493
|
return {
|
|
415285
415494
|
behavior: "ask",
|
|
415286
|
-
message: "
|
|
415495
|
+
message: t("security.commandContains", { message: t("security.backtickSubstitution") })
|
|
415287
415496
|
};
|
|
415288
415497
|
}
|
|
415289
|
-
for (const { pattern,
|
|
415498
|
+
for (const { pattern, key: key2 } of COMMAND_SUBSTITUTION_PATTERNS) {
|
|
415290
415499
|
if (pattern.test(unquotedContent)) {
|
|
415291
415500
|
logEvent("tengu_bash_security_check_triggered", {
|
|
415292
415501
|
checkId: BASH_SECURITY_CHECK_IDS.DANGEROUS_PATTERNS_COMMAND_SUBSTITUTION,
|
|
415293
415502
|
subId: 1
|
|
415294
415503
|
});
|
|
415295
|
-
return { behavior: "ask", message:
|
|
415504
|
+
return { behavior: "ask", message: t("security.commandContains", { message: t(key2) }) };
|
|
415296
415505
|
}
|
|
415297
415506
|
}
|
|
415298
415507
|
return { behavior: "passthrough", message: "No dangerous patterns" };
|
|
@@ -416235,29 +416444,30 @@ async function bashCommandIsSafeAsync_DEPRECATED(command4, onDivergence) {
|
|
|
416235
416444
|
var HEREDOC_IN_SUBSTITUTION, COMMAND_SUBSTITUTION_PATTERNS, ZSH_DANGEROUS_COMMANDS, BASH_SECURITY_CHECK_IDS, SHELL_OPERATORS, UNICODE_WS_RE, NETWORK_DEVICE_PATH_RE, CONTROL_CHAR_RE2;
|
|
416236
416445
|
var init_bashSecurity = __esm(() => {
|
|
416237
416446
|
init_analytics();
|
|
416447
|
+
init_locales2();
|
|
416238
416448
|
init_heredoc();
|
|
416239
416449
|
init_ParsedCommand();
|
|
416240
416450
|
init_shellQuote();
|
|
416241
416451
|
HEREDOC_IN_SUBSTITUTION = /\$\(.*<</;
|
|
416242
416452
|
COMMAND_SUBSTITUTION_PATTERNS = [
|
|
416243
|
-
{ pattern: /<\(/,
|
|
416244
|
-
{ pattern: />\(/,
|
|
416245
|
-
{ pattern: /=\(/,
|
|
416453
|
+
{ pattern: /<\(/, key: "security.processSubIn" },
|
|
416454
|
+
{ pattern: />\(/, key: "security.processSubOut" },
|
|
416455
|
+
{ pattern: /=\(/, key: "security.zshProcessSub" },
|
|
416246
416456
|
{
|
|
416247
416457
|
pattern: /(?:^|[\s;&|])=[a-zA-Z_]/,
|
|
416248
|
-
|
|
416249
|
-
},
|
|
416250
|
-
{ pattern: /\$\(/,
|
|
416251
|
-
{ pattern: /\$\{/,
|
|
416252
|
-
{ pattern: /\$\[/,
|
|
416253
|
-
{ pattern: /~\[/,
|
|
416254
|
-
{ pattern: /\(e:/,
|
|
416255
|
-
{ pattern: /\(\+/,
|
|
416458
|
+
key: "security.zshEqualsExpansion"
|
|
416459
|
+
},
|
|
416460
|
+
{ pattern: /\$\(/, key: "security.commandSubstitution" },
|
|
416461
|
+
{ pattern: /\$\{/, key: "security.paramExpansion" },
|
|
416462
|
+
{ pattern: /\$\[/, key: "security.legacyArithExpansion" },
|
|
416463
|
+
{ pattern: /~\[/, key: "security.zshParamExpansion" },
|
|
416464
|
+
{ pattern: /\(e:/, key: "security.zshGlobQualifier" },
|
|
416465
|
+
{ pattern: /\(\+/, key: "security.zshGlobExec" },
|
|
416256
416466
|
{
|
|
416257
416467
|
pattern: /\}\s*always\s*\{/,
|
|
416258
|
-
|
|
416468
|
+
key: "security.zshAlwaysBlock"
|
|
416259
416469
|
},
|
|
416260
|
-
{ pattern: /<#/,
|
|
416470
|
+
{ pattern: /<#/, key: "security.powershellComment" }
|
|
416261
416471
|
];
|
|
416262
416472
|
ZSH_DANGEROUS_COMMANDS = new Set([
|
|
416263
416473
|
"zmodload",
|
|
@@ -443471,7 +443681,7 @@ function initLangfuse() {
|
|
|
443471
443681
|
flushInterval: parseInt(process.env.LANGFUSE_FLUSH_INTERVAL ?? "10", 10),
|
|
443472
443682
|
mask: maskFn,
|
|
443473
443683
|
environment: process.env.LANGFUSE_TRACING_ENVIRONMENT ?? "development",
|
|
443474
|
-
release: "4.2.
|
|
443684
|
+
release: "4.2.6-beta",
|
|
443475
443685
|
exportMode: process.env.LANGFUSE_EXPORT_MODE ?? "batched",
|
|
443476
443686
|
timeout: parseInt(process.env.LANGFUSE_TIMEOUT ?? "5", 10)
|
|
443477
443687
|
});
|
|
@@ -475364,7 +475574,7 @@ function initSentry() {
|
|
|
475364
475574
|
}
|
|
475365
475575
|
init3({
|
|
475366
475576
|
dsn,
|
|
475367
|
-
release: typeof MACRO !== "undefined" ? "4.2.
|
|
475577
|
+
release: typeof MACRO !== "undefined" ? "4.2.6-beta" : undefined,
|
|
475368
475578
|
environment: typeof BUILD_ENV !== "undefined" ? BUILD_ENV : "production",
|
|
475369
475579
|
maxBreadcrumbs: 20,
|
|
475370
475580
|
sampleRate: 1,
|
|
@@ -503251,7 +503461,7 @@ async function initializeBetaTracing(resource) {
|
|
|
503251
503461
|
});
|
|
503252
503462
|
logs.setGlobalLoggerProvider(loggerProvider);
|
|
503253
503463
|
setLoggerProvider(loggerProvider);
|
|
503254
|
-
const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "4.2.
|
|
503464
|
+
const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "4.2.6-beta");
|
|
503255
503465
|
setEventLogger(eventLogger);
|
|
503256
503466
|
process.on("beforeExit", async () => {
|
|
503257
503467
|
await loggerProvider?.forceFlush();
|
|
@@ -503291,7 +503501,7 @@ async function initializeTelemetry() {
|
|
|
503291
503501
|
const platform5 = getPlatform();
|
|
503292
503502
|
const baseAttributes = {
|
|
503293
503503
|
[import_semantic_conventions29.ATTR_SERVICE_NAME]: "claude-code",
|
|
503294
|
-
[import_semantic_conventions29.ATTR_SERVICE_VERSION]: "4.2.
|
|
503504
|
+
[import_semantic_conventions29.ATTR_SERVICE_VERSION]: "4.2.6-beta"
|
|
503295
503505
|
};
|
|
503296
503506
|
if (platform5 === "wsl") {
|
|
503297
503507
|
const wslVersion = getWslVersion();
|
|
@@ -503336,7 +503546,7 @@ async function initializeTelemetry() {
|
|
|
503336
503546
|
} catch {}
|
|
503337
503547
|
};
|
|
503338
503548
|
registerCleanup(shutdownTelemetry2);
|
|
503339
|
-
return meterProvider2.getMeter("com.anthropic.claude_code", "4.2.
|
|
503549
|
+
return meterProvider2.getMeter("com.anthropic.claude_code", "4.2.6-beta");
|
|
503340
503550
|
}
|
|
503341
503551
|
const meterProvider = new import_sdk_metrics2.MeterProvider({
|
|
503342
503552
|
resource,
|
|
@@ -503356,7 +503566,7 @@ async function initializeTelemetry() {
|
|
|
503356
503566
|
});
|
|
503357
503567
|
logs.setGlobalLoggerProvider(loggerProvider);
|
|
503358
503568
|
setLoggerProvider(loggerProvider);
|
|
503359
|
-
const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "4.2.
|
|
503569
|
+
const eventLogger = logs.getLogger("com.anthropic.claude_code.events", "4.2.6-beta");
|
|
503360
503570
|
setEventLogger(eventLogger);
|
|
503361
503571
|
logForDebugging("[3P telemetry] Event logger set successfully");
|
|
503362
503572
|
process.on("beforeExit", async () => {
|
|
@@ -503418,7 +503628,7 @@ Current timeout: ${timeoutMs}ms
|
|
|
503418
503628
|
}
|
|
503419
503629
|
};
|
|
503420
503630
|
registerCleanup(shutdownTelemetry);
|
|
503421
|
-
return meterProvider.getMeter("com.anthropic.claude_code", "4.2.
|
|
503631
|
+
return meterProvider.getMeter("com.anthropic.claude_code", "4.2.6-beta");
|
|
503422
503632
|
}
|
|
503423
503633
|
async function flushTelemetry() {
|
|
503424
503634
|
const meterProvider = getMeterProvider();
|
|
@@ -504477,7 +504687,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
504477
504687
|
logError3(new AutoUpdaterError("Another process is currently installing an update"));
|
|
504478
504688
|
logEvent("tengu_auto_updater_lock_contention", {
|
|
504479
504689
|
pid: process.pid,
|
|
504480
|
-
currentVersion: "4.2.
|
|
504690
|
+
currentVersion: "4.2.6-beta"
|
|
504481
504691
|
});
|
|
504482
504692
|
return { status: "in_progress" };
|
|
504483
504693
|
}
|
|
@@ -504486,7 +504696,7 @@ async function installGlobalPackage(specificVersion) {
|
|
|
504486
504696
|
if (!env4.isRunningWithBun() && env4.isNpmFromWindowsPath()) {
|
|
504487
504697
|
logError3(new Error("Windows NPM detected in WSL environment"));
|
|
504488
504698
|
logEvent("tengu_auto_updater_windows_npm_in_wsl", {
|
|
504489
|
-
currentVersion: "4.2.
|
|
504699
|
+
currentVersion: "4.2.6-beta"
|
|
504490
504700
|
});
|
|
504491
504701
|
return {
|
|
504492
504702
|
status: "install_failed",
|
|
@@ -505032,7 +505242,7 @@ function detectLinuxGlobPatternWarnings() {
|
|
|
505032
505242
|
}
|
|
505033
505243
|
async function getDoctorDiagnostic() {
|
|
505034
505244
|
const installationType = await getCurrentInstallationType();
|
|
505035
|
-
const version7 = typeof MACRO !== "undefined" ? "4.2.
|
|
505245
|
+
const version7 = typeof MACRO !== "undefined" ? "4.2.6-beta" : "unknown";
|
|
505036
505246
|
const installationPath = await getInstallationPath();
|
|
505037
505247
|
const invokedBinary = getInvokedBinary();
|
|
505038
505248
|
const multipleInstallations = await detectMultipleInstallations();
|
|
@@ -508078,6 +508288,9 @@ var init_defaultBindings = __esm(() => {
|
|
|
508078
508288
|
escape: "confirm:no",
|
|
508079
508289
|
y: "confirm:yes",
|
|
508080
508290
|
n: "confirm:no",
|
|
508291
|
+
N: "confirm:no",
|
|
508292
|
+
\u{662f}: "confirm:yes",
|
|
508293
|
+
\u{5426}: "confirm:no",
|
|
508081
508294
|
up: "confirm:previous",
|
|
508082
508295
|
down: "confirm:next",
|
|
508083
508296
|
tab: "confirm:nextField",
|
|
@@ -508102,9 +508315,7 @@ var init_defaultBindings = __esm(() => {
|
|
|
508102
508315
|
tab: "tabs:next",
|
|
508103
508316
|
"shift+tab": "tabs:previous",
|
|
508104
508317
|
right: "tabs:next",
|
|
508105
|
-
left: "tabs:previous"
|
|
508106
|
-
up: "tabs:previous",
|
|
508107
|
-
down: "tabs:next"
|
|
508318
|
+
left: "tabs:previous"
|
|
508108
508319
|
}
|
|
508109
508320
|
},
|
|
508110
508321
|
{
|
|
@@ -512722,7 +512933,7 @@ function getProjectMcpConfigsFromCwd() {
|
|
|
512722
512933
|
scope: "project"
|
|
512723
512934
|
});
|
|
512724
512935
|
if (!config10) {
|
|
512725
|
-
const nonMissingErrors = errors10.filter((e7) =>
|
|
512936
|
+
const nonMissingErrors = errors10.filter((e7) => e7.mcpErrorMetadata?.errorType !== "file_not_found");
|
|
512726
512937
|
if (nonMissingErrors.length > 0) {
|
|
512727
512938
|
logForDebugging(`MCP config errors for ${mcpJsonPath}: ${jsonStringify(nonMissingErrors.map((e7) => e7.message))}`, { level: "error" });
|
|
512728
512939
|
return { servers: {}, errors: nonMissingErrors };
|
|
@@ -512761,7 +512972,7 @@ function getMcpConfigsByScope(scope) {
|
|
|
512761
512972
|
scope: "project"
|
|
512762
512973
|
});
|
|
512763
512974
|
if (!config10) {
|
|
512764
|
-
const nonMissingErrors = errors10.filter((e7) =>
|
|
512975
|
+
const nonMissingErrors = errors10.filter((e7) => e7.mcpErrorMetadata?.errorType !== "file_not_found");
|
|
512765
512976
|
if (nonMissingErrors.length > 0) {
|
|
512766
512977
|
logForDebugging(`MCP config errors for ${mcpJsonPath}: ${jsonStringify(nonMissingErrors.map((e7) => e7.message))}`, { level: "error" });
|
|
512767
512978
|
allErrors.push(...nonMissingErrors);
|
|
@@ -512818,7 +513029,7 @@ function getMcpConfigsByScope(scope) {
|
|
|
512818
513029
|
scope: "enterprise"
|
|
512819
513030
|
});
|
|
512820
513031
|
if (!config10) {
|
|
512821
|
-
const nonMissingErrors = errors10.filter((e7) =>
|
|
513032
|
+
const nonMissingErrors = errors10.filter((e7) => e7.mcpErrorMetadata?.errorType !== "file_not_found");
|
|
512822
513033
|
if (nonMissingErrors.length > 0) {
|
|
512823
513034
|
logForDebugging(`Enterprise MCP config errors for ${enterpriseMcpPath}: ${jsonStringify(nonMissingErrors.map((e7) => e7.message))}`, { level: "error" });
|
|
512824
513035
|
return { servers: {}, errors: nonMissingErrors };
|
|
@@ -512966,7 +513177,8 @@ function parseMcpConfig(params) {
|
|
|
512966
513177
|
message: t("mcp.config.schemaInvalid"),
|
|
512967
513178
|
mcpErrorMetadata: {
|
|
512968
513179
|
scope,
|
|
512969
|
-
severity: "fatal"
|
|
513180
|
+
severity: "fatal",
|
|
513181
|
+
errorType: "parse_error"
|
|
512970
513182
|
}
|
|
512971
513183
|
}))
|
|
512972
513184
|
};
|
|
@@ -513032,7 +513244,8 @@ function parseMcpConfigFromFilePath(params) {
|
|
|
513032
513244
|
suggestion: t("mcp.config.suggestionCheckPath"),
|
|
513033
513245
|
mcpErrorMetadata: {
|
|
513034
513246
|
scope,
|
|
513035
|
-
severity: "fatal"
|
|
513247
|
+
severity: "fatal",
|
|
513248
|
+
errorType: "file_not_found"
|
|
513036
513249
|
}
|
|
513037
513250
|
}
|
|
513038
513251
|
]
|
|
@@ -513049,7 +513262,8 @@ function parseMcpConfigFromFilePath(params) {
|
|
|
513049
513262
|
suggestion: t("mcp.config.suggestionCheckPermissions"),
|
|
513050
513263
|
mcpErrorMetadata: {
|
|
513051
513264
|
scope,
|
|
513052
|
-
severity: "fatal"
|
|
513265
|
+
severity: "fatal",
|
|
513266
|
+
errorType: "read_error"
|
|
513053
513267
|
}
|
|
513054
513268
|
}
|
|
513055
513269
|
]
|
|
@@ -513068,7 +513282,8 @@ function parseMcpConfigFromFilePath(params) {
|
|
|
513068
513282
|
suggestion: t("mcp.config.suggestionFixJson"),
|
|
513069
513283
|
mcpErrorMetadata: {
|
|
513070
513284
|
scope,
|
|
513071
|
-
severity: "fatal"
|
|
513285
|
+
severity: "fatal",
|
|
513286
|
+
errorType: "parse_error"
|
|
513072
513287
|
}
|
|
513073
513288
|
}
|
|
513074
513289
|
]
|
|
@@ -543188,7 +543403,7 @@ async function setupSdkMcpClients(sdkMcpConfigs, sendMcpMessage) {
|
|
|
543188
543403
|
const client10 = new Client3({
|
|
543189
543404
|
name: "claude-code",
|
|
543190
543405
|
title: "CoStrict",
|
|
543191
|
-
version: "4.2.
|
|
543406
|
+
version: "4.2.6-beta",
|
|
543192
543407
|
description: "CoStrict agentic coding tool",
|
|
543193
543408
|
websiteUrl: PRODUCT_URL
|
|
543194
543409
|
}, {
|
|
@@ -543559,7 +543774,7 @@ var init_client17 = __esm(() => {
|
|
|
543559
543774
|
const client10 = new Client3({
|
|
543560
543775
|
name: "claude-code",
|
|
543561
543776
|
title: "CoStrict",
|
|
543562
|
-
version: "4.2.
|
|
543777
|
+
version: "4.2.6-beta",
|
|
543563
543778
|
description: "CoStrict agentic coding tool",
|
|
543564
543779
|
websiteUrl: PRODUCT_URL
|
|
543565
543780
|
}, {
|
|
@@ -544937,7 +545152,7 @@ function getInstallationEnv() {
|
|
|
544937
545152
|
return;
|
|
544938
545153
|
}
|
|
544939
545154
|
function getClaudeCodeVersion() {
|
|
544940
|
-
return "4.2.
|
|
545155
|
+
return "4.2.6-beta";
|
|
544941
545156
|
}
|
|
544942
545157
|
async function getInstalledVSCodeExtensionVersion(command4) {
|
|
544943
545158
|
const { stdout } = await execFileNoThrow2(command4, ["--list-extensions", "--show-versions"], {
|
|
@@ -546301,8 +546516,8 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
546301
546516
|
const maxVersion = await getMaxVersion();
|
|
546302
546517
|
if (maxVersion && gt(version8, maxVersion)) {
|
|
546303
546518
|
logForDebugging(`Native installer: maxVersion ${maxVersion} is set, capping update from ${version8} to ${maxVersion}`);
|
|
546304
|
-
if (gte2("4.2.
|
|
546305
|
-
logForDebugging(`Native installer: current version ${"4.2.
|
|
546519
|
+
if (gte2("4.2.6-beta", maxVersion)) {
|
|
546520
|
+
logForDebugging(`Native installer: current version ${"4.2.6-beta"} is already at or above maxVersion ${maxVersion}, skipping update`);
|
|
546306
546521
|
logEvent("tengu_native_update_skipped_max_version", {
|
|
546307
546522
|
latency_ms: Date.now() - startTime2,
|
|
546308
546523
|
max_version: maxVersion,
|
|
@@ -546313,7 +546528,7 @@ async function updateLatest(channelOrVersion, forceReinstall = false) {
|
|
|
546313
546528
|
version8 = maxVersion;
|
|
546314
546529
|
}
|
|
546315
546530
|
}
|
|
546316
|
-
if (!forceReinstall && version8 === "4.2.
|
|
546531
|
+
if (!forceReinstall && version8 === "4.2.6-beta" && await versionIsAvailable(version8) && await isPossibleClaudeBinary(executablePath)) {
|
|
546317
546532
|
logForDebugging(`Found ${version8} at ${executablePath}, skipping install`);
|
|
546318
546533
|
logEvent("tengu_native_update_complete", {
|
|
546319
546534
|
latency_ms: Date.now() - startTime2,
|
|
@@ -571545,17 +571760,11 @@ function SystemAPIErrorMessage({
|
|
|
571545
571760
|
/* @__PURE__ */ jsx_runtime111.jsxs(ThemedText, {
|
|
571546
571761
|
dimColor: true,
|
|
571547
571762
|
children: [
|
|
571548
|
-
t("components.retrying.in"
|
|
571549
|
-
|
|
571550
|
-
|
|
571551
|
-
|
|
571552
|
-
|
|
571553
|
-
t("components.attempt"),
|
|
571554
|
-
" ",
|
|
571555
|
-
_retryAttempt,
|
|
571556
|
-
"/",
|
|
571557
|
-
_maxRetries,
|
|
571558
|
-
")",
|
|
571763
|
+
t("components.retrying.in.detail", {
|
|
571764
|
+
seconds: String(retryInSecondsLive),
|
|
571765
|
+
attempt: String(_retryAttempt),
|
|
571766
|
+
max: String(_maxRetries)
|
|
571767
|
+
}),
|
|
571559
571768
|
process.env.API_TIMEOUT_MS ? ` \xB7 API_TIMEOUT_MS=${process.env.API_TIMEOUT_MS}ms, try increasing it` : ""
|
|
571560
571769
|
]
|
|
571561
571770
|
})
|
|
@@ -594219,8 +594428,9 @@ async function exec5(command4, abortSignal, shellType, options) {
|
|
|
594219
594428
|
} catch {}
|
|
594220
594429
|
}
|
|
594221
594430
|
if (childProcess3.stdout && onStdout) {
|
|
594431
|
+
const stdoutDecoder = new TextDecoder("utf-8", { fatal: false });
|
|
594222
594432
|
childProcess3.stdout.on("data", (chunk) => {
|
|
594223
|
-
onStdout(typeof chunk === "string" ? chunk :
|
|
594433
|
+
onStdout(typeof chunk === "string" ? chunk : stdoutDecoder.decode(chunk, { stream: true }));
|
|
594224
594434
|
});
|
|
594225
594435
|
}
|
|
594226
594436
|
const nativeCwdFilePath = getPlatform() === "windows" ? posixPathToWindowsPath(cwdFilePath) : cwdFilePath;
|
|
@@ -599210,7 +599420,7 @@ function checkSubExpressions(parsed) {
|
|
|
599210
599420
|
if (deriveSecurityFlags(parsed).hasSubExpressions) {
|
|
599211
599421
|
return {
|
|
599212
599422
|
behavior: "ask",
|
|
599213
|
-
message: "
|
|
599423
|
+
message: t("security.commandContains", { message: t("security.powershellSubexpressions") })
|
|
599214
599424
|
};
|
|
599215
599425
|
}
|
|
599216
599426
|
return { behavior: "passthrough" };
|
|
@@ -599219,7 +599429,7 @@ function checkExpandableStrings(parsed) {
|
|
|
599219
599429
|
if (deriveSecurityFlags(parsed).hasExpandableStrings) {
|
|
599220
599430
|
return {
|
|
599221
599431
|
behavior: "ask",
|
|
599222
|
-
message: "
|
|
599432
|
+
message: t("security.commandContains", { message: t("security.powershellExpandableStrings") })
|
|
599223
599433
|
};
|
|
599224
599434
|
}
|
|
599225
599435
|
return { behavior: "passthrough" };
|
|
@@ -599398,6 +599608,7 @@ function powershellCommandIsSafe(_command, parsed) {
|
|
|
599398
599608
|
}
|
|
599399
599609
|
var POWERSHELL_EXECUTABLES, PS_ALT_PARAM_PREFIXES, DOWNLOADER_NAMES, SAFE_SCRIPT_BLOCK_CMDLETS, SCHEDULED_TASK_CMDLETS, ENV_WRITE_CMDLETS, RUNTIME_STATE_CMDLETS, WMI_SPAWN_CMDLETS;
|
|
599400
599610
|
var init_powershellSecurity = __esm(() => {
|
|
599611
|
+
init_locales2();
|
|
599401
599612
|
init_dangerousCmdlets();
|
|
599402
599613
|
init_parser12();
|
|
599403
599614
|
init_clmTypes();
|
|
@@ -653484,6 +653695,72 @@ var init_sessionDataUploader = __esm(() => {
|
|
|
653484
653695
|
init_state();
|
|
653485
653696
|
});
|
|
653486
653697
|
|
|
653698
|
+
// src/services/compact/reactiveCompact.ts
|
|
653699
|
+
var exports_reactiveCompact = {};
|
|
653700
|
+
__export(exports_reactiveCompact, {
|
|
653701
|
+
tryReactiveCompact: () => tryReactiveCompact,
|
|
653702
|
+
reactiveCompactOnPromptTooLong: () => reactiveCompactOnPromptTooLong,
|
|
653703
|
+
isWithheldPromptTooLong: () => isWithheldPromptTooLong,
|
|
653704
|
+
isWithheldMediaSizeError: () => isWithheldMediaSizeError,
|
|
653705
|
+
isReactiveOnlyMode: () => isReactiveOnlyMode,
|
|
653706
|
+
isReactiveCompactEnabled: () => isReactiveCompactEnabled
|
|
653707
|
+
});
|
|
653708
|
+
var isReactiveOnlyMode = () => false, reactiveCompactOnPromptTooLong = async (messages, cacheSafeParams, options) => {
|
|
653709
|
+
const params = cacheSafeParams;
|
|
653710
|
+
try {
|
|
653711
|
+
const result = await compactConversation(messages, params.toolUseContext, params, true, options.customInstructions, true, {
|
|
653712
|
+
isRecompactionInChain: false,
|
|
653713
|
+
turnsSincePreviousCompact: 0,
|
|
653714
|
+
autoCompactThreshold: 0,
|
|
653715
|
+
querySource: "compact"
|
|
653716
|
+
});
|
|
653717
|
+
return { ok: true, result };
|
|
653718
|
+
} catch (error98) {
|
|
653719
|
+
logError3(error98);
|
|
653720
|
+
return { ok: false, reason: String(error98) };
|
|
653721
|
+
}
|
|
653722
|
+
}, isReactiveCompactEnabled = () => {
|
|
653723
|
+
if (isEnvTruthy(process.env.DISABLE_COMPACT))
|
|
653724
|
+
return false;
|
|
653725
|
+
return true;
|
|
653726
|
+
}, isWithheldPromptTooLong = (message2) => {
|
|
653727
|
+
if (message2.type !== "assistant" || !message2.isApiErrorMessage)
|
|
653728
|
+
return false;
|
|
653729
|
+
return isPromptTooLongMessage(message2);
|
|
653730
|
+
}, isWithheldMediaSizeError = (message2) => {
|
|
653731
|
+
if (message2.type !== "assistant" || !message2.isApiErrorMessage)
|
|
653732
|
+
return false;
|
|
653733
|
+
return isMediaSizeErrorMessage(message2);
|
|
653734
|
+
}, tryReactiveCompact = async ({
|
|
653735
|
+
hasAttempted,
|
|
653736
|
+
aborted: aborted4,
|
|
653737
|
+
messages,
|
|
653738
|
+
cacheSafeParams
|
|
653739
|
+
}) => {
|
|
653740
|
+
if (hasAttempted || aborted4)
|
|
653741
|
+
return null;
|
|
653742
|
+
const params = cacheSafeParams;
|
|
653743
|
+
try {
|
|
653744
|
+
const result = await compactConversation(messages, params.toolUseContext, params, true, undefined, true, {
|
|
653745
|
+
isRecompactionInChain: false,
|
|
653746
|
+
turnsSincePreviousCompact: 0,
|
|
653747
|
+
autoCompactThreshold: 0
|
|
653748
|
+
});
|
|
653749
|
+
return result;
|
|
653750
|
+
} catch (error98) {
|
|
653751
|
+
logForDebugging(`reactiveCompact: emergency compaction failed \u2014 ${String(error98)}`, { level: "warn" });
|
|
653752
|
+
logError3(error98);
|
|
653753
|
+
return null;
|
|
653754
|
+
}
|
|
653755
|
+
};
|
|
653756
|
+
var init_reactiveCompact = __esm(() => {
|
|
653757
|
+
init_envUtils();
|
|
653758
|
+
init_errors17();
|
|
653759
|
+
init_compact();
|
|
653760
|
+
init_log3();
|
|
653761
|
+
init_debug();
|
|
653762
|
+
});
|
|
653763
|
+
|
|
653487
653764
|
// src/services/skillSearch/intentNormalize.ts
|
|
653488
653765
|
function setCachedQueryIntent(key6, value) {
|
|
653489
653766
|
if (cache10.has(key6))
|
|
@@ -655436,7 +655713,7 @@ async function* queryLoop(params, consumedCommandUuids) {
|
|
|
655436
655713
|
__callDispose(__stack, _err, _hasErr);
|
|
655437
655714
|
}
|
|
655438
655715
|
}
|
|
655439
|
-
var reactiveCompact
|
|
655716
|
+
var reactiveCompact, skillPrefetch, searchExtraToolsPrefetch, _jobClassifier, snipModule, taskSummaryModule, MAX_OUTPUT_TOKENS_RECOVERY_LIMIT = 3, MISSING_TOOL_USE_RECOVERY_MESSAGE = "Your previous response ended with stop_reason=tool_use but did not include a tool_use block. Continue by issuing the missing tool call now. If the user asked to update task state, call TaskUpdate with the appropriate taskId and status; do not just describe the action.", COSTRICT_TASK_TOOL_USE_RECOVERY_MESSAGE = "Your previous response ended with stop_reason=tool_use but did not include a tool_use block. Continue by issuing the missing tool call now. For task checklist updates in CoStrict, call update_todo_list with the complete markdown checklist using [ ], [-], and [x] markers; do not just describe the action.", MISSING_TOOL_USE_FAILURE_MESSAGE = "Model response error: the model indicated it wanted to call a tool, but no tool call was provided after retry. The requested action did not run.", TASK_TOOL_USE_FAILURE_MESSAGE = "Task tool call failed: the model ended with stop_reason=tool_use but did not provide the required task tool call. The requested task action did not run.", COSTRICT_TASK_TOOL_USE_FAILURE_MESSAGE = "Task checklist update failed: the model ended with stop_reason=tool_use but did not call update_todo_list. The requested task action did not run.", TASK_TOOL_NAMES;
|
|
655440
655717
|
var init_query5 = __esm(() => {
|
|
655441
655718
|
init_withRetry();
|
|
655442
655719
|
init_autoCompact();
|
|
@@ -655478,6 +655755,7 @@ var init_query5 = __esm(() => {
|
|
|
655478
655755
|
init_langfuse();
|
|
655479
655756
|
init_providers();
|
|
655480
655757
|
init_sessionDataUploader();
|
|
655758
|
+
reactiveCompact = (init_reactiveCompact(), __toCommonJS(exports_reactiveCompact));
|
|
655481
655759
|
skillPrefetch = (init_prefetch(), __toCommonJS(exports_prefetch));
|
|
655482
655760
|
searchExtraToolsPrefetch = (init_prefetch2(), __toCommonJS(exports_prefetch2));
|
|
655483
655761
|
_jobClassifier = (init_classifier(), __toCommonJS(exports_classifier));
|
|
@@ -657760,7 +658038,11 @@ async function shouldAutoCompact(messages, model, querySource, snipTokensFreed =
|
|
|
657760
658038
|
if (!isAutoCompactEnabled()) {
|
|
657761
658039
|
return false;
|
|
657762
658040
|
}
|
|
657763
|
-
if (
|
|
658041
|
+
if (true) {
|
|
658042
|
+
if (getFeatureValue_CACHED_MAY_BE_STALE("tengu_cobalt_raccoon", false)) {
|
|
658043
|
+
return false;
|
|
658044
|
+
}
|
|
658045
|
+
}
|
|
657764
658046
|
if (false) {}
|
|
657765
658047
|
const tokenCount = tokenCountWithEstimation(messages) - snipTokensFreed;
|
|
657766
658048
|
const threshold = getAutoCompactThreshold(model);
|
|
@@ -658419,7 +658701,11 @@ async function analyzeContextUsage(messages, model, getToolPermissionContext, to
|
|
|
658419
658701
|
const actualUsage = cats.reduce((sum, cat2) => sum + (cat2.isDeferred ? 0 : cat2.tokens), 0);
|
|
658420
658702
|
let reservedTokens = 0;
|
|
658421
658703
|
let skipReservedBuffer = false;
|
|
658422
|
-
if (
|
|
658704
|
+
if (true) {
|
|
658705
|
+
if (getFeatureValue_CACHED_MAY_BE_STALE("tengu_cobalt_raccoon", false)) {
|
|
658706
|
+
skipReservedBuffer = true;
|
|
658707
|
+
}
|
|
658708
|
+
}
|
|
658423
658709
|
if (false) {}
|
|
658424
658710
|
if (skipReservedBuffer) {} else if (isAutoCompact && autoCompactThreshold !== undefined) {
|
|
658425
658711
|
reservedTokens = contextWindow - autoCompactThreshold;
|
|
@@ -671954,6 +672240,12 @@ function getPromptTooLongTokenGap(msg) {
|
|
|
671954
672240
|
const gap = actualTokens - limitTokens;
|
|
671955
672241
|
return gap > 0 ? gap : undefined;
|
|
671956
672242
|
}
|
|
672243
|
+
function isMediaSizeError(raw) {
|
|
672244
|
+
return raw.includes("image exceeds") && raw.includes("maximum") || raw.includes("image dimensions exceed") && raw.includes("many-image") || /maximum of \d+ PDF pages/.test(raw);
|
|
672245
|
+
}
|
|
672246
|
+
function isMediaSizeErrorMessage(msg) {
|
|
672247
|
+
return msg.isApiErrorMessage === true && msg.errorDetails !== undefined && isMediaSizeError(msg.errorDetails);
|
|
672248
|
+
}
|
|
671957
672249
|
function getPdfTooLargeErrorMessage() {
|
|
671958
672250
|
const limits = `max ${API_PDF_MAX_PAGES} pages, ${formatFileSize(PDF_TARGET_RAW_SIZE)}`;
|
|
671959
672251
|
return getIsNonInteractiveSession() ? `PDF too large (${limits}). Try reading the file a different way (e.g., extract text with pdftotext).` : `PDF too large (${limits}). Double press esc to go back and try again, or use pdftotext to convert to text first.`;
|
|
@@ -680540,7 +680832,7 @@ function Feedback({
|
|
|
680540
680832
|
platform: env4.platform,
|
|
680541
680833
|
gitRepo: envInfo.isGit,
|
|
680542
680834
|
terminal: env4.terminal,
|
|
680543
|
-
version: "4.2.
|
|
680835
|
+
version: "4.2.6-beta",
|
|
680544
680836
|
transcript: normalizeMessagesForAPI(messages),
|
|
680545
680837
|
errors: sanitizedErrors,
|
|
680546
680838
|
lastApiRequest: getLastAPIRequest(),
|
|
@@ -680723,7 +681015,7 @@ function Feedback({
|
|
|
680723
681015
|
", ",
|
|
680724
681016
|
env4.terminal,
|
|
680725
681017
|
", v",
|
|
680726
|
-
"4.2.
|
|
681018
|
+
"4.2.6-beta"
|
|
680727
681019
|
]
|
|
680728
681020
|
})
|
|
680729
681021
|
]
|
|
@@ -680820,7 +681112,7 @@ ${sanitizedDescription}
|
|
|
680820
681112
|
` + `**Environment Info**
|
|
680821
681113
|
` + `- Platform: ${env4.platform}
|
|
680822
681114
|
` + `- Terminal: ${env4.terminal}
|
|
680823
|
-
` + `- Version: ${"4.2.
|
|
681115
|
+
` + `- Version: ${"4.2.6-beta"}
|
|
680824
681116
|
` + `- Feedback ID: ${feedbackId}
|
|
680825
681117
|
` + `
|
|
680826
681118
|
**Errors**
|
|
@@ -682938,7 +683230,7 @@ async function getCacheSharingParams(context40, forkContextMessages) {
|
|
|
682938
683230
|
forkContextMessages
|
|
682939
683231
|
};
|
|
682940
683232
|
}
|
|
682941
|
-
var reactiveCompact2
|
|
683233
|
+
var reactiveCompact2, call13 = async (args, context40) => {
|
|
682942
683234
|
const { abortController } = context40;
|
|
682943
683235
|
let { messages } = context40;
|
|
682944
683236
|
messages = getMessagesAfterCompactBoundary(messages);
|
|
@@ -683011,6 +683303,7 @@ var init_compact2 = __esm(() => {
|
|
|
683011
683303
|
init_messages7();
|
|
683012
683304
|
init_contextWindowUpgradeCheck();
|
|
683013
683305
|
init_systemPrompt();
|
|
683306
|
+
reactiveCompact2 = (init_reactiveCompact(), __toCommonJS(exports_reactiveCompact));
|
|
683014
683307
|
});
|
|
683015
683308
|
|
|
683016
683309
|
// src/commands/compact/index.ts
|
|
@@ -683039,7 +683332,7 @@ function buildPrimarySection() {
|
|
|
683039
683332
|
children: t("settings.status.renameHint")
|
|
683040
683333
|
});
|
|
683041
683334
|
return [
|
|
683042
|
-
{ label: t("settings.status.version"), value: "4.2.
|
|
683335
|
+
{ label: t("settings.status.version"), value: "4.2.6-beta" },
|
|
683043
683336
|
{ label: t("settings.status.sessionName"), value: nameValue },
|
|
683044
683337
|
{ label: t("settings.status.sessionId"), value: sessionId },
|
|
683045
683338
|
{ label: t("settings.status.cwd"), value: getCwd() },
|
|
@@ -685509,7 +685802,9 @@ function Config({
|
|
|
685509
685802
|
"select:previous": () => {
|
|
685510
685803
|
if (selectedIndex === 0) {
|
|
685511
685804
|
setShowThinkingWarning(false);
|
|
685512
|
-
|
|
685805
|
+
setIsSearchMode(true);
|
|
685806
|
+
setSearchQuery("");
|
|
685807
|
+
setScrollOffset(0);
|
|
685513
685808
|
} else {
|
|
685514
685809
|
moveSelection(-1);
|
|
685515
685810
|
}
|
|
@@ -685859,7 +686154,7 @@ function Config({
|
|
|
685859
686154
|
}
|
|
685860
686155
|
})
|
|
685861
686156
|
}) : showSubmenu === "ChannelDowngrade" ? /* @__PURE__ */ jsx_runtime191.jsx(ChannelDowngradeDialog, {
|
|
685862
|
-
currentVersion: "4.2.
|
|
686157
|
+
currentVersion: "4.2.6-beta",
|
|
685863
686158
|
onChoice: (choice) => {
|
|
685864
686159
|
setShowSubmenu(null);
|
|
685865
686160
|
setTabsHidden(false);
|
|
@@ -685871,7 +686166,7 @@ function Config({
|
|
|
685871
686166
|
autoUpdatesChannel: "stable"
|
|
685872
686167
|
};
|
|
685873
686168
|
if (choice === "stay") {
|
|
685874
|
-
newSettings.minimumVersion = "4.2.
|
|
686169
|
+
newSettings.minimumVersion = "4.2.6-beta";
|
|
685875
686170
|
}
|
|
685876
686171
|
updateSettingsForSource("userSettings", newSettings);
|
|
685877
686172
|
setSettingsData((prev) => ({
|
|
@@ -688906,22 +689201,27 @@ function McpConfigErrorSection({
|
|
|
688906
689201
|
parsingErrors,
|
|
688907
689202
|
warnings
|
|
688908
689203
|
}) {
|
|
688909
|
-
const
|
|
689204
|
+
const fileNotFoundErrors = parsingErrors.filter((e7) => e7.mcpErrorMetadata?.errorType === "file_not_found");
|
|
689205
|
+
const realParseErrors = parsingErrors.filter((e7) => e7.mcpErrorMetadata?.errorType !== "file_not_found");
|
|
689206
|
+
const hasFileNotFoundOnly = fileNotFoundErrors.length > 0 && realParseErrors.length === 0;
|
|
689207
|
+
const hasRealErrors = realParseErrors.length > 0;
|
|
688910
689208
|
const hasWarnings = warnings.length > 0;
|
|
688911
|
-
if (!
|
|
689209
|
+
if (!hasRealErrors && !hasFileNotFoundOnly && !hasWarnings) {
|
|
688912
689210
|
return null;
|
|
688913
689211
|
}
|
|
689212
|
+
const labelKey = hasRealErrors ? "mcp.failedToParse" : hasFileNotFoundOnly ? "mcp.notConfigured" : "mcp.containsWarnings";
|
|
689213
|
+
const labelColor = hasRealErrors ? "error" : hasFileNotFoundOnly ? "warning" : "warning";
|
|
688914
689214
|
return /* @__PURE__ */ jsx_runtime206.jsxs(ThemedBox_default, {
|
|
688915
689215
|
flexDirection: "column",
|
|
688916
689216
|
marginTop: 1,
|
|
688917
689217
|
children: [
|
|
688918
689218
|
/* @__PURE__ */ jsx_runtime206.jsxs(ThemedBox_default, {
|
|
688919
689219
|
children: [
|
|
688920
|
-
|
|
688921
|
-
color:
|
|
689220
|
+
/* @__PURE__ */ jsx_runtime206.jsxs(ThemedText, {
|
|
689221
|
+
color: labelColor,
|
|
688922
689222
|
children: [
|
|
688923
689223
|
"[",
|
|
688924
|
-
|
|
689224
|
+
t(labelKey),
|
|
688925
689225
|
"]",
|
|
688926
689226
|
" "
|
|
688927
689227
|
]
|
|
@@ -688950,7 +689250,7 @@ function McpConfigErrorSection({
|
|
|
688950
689250
|
marginLeft: 1,
|
|
688951
689251
|
flexDirection: "column",
|
|
688952
689252
|
children: [
|
|
688953
|
-
|
|
689253
|
+
realParseErrors.map((error98, i10) => {
|
|
688954
689254
|
const serverName = error98.mcpErrorMetadata?.serverName;
|
|
688955
689255
|
return /* @__PURE__ */ jsx_runtime206.jsx(ThemedBox_default, {
|
|
688956
689256
|
children: /* @__PURE__ */ jsx_runtime206.jsxs(ThemedText, {
|
|
@@ -688976,6 +689276,22 @@ function McpConfigErrorSection({
|
|
|
688976
689276
|
})
|
|
688977
689277
|
}, `error-${i10}`);
|
|
688978
689278
|
}),
|
|
689279
|
+
fileNotFoundErrors.map((error98, i10) => {
|
|
689280
|
+
return /* @__PURE__ */ jsx_runtime206.jsx(ThemedBox_default, {
|
|
689281
|
+
children: /* @__PURE__ */ jsx_runtime206.jsxs(ThemedText, {
|
|
689282
|
+
children: [
|
|
689283
|
+
/* @__PURE__ */ jsx_runtime206.jsx(ThemedText, {
|
|
689284
|
+
dimColor: true,
|
|
689285
|
+
children: "\u2514 "
|
|
689286
|
+
}),
|
|
689287
|
+
/* @__PURE__ */ jsx_runtime206.jsx(ThemedText, {
|
|
689288
|
+
dimColor: true,
|
|
689289
|
+
children: error98.message
|
|
689290
|
+
})
|
|
689291
|
+
]
|
|
689292
|
+
})
|
|
689293
|
+
}, `fnf-${i10}`);
|
|
689294
|
+
}),
|
|
688979
689295
|
warnings.map((warning2, i10) => {
|
|
688980
689296
|
const serverName = warning2.mcpErrorMetadata?.serverName;
|
|
688981
689297
|
return /* @__PURE__ */ jsx_runtime206.jsx(ThemedBox_default, {
|
|
@@ -691319,7 +691635,7 @@ function HelpV2({ onClose, commands: commands11 }) {
|
|
|
691319
691635
|
color: "professionalBlue",
|
|
691320
691636
|
children: [
|
|
691321
691637
|
/* @__PURE__ */ jsx_runtime218.jsx(Tabs, {
|
|
691322
|
-
title: process.env.USER_TYPE === "sf" ? "/help" : `CoStrict v${"4.2.
|
|
691638
|
+
title: process.env.USER_TYPE === "sf" ? "/help" : `CoStrict v${"4.2.6-beta"}`,
|
|
691323
691639
|
color: "professionalBlue",
|
|
691324
691640
|
defaultTab: "general",
|
|
691325
691641
|
children: tabs
|
|
@@ -772408,6 +772724,10 @@ function MCPRemoteServerMenu({
|
|
|
772408
772724
|
setClaudeAIClearAuthUrl(null);
|
|
772409
772725
|
setClaudeAIClearAuthBrowserOpened(false);
|
|
772410
772726
|
}, [server2.name, server2.config, server2.scope, setAppState, onComplete]);
|
|
772727
|
+
useKeybinding("confirm:no", onCancel, {
|
|
772728
|
+
context: "Confirmation",
|
|
772729
|
+
isActive: !isAuthenticating && !isClaudeAIAuthenticating && !isClaudeAIClearingAuth && !isReconnecting
|
|
772730
|
+
});
|
|
772411
772731
|
useKeybinding("confirm:no", () => {
|
|
772412
772732
|
authAbortControllerRef.current?.abort();
|
|
772413
772733
|
authAbortControllerRef.current = null;
|
|
@@ -772501,14 +772821,7 @@ function MCPRemoteServerMenu({
|
|
|
772501
772821
|
const action2 = wasEnabled ? "disable" : "enable";
|
|
772502
772822
|
onComplete?.(`Failed to ${action2} MCP server '${server2.name}': ${errorMessage(err3)}`);
|
|
772503
772823
|
}
|
|
772504
|
-
}, [
|
|
772505
|
-
server2.client.type,
|
|
772506
|
-
server2.config.type,
|
|
772507
|
-
server2.name,
|
|
772508
|
-
toggleMcpServer,
|
|
772509
|
-
onCancel,
|
|
772510
|
-
onComplete
|
|
772511
|
-
]);
|
|
772824
|
+
}, [server2.client.type, server2.config.type, server2.name, toggleMcpServer, onCancel, onComplete]);
|
|
772512
772825
|
const handleAuthenticate = import_react144.default.useCallback(async () => {
|
|
772513
772826
|
if (server2.config.type === "claudeai-proxy")
|
|
772514
772827
|
return;
|
|
@@ -772552,14 +772865,7 @@ function MCPRemoteServerMenu({
|
|
|
772552
772865
|
setManualCallbackSubmit(null);
|
|
772553
772866
|
setCallbackUrlInput("");
|
|
772554
772867
|
}
|
|
772555
|
-
}, [
|
|
772556
|
-
server2.isAuthenticated,
|
|
772557
|
-
server2.config,
|
|
772558
|
-
server2.name,
|
|
772559
|
-
onComplete,
|
|
772560
|
-
reconnectMcpServer,
|
|
772561
|
-
isEffectivelyAuthenticated
|
|
772562
|
-
]);
|
|
772868
|
+
}, [server2.isAuthenticated, server2.config, server2.name, onComplete, reconnectMcpServer, isEffectivelyAuthenticated]);
|
|
772563
772869
|
const handleClearAuth = async () => {
|
|
772564
772870
|
if (server2.config.type === "claudeai-proxy")
|
|
772565
772871
|
return;
|
|
@@ -772618,12 +772924,9 @@ function MCPRemoteServerMenu({
|
|
|
772618
772924
|
children: [
|
|
772619
772925
|
/* @__PURE__ */ jsx_runtime228.jsxs(ThemedBox_default, {
|
|
772620
772926
|
children: [
|
|
772621
|
-
/* @__PURE__ */ jsx_runtime228.
|
|
772927
|
+
/* @__PURE__ */ jsx_runtime228.jsx(ThemedText, {
|
|
772622
772928
|
dimColor: true,
|
|
772623
|
-
children:
|
|
772624
|
-
"If your browser doesn't open automatically, copy this URL manually",
|
|
772625
|
-
" "
|
|
772626
|
-
]
|
|
772929
|
+
children: "If your browser doesn't open automatically, copy this URL manually "
|
|
772627
772930
|
}),
|
|
772628
772931
|
urlCopied ? /* @__PURE__ */ jsx_runtime228.jsx(ThemedText, {
|
|
772629
772932
|
color: "success",
|
|
@@ -772718,12 +773021,9 @@ function MCPRemoteServerMenu({
|
|
|
772718
773021
|
children: [
|
|
772719
773022
|
/* @__PURE__ */ jsx_runtime228.jsxs(ThemedBox_default, {
|
|
772720
773023
|
children: [
|
|
772721
|
-
/* @__PURE__ */ jsx_runtime228.
|
|
773024
|
+
/* @__PURE__ */ jsx_runtime228.jsx(ThemedText, {
|
|
772722
773025
|
dimColor: true,
|
|
772723
|
-
children:
|
|
772724
|
-
"If your browser doesn't open automatically, copy this URL manually",
|
|
772725
|
-
" "
|
|
772726
|
-
]
|
|
773026
|
+
children: "If your browser doesn't open automatically, copy this URL manually "
|
|
772727
773027
|
}),
|
|
772728
773028
|
urlCopied ? /* @__PURE__ */ jsx_runtime228.jsx(ThemedText, {
|
|
772729
773029
|
color: "success",
|
|
@@ -772799,12 +773099,9 @@ function MCPRemoteServerMenu({
|
|
|
772799
773099
|
children: [
|
|
772800
773100
|
/* @__PURE__ */ jsx_runtime228.jsxs(ThemedBox_default, {
|
|
772801
773101
|
children: [
|
|
772802
|
-
/* @__PURE__ */ jsx_runtime228.
|
|
773102
|
+
/* @__PURE__ */ jsx_runtime228.jsx(ThemedText, {
|
|
772803
773103
|
dimColor: true,
|
|
772804
|
-
children:
|
|
772805
|
-
"If your browser didn't open automatically, copy this URL manually",
|
|
772806
|
-
" "
|
|
772807
|
-
]
|
|
773104
|
+
children: "If your browser didn't open automatically, copy this URL manually "
|
|
772808
773105
|
}),
|
|
772809
773106
|
urlCopied ? /* @__PURE__ */ jsx_runtime228.jsx(ThemedText, {
|
|
772810
773107
|
color: "success",
|
|
@@ -773287,6 +773584,10 @@ function MCPStdioServerMenu({
|
|
|
773287
773584
|
const reconnectMcpServer = useMcpReconnect();
|
|
773288
773585
|
const toggleMcpServer = useMcpToggleEnabled();
|
|
773289
773586
|
const [isReconnecting, setIsReconnecting] = import_react145.useState(false);
|
|
773587
|
+
useKeybinding("confirm:no", onCancel, {
|
|
773588
|
+
context: "Confirmation",
|
|
773589
|
+
isActive: !isReconnecting
|
|
773590
|
+
});
|
|
773290
773591
|
const handleToggleEnabled = import_react145.default.useCallback(async () => {
|
|
773291
773592
|
const wasEnabled = server2.client.type !== "disabled";
|
|
773292
773593
|
try {
|
|
@@ -773538,14 +773839,13 @@ function MCPStdioServerMenu({
|
|
|
773538
773839
|
}),
|
|
773539
773840
|
/* @__PURE__ */ jsx_runtime229.jsx(KeyboardShortcutHint, {
|
|
773540
773841
|
shortcut: "Enter",
|
|
773541
|
-
action: t("components.shortcuts.
|
|
773842
|
+
action: t("components.shortcuts.confirm", "confirm"),
|
|
773542
773843
|
connector: t("components.shortcuts.connector", "to")
|
|
773543
773844
|
}),
|
|
773544
|
-
/* @__PURE__ */ jsx_runtime229.jsx(
|
|
773545
|
-
|
|
773546
|
-
|
|
773547
|
-
|
|
773548
|
-
description: "back"
|
|
773845
|
+
/* @__PURE__ */ jsx_runtime229.jsx(KeyboardShortcutHint, {
|
|
773846
|
+
shortcut: "Esc",
|
|
773847
|
+
action: t("components.shortcuts.cancel", "cancel"),
|
|
773848
|
+
connector: t("components.shortcuts.connector", "to")
|
|
773549
773849
|
})
|
|
773550
773850
|
]
|
|
773551
773851
|
})
|
|
@@ -773559,6 +773859,7 @@ var init_MCPStdioServerMenu = __esm(() => {
|
|
|
773559
773859
|
init_locales2();
|
|
773560
773860
|
init_figures();
|
|
773561
773861
|
init_useExitOnCtrlCDWithKeybindings();
|
|
773862
|
+
init_useKeybinding2();
|
|
773562
773863
|
init_src();
|
|
773563
773864
|
init_config6();
|
|
773564
773865
|
init_MCPConnectionManager();
|
|
@@ -773566,7 +773867,6 @@ var init_MCPStdioServerMenu = __esm(() => {
|
|
|
773566
773867
|
init_AppState();
|
|
773567
773868
|
init_errors();
|
|
773568
773869
|
init_stringUtils();
|
|
773569
|
-
init_ConfigurableShortcutHint2();
|
|
773570
773870
|
init_CustomSelect();
|
|
773571
773871
|
init_src();
|
|
773572
773872
|
init_Spinner3();
|
|
@@ -775285,7 +775585,7 @@ function BrowseMarketplace({
|
|
|
775285
775585
|
setSelectedForInstall(new Set);
|
|
775286
775586
|
clearAllCaches();
|
|
775287
775587
|
if (failureCount === 0) {
|
|
775288
|
-
const message2 = `${t("plugins.installed.count", { count: successCount
|
|
775588
|
+
const message2 = `${t(successCount === 1 ? "plugins.installed.count.single" : "plugins.installed.count.plural", { count: successCount })}. ` + t("plugins.run.reload.plugins.to.activate");
|
|
775289
775589
|
setResult(message2);
|
|
775290
775590
|
} else if (successCount === 0) {
|
|
775291
775591
|
setError(t("plugins.failed.to.install", { details: formatFailureDetails(newFailedPlugins, true) }));
|
|
@@ -777825,9 +778125,9 @@ function ManageMarketplaces({
|
|
|
777825
778125
|
isActive: !isProcessing && internalView === "details"
|
|
777826
778126
|
});
|
|
777827
778127
|
use_input_default((input4) => {
|
|
777828
|
-
if (input4 === "y" || input4 === "Y") {
|
|
778128
|
+
if (input4 === "y" || input4 === "Y" || input4 === "\u662F") {
|
|
777829
778129
|
confirmRemove();
|
|
777830
|
-
} else if (input4 === "n" || input4 === "N") {
|
|
778130
|
+
} else if (input4 === "n" || input4 === "N" || input4 === "\u5426") {
|
|
777831
778131
|
setInternalView("list");
|
|
777832
778132
|
setSelectedMarketplace(null);
|
|
777833
778133
|
}
|
|
@@ -780041,9 +780341,9 @@ function ManagePlugins({
|
|
|
780041
780341
|
setProcessError(e7 instanceof Error ? e7.message : String(e7));
|
|
780042
780342
|
}
|
|
780043
780343
|
};
|
|
780044
|
-
if (input4 === "y" || input4 === "Y") {
|
|
780344
|
+
if (input4 === "y" || input4 === "Y" || input4 === "\u662F") {
|
|
780045
780345
|
doUninstall(true);
|
|
780046
|
-
} else if (input4 === "n" || input4 === "N") {
|
|
780346
|
+
} else if (input4 === "n" || input4 === "N" || input4 === "\u5426") {
|
|
780047
780347
|
doUninstall(false);
|
|
780048
780348
|
} else if (key6.escape) {
|
|
780049
780349
|
setViewState("plugin-details");
|
|
@@ -783103,7 +783403,7 @@ function getAllReleaseNotes(changelogContent = getStoredChangelogFromMemory()) {
|
|
|
783103
783403
|
return [];
|
|
783104
783404
|
}
|
|
783105
783405
|
}
|
|
783106
|
-
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "4.2.
|
|
783406
|
+
async function checkForReleaseNotes(lastSeenVersion, currentVersion = "4.2.6-beta") {
|
|
783107
783407
|
if (process.env.USER_TYPE === "sf") {
|
|
783108
783408
|
const changelog = "";
|
|
783109
783409
|
if (changelog) {
|
|
@@ -783130,7 +783430,7 @@ async function checkForReleaseNotes(lastSeenVersion, currentVersion = "4.2.5-bet
|
|
|
783130
783430
|
releaseNotes
|
|
783131
783431
|
};
|
|
783132
783432
|
}
|
|
783133
|
-
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "4.2.
|
|
783433
|
+
function checkForReleaseNotesSync(lastSeenVersion, currentVersion = "4.2.6-beta") {
|
|
783134
783434
|
if (process.env.USER_TYPE === "sf") {
|
|
783135
783435
|
const changelog = "";
|
|
783136
783436
|
if (changelog) {
|
|
@@ -785643,7 +785943,7 @@ function isNotLoggedIn() {
|
|
|
785643
785943
|
return true;
|
|
785644
785944
|
}
|
|
785645
785945
|
function getLogoDisplayData() {
|
|
785646
|
-
const version8 = process.env.DEMO_VERSION ?? "4.2.
|
|
785946
|
+
const version8 = process.env.DEMO_VERSION ?? "4.2.6-beta";
|
|
785647
785947
|
const serverUrl = getDirectConnectServerUrl();
|
|
785648
785948
|
const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
|
|
785649
785949
|
const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
|
|
@@ -786166,7 +786466,7 @@ var cachedSystemTheme2;
|
|
|
786166
786466
|
// src/components/matrix-tactical/MatrixWelcome.tsx
|
|
786167
786467
|
import { basename as basename47 } from "path";
|
|
786168
786468
|
function MatrixWelcome({
|
|
786169
|
-
version: version8 = "4.2.
|
|
786469
|
+
version: version8 = "4.2.6-beta",
|
|
786170
786470
|
projectName,
|
|
786171
786471
|
cwd: cwd2,
|
|
786172
786472
|
modelDisplayName,
|
|
@@ -786801,13 +787101,13 @@ function LogoV2() {
|
|
|
786801
787101
|
const { hasReleaseNotes } = checkForReleaseNotesSync(config12.lastReleaseNotesSeen);
|
|
786802
787102
|
import_react167.useEffect(() => {
|
|
786803
787103
|
const currentConfig = getGlobalConfig();
|
|
786804
|
-
if (currentConfig.lastReleaseNotesSeen === "4.2.
|
|
787104
|
+
if (currentConfig.lastReleaseNotesSeen === "4.2.6-beta") {
|
|
786805
787105
|
return;
|
|
786806
787106
|
}
|
|
786807
787107
|
saveGlobalConfig((current2) => {
|
|
786808
|
-
if (current2.lastReleaseNotesSeen === "4.2.
|
|
787108
|
+
if (current2.lastReleaseNotesSeen === "4.2.6-beta")
|
|
786809
787109
|
return current2;
|
|
786810
|
-
return { ...current2, lastReleaseNotesSeen: "4.2.
|
|
787110
|
+
return { ...current2, lastReleaseNotesSeen: "4.2.6-beta" };
|
|
786811
787111
|
});
|
|
786812
787112
|
if (showOnboarding) {
|
|
786813
787113
|
incrementProjectOnboardingSeenCount();
|
|
@@ -797789,7 +798089,7 @@ function AsyncAgentDetailDialog({ agent, onDone, onKillAgent, onBack }) {
|
|
|
797789
798089
|
}
|
|
797790
798090
|
};
|
|
797791
798091
|
const planContent = extractTag(agent.prompt, "plan");
|
|
797792
|
-
const displayPrompt = agent.prompt
|
|
798092
|
+
const displayPrompt = truncateToWidth(agent.prompt, 300);
|
|
797793
798093
|
const tokenCount = agent.result?.totalTokens ?? agent.progress?.tokenCount;
|
|
797794
798094
|
const toolUseCount = agent.result?.totalToolUseCount ?? agent.progress?.toolUseCount;
|
|
797795
798095
|
const title = /* @__PURE__ */ jsx_runtime282.jsxs(ThemedText, {
|
|
@@ -797934,6 +798234,7 @@ var init_AsyncAgentDetailDialog = __esm(() => {
|
|
|
797934
798234
|
init_Tool();
|
|
797935
798235
|
init_tools5();
|
|
797936
798236
|
init_format2();
|
|
798237
|
+
init_truncate();
|
|
797937
798238
|
init_messages7();
|
|
797938
798239
|
init_src();
|
|
797939
798240
|
init_UserPlanMessage();
|
|
@@ -800681,8 +800982,8 @@ function meta4(s) {
|
|
|
800681
800982
|
function formatSessionsPicker(sessions) {
|
|
800682
800983
|
const rows = sessions.slice(0, PICKER_PAGE_CAP).map((s, i10) => {
|
|
800683
800984
|
const idx = String(i10 + 1).padStart(2);
|
|
800684
|
-
const title = truncateToWidth(s.title, 50)
|
|
800685
|
-
const status2 = s.status
|
|
800985
|
+
const title = padEndWidth(truncateToWidth(s.title, 50), 50);
|
|
800986
|
+
const status2 = padEndWidth(s.status, 14);
|
|
800686
800987
|
const created = s.created_at.slice(0, 10);
|
|
800687
800988
|
return ` ${idx}. ${title} ${status2} ${created} id=${s.id}`;
|
|
800688
800989
|
});
|
|
@@ -800695,7 +800996,10 @@ function formatSessionsPicker(sessions) {
|
|
|
800695
800996
|
].join(`
|
|
800696
800997
|
`);
|
|
800697
800998
|
}
|
|
800698
|
-
var
|
|
800999
|
+
var padEndWidth = (text2, width) => {
|
|
801000
|
+
const w2 = stringWidth(text2);
|
|
801001
|
+
return w2 >= width ? text2 : text2 + " ".repeat(width - w2);
|
|
801002
|
+
}, SESSION_ID_MIN_LENGTH = 8, PICKER_PAGE_CAP = 20, callTeleport = async (onDone, context41, args) => {
|
|
800699
801003
|
const rawArgs = args.trim();
|
|
800700
801004
|
const isPrintMode = rawArgs === "--print" || rawArgs.startsWith("--print ");
|
|
800701
801005
|
const sessionId = isPrintMode ? rawArgs.replace(/^--print\s*/u, "").trim() : rawArgs;
|
|
@@ -800735,18 +801039,25 @@ var SESSION_ID_MIN_LENGTH = 8, PICKER_PAGE_CAP = 20, callTeleport = async (onDon
|
|
|
800735
801039
|
logEvent("tengu_teleport_error_bad_token", {
|
|
800736
801040
|
error: meta4(msg.slice(0, 200))
|
|
800737
801041
|
});
|
|
800738
|
-
onDone(t("commands.teleport.authError", { error: msg }), {
|
|
801042
|
+
onDone(t("commands.teleport.authError", { error: msg }), {
|
|
801043
|
+
display: "system"
|
|
801044
|
+
});
|
|
800739
801045
|
return null;
|
|
800740
801046
|
}
|
|
800741
801047
|
logEvent("tengu_teleport_events_fetch_fail", {
|
|
800742
801048
|
error: meta4(msg.slice(0, 200))
|
|
800743
801049
|
});
|
|
800744
|
-
onDone(t("commands.teleport.fetchFailed", { error: msg }), {
|
|
801050
|
+
onDone(t("commands.teleport.fetchFailed", { error: msg }), {
|
|
801051
|
+
display: "system"
|
|
801052
|
+
});
|
|
800745
801053
|
return null;
|
|
800746
801054
|
}
|
|
800747
801055
|
if (sessions.length === 0) {
|
|
800748
801056
|
logEvent("tengu_teleport_null", {});
|
|
800749
|
-
onDone(t("commands.teleport.noSessions", {
|
|
801057
|
+
onDone(t("commands.teleport.noSessions", {
|
|
801058
|
+
domain: PRODUCT_DOMAIN,
|
|
801059
|
+
url: PRODUCT_CODE_URL
|
|
801060
|
+
}), { display: "system" });
|
|
800750
801061
|
return null;
|
|
800751
801062
|
}
|
|
800752
801063
|
if (sessions.length >= PICKER_PAGE_CAP) {
|
|
@@ -800766,7 +801077,9 @@ var SESSION_ID_MIN_LENGTH = 8, PICKER_PAGE_CAP = 20, callTeleport = async (onDon
|
|
|
800766
801077
|
logEvent("tengu_teleport_error_bad_status", {
|
|
800767
801078
|
error: meta4(`invalid_session_id: ${sessionId.slice(0, 40)}`)
|
|
800768
801079
|
});
|
|
800769
|
-
onDone(t("commands.teleport.invalidId", { id: sessionId }), {
|
|
801080
|
+
onDone(t("commands.teleport.invalidId", { id: sessionId }), {
|
|
801081
|
+
display: "system"
|
|
801082
|
+
});
|
|
800770
801083
|
return null;
|
|
800771
801084
|
}
|
|
800772
801085
|
logEvent("tengu_teleport_source_decision", { source: meta4("explicit_id") });
|
|
@@ -800782,7 +801095,9 @@ var SESSION_ID_MIN_LENGTH = 8, PICKER_PAGE_CAP = 20, callTeleport = async (onDon
|
|
|
800782
801095
|
logEvent("tengu_teleport_errors_detected", {
|
|
800783
801096
|
error: meta4(msg.slice(0, 200))
|
|
800784
801097
|
});
|
|
800785
|
-
onDone(t("commands.teleport.cannotTeleport", { error: msg }), {
|
|
801098
|
+
onDone(t("commands.teleport.cannotTeleport", { error: msg }), {
|
|
801099
|
+
display: "system"
|
|
801100
|
+
});
|
|
800786
801101
|
return null;
|
|
800787
801102
|
}
|
|
800788
801103
|
recordStep("resume");
|
|
@@ -800803,7 +801118,9 @@ var SESSION_ID_MIN_LENGTH = 8, PICKER_PAGE_CAP = 20, callTeleport = async (onDon
|
|
|
800803
801118
|
});
|
|
800804
801119
|
return null;
|
|
800805
801120
|
}
|
|
800806
|
-
onDone(t("commands.teleport.resumeNoCallback", { id: sessionId }), {
|
|
801121
|
+
onDone(t("commands.teleport.resumeNoCallback", { id: sessionId }), {
|
|
801122
|
+
display: "system"
|
|
801123
|
+
});
|
|
800807
801124
|
return null;
|
|
800808
801125
|
}
|
|
800809
801126
|
recordStep("fetch");
|
|
@@ -800812,7 +801129,9 @@ var SESSION_ID_MIN_LENGTH = 8, PICKER_PAGE_CAP = 20, callTeleport = async (onDon
|
|
|
800812
801129
|
logEvent("tengu_teleport_errors_detected", {
|
|
800813
801130
|
error: meta4("log_not_found_after_resume")
|
|
800814
801131
|
});
|
|
800815
|
-
onDone(t("commands.teleport.localLogNotFound", { id: sessionId }), {
|
|
801132
|
+
onDone(t("commands.teleport.localLogNotFound", { id: sessionId }), {
|
|
801133
|
+
display: "system"
|
|
801134
|
+
});
|
|
800816
801135
|
return null;
|
|
800817
801136
|
}
|
|
800818
801137
|
logEvent("tengu_teleport_errors_resolved", {});
|
|
@@ -800848,6 +801167,7 @@ var init_launchTeleport = __esm(() => {
|
|
|
800848
801167
|
init_analytics();
|
|
800849
801168
|
init_sessionStorage();
|
|
800850
801169
|
init_truncate();
|
|
801170
|
+
init_src();
|
|
800851
801171
|
init_teleport();
|
|
800852
801172
|
init_api2();
|
|
800853
801173
|
init_branding();
|
|
@@ -808714,7 +809034,7 @@ async function captureMemoryDiagnostics(trigger, dumpNumber = 0) {
|
|
|
808714
809034
|
smapsRollup,
|
|
808715
809035
|
platform: process.platform,
|
|
808716
809036
|
nodeVersion: process.version,
|
|
808717
|
-
ccVersion: "4.2.
|
|
809037
|
+
ccVersion: "4.2.6-beta"
|
|
808718
809038
|
};
|
|
808719
809039
|
}
|
|
808720
809040
|
async function performHeapDump(trigger = "manual", dumpNumber = 0) {
|
|
@@ -808830,7 +809150,7 @@ var init_mock_limits = __esm(() => {
|
|
|
808830
809150
|
var call54 = async () => {
|
|
808831
809151
|
return {
|
|
808832
809152
|
type: "text",
|
|
808833
|
-
value: `${"4.2.
|
|
809153
|
+
value: `${"4.2.6-beta"} (built ${"2026-06-22T11:00:03.039Z"})`
|
|
808834
809154
|
};
|
|
808835
809155
|
}, version8, version_default;
|
|
808836
809156
|
var init_version2 = __esm(() => {
|
|
@@ -815247,8 +815567,8 @@ var init_tag2 = __esm(() => {
|
|
|
815247
815567
|
import { createRequire as createRequire5 } from "module";
|
|
815248
815568
|
function getVersion2() {
|
|
815249
815569
|
try {
|
|
815250
|
-
if (typeof MACRO !== "undefined" && "4.2.
|
|
815251
|
-
return "4.2.
|
|
815570
|
+
if (typeof MACRO !== "undefined" && "4.2.6-beta")
|
|
815571
|
+
return "4.2.6-beta";
|
|
815252
815572
|
} catch {}
|
|
815253
815573
|
try {
|
|
815254
815574
|
const require4 = createRequire5(import.meta.url);
|
|
@@ -819108,10 +819428,7 @@ function Stats2({ onClose }) {
|
|
|
819108
819428
|
})
|
|
819109
819429
|
});
|
|
819110
819430
|
}
|
|
819111
|
-
function StatsContent({
|
|
819112
|
-
allTimePromise,
|
|
819113
|
-
onClose
|
|
819114
|
-
}) {
|
|
819431
|
+
function StatsContent({ allTimePromise, onClose }) {
|
|
819115
819432
|
const allTimeResult = import_react219.use(allTimePromise);
|
|
819116
819433
|
const [dateRange, setDateRange] = import_react219.useState("all");
|
|
819117
819434
|
const [statsCache, setStatsCache] = import_react219.useState({});
|
|
@@ -819524,8 +819841,7 @@ function OverviewTab({
|
|
|
819524
819841
|
wrap: "truncate",
|
|
819525
819842
|
children: [
|
|
819526
819843
|
shotStatsData.buckets[0].label,
|
|
819527
|
-
":",
|
|
819528
|
-
" ",
|
|
819844
|
+
": ",
|
|
819529
819845
|
/* @__PURE__ */ jsx_runtime365.jsx(ThemedText, {
|
|
819530
819846
|
color: "claude",
|
|
819531
819847
|
children: shotStatsData.buckets[0].count
|
|
@@ -819548,8 +819864,7 @@ function OverviewTab({
|
|
|
819548
819864
|
wrap: "truncate",
|
|
819549
819865
|
children: [
|
|
819550
819866
|
shotStatsData.buckets[1].label,
|
|
819551
|
-
":",
|
|
819552
|
-
" ",
|
|
819867
|
+
": ",
|
|
819553
819868
|
/* @__PURE__ */ jsx_runtime365.jsx(ThemedText, {
|
|
819554
819869
|
color: "claude",
|
|
819555
819870
|
children: shotStatsData.buckets[1].count
|
|
@@ -819578,8 +819893,7 @@ function OverviewTab({
|
|
|
819578
819893
|
wrap: "truncate",
|
|
819579
819894
|
children: [
|
|
819580
819895
|
shotStatsData.buckets[2].label,
|
|
819581
|
-
":",
|
|
819582
|
-
" ",
|
|
819896
|
+
": ",
|
|
819583
819897
|
/* @__PURE__ */ jsx_runtime365.jsx(ThemedText, {
|
|
819584
819898
|
color: "claude",
|
|
819585
819899
|
children: shotStatsData.buckets[2].count
|
|
@@ -819602,8 +819916,7 @@ function OverviewTab({
|
|
|
819602
819916
|
wrap: "truncate",
|
|
819603
819917
|
children: [
|
|
819604
819918
|
shotStatsData.buckets[3].label,
|
|
819605
|
-
":",
|
|
819606
|
-
" ",
|
|
819919
|
+
": ",
|
|
819607
819920
|
/* @__PURE__ */ jsx_runtime365.jsx(ThemedText, {
|
|
819608
819921
|
color: "claude",
|
|
819609
819922
|
children: shotStatsData.buckets[3].count
|
|
@@ -819799,11 +820112,7 @@ function ModelsTab({
|
|
|
819799
820112
|
]
|
|
819800
820113
|
});
|
|
819801
820114
|
}
|
|
819802
|
-
function ModelEntry({
|
|
819803
|
-
model,
|
|
819804
|
-
usage: usage2,
|
|
819805
|
-
totalTokens
|
|
819806
|
-
}) {
|
|
820115
|
+
function ModelEntry({ model, usage: usage2, totalTokens }) {
|
|
819807
820116
|
const modelTokens = usage2.inputTokens + usage2.outputTokens;
|
|
819808
820117
|
const percentage = (modelTokens / totalTokens * 100).toFixed(1);
|
|
819809
820118
|
return /* @__PURE__ */ jsx_runtime365.jsxs(ThemedBox_default, {
|
|
@@ -819864,11 +820173,7 @@ function generateTokenChart(dailyTokens, models, terminalWidth) {
|
|
|
819864
820173
|
}
|
|
819865
820174
|
}
|
|
819866
820175
|
const theme2 = getTheme2(resolveThemeSetting(getGlobalConfig().theme));
|
|
819867
|
-
const colors4 = [
|
|
819868
|
-
themeColorToAnsi2(theme2.suggestion),
|
|
819869
|
-
themeColorToAnsi2(theme2.success),
|
|
819870
|
-
themeColorToAnsi2(theme2.warning)
|
|
819871
|
-
];
|
|
820176
|
+
const colors4 = [themeColorToAnsi2(theme2.suggestion), themeColorToAnsi2(theme2.success), themeColorToAnsi2(theme2.warning)];
|
|
819872
820177
|
const series = [];
|
|
819873
820178
|
const legend = [];
|
|
819874
820179
|
const topModels = models.slice(0, 3);
|
|
@@ -819965,11 +820270,15 @@ function renderOverviewToAnsi(stats) {
|
|
|
819965
820270
|
const COL1_LABEL_WIDTH = 18;
|
|
819966
820271
|
const COL2_START = 40;
|
|
819967
820272
|
const COL2_LABEL_WIDTH = 18;
|
|
820273
|
+
const padEndWidth2 = (text2, width) => {
|
|
820274
|
+
const w2 = stringWidth(text2);
|
|
820275
|
+
return w2 >= width ? text2 : text2 + " ".repeat(width - w2);
|
|
820276
|
+
};
|
|
819968
820277
|
const row = (l1, v1, l22, v2) => {
|
|
819969
|
-
const label1 = (l1 + ":"
|
|
819970
|
-
const col1PlainLen = label1
|
|
820278
|
+
const label1 = padEndWidth2(l1 + ":", COL1_LABEL_WIDTH);
|
|
820279
|
+
const col1PlainLen = stringWidth(label1) + stringWidth(v1);
|
|
819971
820280
|
const spaceBetween = Math.max(2, COL2_START - col1PlainLen);
|
|
819972
|
-
const label2 = (l22 + ":"
|
|
820281
|
+
const label2 = padEndWidth2(l22 + ":", COL2_LABEL_WIDTH);
|
|
819973
820282
|
return label1 + h8(v1) + " ".repeat(spaceBetween) + label2 + h8(v2);
|
|
819974
820283
|
};
|
|
819975
820284
|
if (stats.dailyActivity.length > 0) {
|
|
@@ -819991,7 +820300,7 @@ function renderOverviewToAnsi(stats) {
|
|
|
819991
820300
|
const peakHourVal = stats.peakActivityHour !== null ? `${stats.peakActivityHour}:00-${stats.peakActivityHour + 1}:00` : t("stats.na");
|
|
819992
820301
|
lines2.push(row(t("stats.activeDays2"), activeDaysVal, t("stats.peakHour"), peakHourVal));
|
|
819993
820302
|
if (process.env.USER_TYPE === "sf" && stats.totalSpeculationTimeSavedMs > 0) {
|
|
819994
|
-
const label = (t("stats.speculationSaved2") + ":"
|
|
820303
|
+
const label = padEndWidth2(t("stats.speculationSaved2") + ":", COL1_LABEL_WIDTH);
|
|
819995
820304
|
lines2.push(label + h8(formatDuration(stats.totalSpeculationTimeSavedMs)));
|
|
819996
820305
|
}
|
|
819997
820306
|
if (stats.shotDistribution) {
|
|
@@ -820014,7 +820323,7 @@ function renderOverviewToAnsi(stats) {
|
|
|
820014
820323
|
lines2.push(t("stats.shotDistribution2"));
|
|
820015
820324
|
lines2.push(row(t("stats.shot1"), fmtBucket(b1, pct(b1)), t("stats.shot2to5"), fmtBucket(b2_5, pct(b2_5))));
|
|
820016
820325
|
lines2.push(row(t("stats.shot6to10"), fmtBucket(b6_10, pct(b6_10)), t("stats.shot11plus"), fmtBucket(b11, pct(b11))));
|
|
820017
|
-
lines2.push(`${t("stats.avgPerSession2") + ":"
|
|
820326
|
+
lines2.push(`${padEndWidth2(t("stats.avgPerSession2") + ":", COL1_LABEL_WIDTH)}${h8(avgShots)}`);
|
|
820018
820327
|
}
|
|
820019
820328
|
}
|
|
820020
820329
|
lines2.push("");
|
|
@@ -822739,20 +823048,29 @@ function spawnWorker(worker, dir, config12, signal) {
|
|
|
822739
823048
|
stdio: ["ignore", "pipe", "pipe"]
|
|
822740
823049
|
});
|
|
822741
823050
|
worker.process = child;
|
|
822742
|
-
|
|
822743
|
-
|
|
822744
|
-
|
|
822745
|
-
|
|
822746
|
-
|
|
822747
|
-
|
|
822748
|
-
|
|
822749
|
-
|
|
822750
|
-
const lines2 = data.toString().trimEnd().split(`
|
|
823051
|
+
const pipeLineBuffer = (stream6, log13) => {
|
|
823052
|
+
if (!stream6)
|
|
823053
|
+
return;
|
|
823054
|
+
const decoder = new TextDecoder("utf-8", { fatal: false });
|
|
823055
|
+
let remainder = "";
|
|
823056
|
+
stream6.on("data", (data) => {
|
|
823057
|
+
const text2 = remainder + decoder.decode(data, { stream: true });
|
|
823058
|
+
const lines2 = text2.split(`
|
|
822751
823059
|
`);
|
|
822752
|
-
|
|
822753
|
-
|
|
822754
|
-
|
|
822755
|
-
|
|
823060
|
+
remainder = lines2.pop() ?? "";
|
|
823061
|
+
for (const line of lines2) {
|
|
823062
|
+
log13(line);
|
|
823063
|
+
}
|
|
823064
|
+
});
|
|
823065
|
+
stream6.on("end", () => {
|
|
823066
|
+
const tail = remainder + decoder.decode();
|
|
823067
|
+
if (tail)
|
|
823068
|
+
log13(tail);
|
|
823069
|
+
remainder = "";
|
|
823070
|
+
});
|
|
823071
|
+
};
|
|
823072
|
+
pipeLineBuffer(child.stdout, (line) => console.log(` ${line}`));
|
|
823073
|
+
pipeLineBuffer(child.stderr, (line) => console.error(` ${line}`));
|
|
822756
823074
|
child.on("exit", (code, sig) => {
|
|
822757
823075
|
worker.process = null;
|
|
822758
823076
|
if (signal.aborted) {
|
|
@@ -825590,7 +825908,7 @@ function generateHtmlReport(data, insights) {
|
|
|
825590
825908
|
</html>`;
|
|
825591
825909
|
}
|
|
825592
825910
|
function buildExportData(data, insights, facets, remoteStats) {
|
|
825593
|
-
const version9 = typeof MACRO !== "undefined" ? "4.2.
|
|
825911
|
+
const version9 = typeof MACRO !== "undefined" ? "4.2.6-beta" : "unknown";
|
|
825594
825912
|
const remote_hosts_collected = remoteStats?.hosts.filter((h8) => h8.sessionCount > 0).map((h8) => h8.name);
|
|
825595
825913
|
const facets_summary = {
|
|
825596
825914
|
total: facets.size,
|
|
@@ -829904,7 +830222,7 @@ var init_sessionStorage = __esm(() => {
|
|
|
829904
830222
|
init_settings2();
|
|
829905
830223
|
init_slowOperations();
|
|
829906
830224
|
init_uuid();
|
|
829907
|
-
VERSION10 = typeof MACRO !== "undefined" ? "4.2.
|
|
830225
|
+
VERSION10 = typeof MACRO !== "undefined" ? "4.2.6-beta" : "unknown";
|
|
829908
830226
|
MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
|
|
829909
830227
|
SKIP_FIRST_PROMPT_PATTERN2 = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
|
|
829910
830228
|
EPHEMERAL_PROGRESS_TYPES = new Set([
|
|
@@ -831212,7 +831530,7 @@ var init_filesystem = __esm(() => {
|
|
|
831212
831530
|
});
|
|
831213
831531
|
getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
|
|
831214
831532
|
const nonce = randomBytes24(16).toString("hex");
|
|
831215
|
-
return join197(getCostrictTempDir(), "bundled-skills", "4.2.
|
|
831533
|
+
return join197(getCostrictTempDir(), "bundled-skills", "4.2.6-beta", nonce);
|
|
831216
831534
|
});
|
|
831217
831535
|
getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
|
|
831218
831536
|
});
|
|
@@ -837409,7 +837727,7 @@ function computeFingerprint(messageText, version9) {
|
|
|
837409
837727
|
}
|
|
837410
837728
|
function computeFingerprintFromMessages(messages) {
|
|
837411
837729
|
const firstMessageText = extractFirstMessageText(messages);
|
|
837412
|
-
return computeFingerprint(firstMessageText, "4.2.
|
|
837730
|
+
return computeFingerprint(firstMessageText, "4.2.6-beta");
|
|
837413
837731
|
}
|
|
837414
837732
|
var FINGERPRINT_SALT = "59cf53e54c78";
|
|
837415
837733
|
var init_fingerprint = () => {};
|
|
@@ -837819,7 +838137,7 @@ function getAnthropicEnvMetadata() {
|
|
|
837819
838137
|
function getBuildAgeMinutes() {
|
|
837820
838138
|
if (false)
|
|
837821
838139
|
;
|
|
837822
|
-
const buildTime = new Date("2026-06-
|
|
838140
|
+
const buildTime = new Date("2026-06-22T11:00:03.039Z").getTime();
|
|
837823
838141
|
if (isNaN(buildTime))
|
|
837824
838142
|
return;
|
|
837825
838143
|
return Math.floor((Date.now() - buildTime) / 60000);
|
|
@@ -846235,6 +846553,29 @@ var init_client19 = __esm(() => {
|
|
|
846235
846553
|
init_state();
|
|
846236
846554
|
});
|
|
846237
846555
|
|
|
846556
|
+
// src/services/api/openai/retry.ts
|
|
846557
|
+
function wrapOpenAIErrorForRetry(error99) {
|
|
846558
|
+
if (error99 instanceof APIError || error99 instanceof APIConnectionError || error99 instanceof APIUserAbortError) {
|
|
846559
|
+
return error99;
|
|
846560
|
+
}
|
|
846561
|
+
if (error99 instanceof OpenAI.APIConnectionError) {
|
|
846562
|
+
return new APIConnectionError({
|
|
846563
|
+
cause: error99.cause instanceof Error ? error99.cause : undefined
|
|
846564
|
+
});
|
|
846565
|
+
}
|
|
846566
|
+
if (error99 instanceof OpenAI.APIUserAbortError) {
|
|
846567
|
+
return new APIUserAbortError;
|
|
846568
|
+
}
|
|
846569
|
+
if (error99 instanceof OpenAI.APIError) {
|
|
846570
|
+
return new APIError(error99.status ?? 0, error99.error, error99.message, error99.headers);
|
|
846571
|
+
}
|
|
846572
|
+
return error99;
|
|
846573
|
+
}
|
|
846574
|
+
var init_retry3 = __esm(() => {
|
|
846575
|
+
init_sdk();
|
|
846576
|
+
init_openai3();
|
|
846577
|
+
});
|
|
846578
|
+
|
|
846238
846579
|
// src/services/api/openai/chatgptAuth.ts
|
|
846239
846580
|
import { chmod as chmod12, mkdir as mkdir63, readFile as readFile75, unlink as unlink31, writeFile as writeFile69 } from "fs/promises";
|
|
846240
846581
|
import { homedir as homedir48 } from "os";
|
|
@@ -847012,32 +847353,59 @@ async function* queryModelOpenAI(messages, systemPrompt2, tools, signal, options
|
|
|
847012
847353
|
const { upperLimit } = getModelMaxOutputTokens(openaiModel);
|
|
847013
847354
|
const maxTokens = resolveOpenAIMaxTokens(upperLimit, options.maxOutputTokensOverride);
|
|
847014
847355
|
logForDebugging(`[OpenAI] Calling model=${openaiModel}, messages=${openaiMessages.length}, tools=${openaiTools.length}, thinking=${enableThinking}`);
|
|
847015
|
-
|
|
847016
|
-
|
|
847356
|
+
let adaptedStream;
|
|
847357
|
+
if (isChatGPTAuthEnabled()) {
|
|
847358
|
+
adaptedStream = adaptResponsesStreamToAnthropic(await createChatGPTResponsesStream({
|
|
847359
|
+
request: buildResponsesRequest({
|
|
847360
|
+
model: openaiModel,
|
|
847361
|
+
messages: openaiMessages,
|
|
847362
|
+
tools: openaiTools,
|
|
847363
|
+
toolChoice: openaiToolChoice,
|
|
847364
|
+
reasoningEffort
|
|
847365
|
+
}),
|
|
847366
|
+
signal,
|
|
847367
|
+
fetchOverride: options.fetchOverride
|
|
847368
|
+
}), openaiModel);
|
|
847369
|
+
} else {
|
|
847370
|
+
const requestBody = buildOpenAIRequestBody({
|
|
847017
847371
|
model: openaiModel,
|
|
847018
847372
|
messages: openaiMessages,
|
|
847019
847373
|
tools: openaiTools,
|
|
847020
847374
|
toolChoice: openaiToolChoice,
|
|
847021
|
-
|
|
847022
|
-
|
|
847023
|
-
|
|
847024
|
-
|
|
847025
|
-
|
|
847026
|
-
|
|
847027
|
-
|
|
847028
|
-
|
|
847029
|
-
|
|
847030
|
-
|
|
847031
|
-
|
|
847032
|
-
|
|
847033
|
-
|
|
847034
|
-
|
|
847035
|
-
|
|
847036
|
-
|
|
847037
|
-
|
|
847038
|
-
|
|
847039
|
-
|
|
847040
|
-
|
|
847375
|
+
enableThinking,
|
|
847376
|
+
maxTokens,
|
|
847377
|
+
temperatureOverride: options.temperatureOverride,
|
|
847378
|
+
outputFormat: options.outputFormat
|
|
847379
|
+
});
|
|
847380
|
+
const retryGenerator = withRetry(() => Promise.resolve(getOpenAIClient({
|
|
847381
|
+
maxRetries: 0,
|
|
847382
|
+
fetchOverride: options.fetchOverride,
|
|
847383
|
+
source: options.querySource,
|
|
847384
|
+
agentId: options.agentId,
|
|
847385
|
+
parentAgentId: options.parentAgentId
|
|
847386
|
+
})), async (client10, _attempt, _context) => {
|
|
847387
|
+
try {
|
|
847388
|
+
return await client10.chat.completions.create(requestBody, { signal });
|
|
847389
|
+
} catch (err3) {
|
|
847390
|
+
throw wrapOpenAIErrorForRetry(err3);
|
|
847391
|
+
}
|
|
847392
|
+
}, {
|
|
847393
|
+
model: options.model,
|
|
847394
|
+
thinkingConfig: { type: "disabled" },
|
|
847395
|
+
signal,
|
|
847396
|
+
querySource: options.querySource
|
|
847397
|
+
});
|
|
847398
|
+
let stream6;
|
|
847399
|
+
let e7 = await retryGenerator.next();
|
|
847400
|
+
while (!e7.done) {
|
|
847401
|
+
if (e7.value.type === "system") {
|
|
847402
|
+
yield e7.value;
|
|
847403
|
+
}
|
|
847404
|
+
e7 = await retryGenerator.next();
|
|
847405
|
+
}
|
|
847406
|
+
stream6 = e7.value;
|
|
847407
|
+
adaptedStream = adaptOpenAIStreamToAnthropic(stream6, openaiModel);
|
|
847408
|
+
}
|
|
847041
847409
|
const contentBlocks = {};
|
|
847042
847410
|
const collectedMessages = [];
|
|
847043
847411
|
let partialMessage;
|
|
@@ -847181,6 +847549,8 @@ async function* queryModelOpenAI(messages, systemPrompt2, tools, signal, options
|
|
|
847181
847549
|
var init_openai5 = __esm(() => {
|
|
847182
847550
|
init_client19();
|
|
847183
847551
|
init_src3();
|
|
847552
|
+
init_withRetry();
|
|
847553
|
+
init_retry3();
|
|
847184
847554
|
init_chatgptAuth();
|
|
847185
847555
|
init_responsesAdapter();
|
|
847186
847556
|
init_messages7();
|
|
@@ -848053,29 +848423,6 @@ var init_grok = __esm(() => {
|
|
|
848053
848423
|
init_messages7();
|
|
848054
848424
|
});
|
|
848055
848425
|
|
|
848056
|
-
// src/costrict/provider/retry.ts
|
|
848057
|
-
function wrapOpenAIErrorForRetry(error99) {
|
|
848058
|
-
if (error99 instanceof APIError || error99 instanceof APIConnectionError || error99 instanceof APIUserAbortError) {
|
|
848059
|
-
return error99;
|
|
848060
|
-
}
|
|
848061
|
-
if (error99 instanceof OpenAI.APIConnectionError) {
|
|
848062
|
-
return new APIConnectionError({
|
|
848063
|
-
cause: error99.cause instanceof Error ? error99.cause : undefined
|
|
848064
|
-
});
|
|
848065
|
-
}
|
|
848066
|
-
if (error99 instanceof OpenAI.APIUserAbortError) {
|
|
848067
|
-
return new APIUserAbortError;
|
|
848068
|
-
}
|
|
848069
|
-
if (error99 instanceof OpenAI.APIError) {
|
|
848070
|
-
return new APIError(error99.status ?? 0, error99.error, error99.message, error99.headers);
|
|
848071
|
-
}
|
|
848072
|
-
return error99;
|
|
848073
|
-
}
|
|
848074
|
-
var init_retry3 = __esm(() => {
|
|
848075
|
-
init_sdk();
|
|
848076
|
-
init_openai3();
|
|
848077
|
-
});
|
|
848078
|
-
|
|
848079
848426
|
// node_modules/.bun/partial-json@0.1.7/node_modules/partial-json/dist/options.js
|
|
848080
848427
|
var require_options2 = __commonJS((exports) => {
|
|
848081
848428
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -848471,7 +848818,12 @@ async function* queryModelCoStrict(messages, systemPrompt2, tools, signal, optio
|
|
|
848471
848818
|
forAnthropicAPI: false
|
|
848472
848819
|
}),
|
|
848473
848820
|
fetch: costrictFetch,
|
|
848474
|
-
defaultHeaders: {
|
|
848821
|
+
defaultHeaders: {
|
|
848822
|
+
"User-Agent": getUserAgent(),
|
|
848823
|
+
"X-Session-Id": getSessionId(),
|
|
848824
|
+
...options.agentId ? { "X-Agent-Id": options.agentId } : {},
|
|
848825
|
+
...options.parentAgentId ? { "X-Parent-Agent-Id": options.parentAgentId } : {}
|
|
848826
|
+
}
|
|
848475
848827
|
});
|
|
848476
848828
|
logForDebugging(`[CoStrict] model=${costrictModel}, baseURL=${chatBaseURL}, messages=${openaiMessages.length}, tools=${openaiTools.length}`);
|
|
848477
848829
|
const requestBody = {
|
|
@@ -849625,9 +849977,11 @@ To invoke any tool listed above, use ExecuteExtraTool with {"tool_name": "<name>
|
|
|
849625
849977
|
endQueryProfile();
|
|
849626
849978
|
isFirstChunk = false;
|
|
849627
849979
|
}
|
|
849980
|
+
let messageUUID = "";
|
|
849628
849981
|
switch (part.type) {
|
|
849629
849982
|
case "message_start": {
|
|
849630
849983
|
partialMessage = part.message;
|
|
849984
|
+
messageUUID = randomUUID56();
|
|
849631
849985
|
ttftMs = Date.now() - start;
|
|
849632
849986
|
usage2 = updateUsage(usage2, part.message?.usage);
|
|
849633
849987
|
if (process.env.USER_TYPE === "sf" && "research" in part.message) {
|
|
@@ -849798,7 +850152,7 @@ To invoke any tool listed above, use ExecuteExtraTool with {"tool_name": "<name>
|
|
|
849798
850152
|
},
|
|
849799
850153
|
requestId: streamRequestId ?? undefined,
|
|
849800
850154
|
type: "assistant",
|
|
849801
|
-
uuid: randomUUID56(),
|
|
850155
|
+
uuid: messageUUID || randomUUID56(),
|
|
849802
850156
|
timestamp: new Date().toISOString(),
|
|
849803
850157
|
...process.env.USER_TYPE === "sf" && research !== undefined && { research },
|
|
849804
850158
|
...advisorModel && { advisorModel }
|
|
@@ -849855,7 +850209,7 @@ To invoke any tool listed above, use ExecuteExtraTool with {"tool_name": "<name>
|
|
|
849855
850209
|
}
|
|
849856
850210
|
yield {
|
|
849857
850211
|
type: "stream_event",
|
|
849858
|
-
event: part,
|
|
850212
|
+
event: { ...part, _message_uuid: messageUUID },
|
|
849859
850213
|
...part.type === "message_start" ? { ttftMs } : undefined
|
|
849860
850214
|
};
|
|
849861
850215
|
}
|
|
@@ -850701,7 +851055,7 @@ async function sideQuery(opts) {
|
|
|
850701
851055
|
betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
|
|
850702
851056
|
}
|
|
850703
851057
|
const messageText = extractFirstUserMessageText(messages);
|
|
850704
|
-
const fingerprint = computeFingerprint(messageText, "4.2.
|
|
851058
|
+
const fingerprint = computeFingerprint(messageText, "4.2.6-beta");
|
|
850705
851059
|
const attributionHeader = getAttributionHeader(fingerprint);
|
|
850706
851060
|
const systemBlocks = [
|
|
850707
851061
|
attributionHeader ? { type: "text", text: attributionHeader } : null,
|
|
@@ -854076,7 +854430,7 @@ function buildSystemInitMessage(inputs) {
|
|
|
854076
854430
|
slash_commands: inputs.commands.filter((c10) => c10.userInvocable !== false).map((c10) => c10.name),
|
|
854077
854431
|
apiKeySource: getAnthropicApiKeyWithSource().source,
|
|
854078
854432
|
betas: getSdkBetas(),
|
|
854079
|
-
claude_code_version: "4.2.
|
|
854433
|
+
claude_code_version: "4.2.6-beta",
|
|
854080
854434
|
output_style: outputStyle2,
|
|
854081
854435
|
agents: inputs.agents.map((agent) => agent.agentType),
|
|
854082
854436
|
skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill) => skill.name),
|
|
@@ -858925,7 +859279,7 @@ function appendToLog(path48, message2) {
|
|
|
858925
859279
|
cwd: getFsImplementation().cwd(),
|
|
858926
859280
|
userType: process.env.USER_TYPE,
|
|
858927
859281
|
sessionId: getSessionId(),
|
|
858928
|
-
version: "4.2.
|
|
859282
|
+
version: "4.2.6-beta"
|
|
858929
859283
|
};
|
|
858930
859284
|
getLogWriter(path48).write(messageWithTimestamp);
|
|
858931
859285
|
}
|
|
@@ -866442,9 +866796,12 @@ function MatrixPermissionFrame({
|
|
|
866442
866796
|
innerPaddingX = 1,
|
|
866443
866797
|
workerBadge,
|
|
866444
866798
|
titleRight,
|
|
866799
|
+
inlineReviewTitle,
|
|
866800
|
+
hideInputCue,
|
|
866445
866801
|
children: children2
|
|
866446
866802
|
}) {
|
|
866447
866803
|
const frameColor = color3 ?? "warning";
|
|
866804
|
+
const reviewTitle = inlineReviewTitle ? `${t("components.permission.review")} - ${title}` : t("components.permission.review");
|
|
866448
866805
|
return /* @__PURE__ */ jsx_runtime390.jsxs(ThemedBox_default, {
|
|
866449
866806
|
flexDirection: "column",
|
|
866450
866807
|
marginTop: 1,
|
|
@@ -866452,14 +866809,24 @@ function MatrixPermissionFrame({
|
|
|
866452
866809
|
borderColor: frameColor,
|
|
866453
866810
|
paddingX: 1,
|
|
866454
866811
|
children: [
|
|
866455
|
-
/* @__PURE__ */ jsx_runtime390.jsx(ThemedBox_default, {
|
|
866456
|
-
children: /* @__PURE__ */ jsx_runtime390.jsx(ThemedText, {
|
|
866457
|
-
color: frameColor,
|
|
866458
|
-
bold: true,
|
|
866459
|
-
children: t("components.permission.review")
|
|
866460
|
-
})
|
|
866461
|
-
}),
|
|
866462
866812
|
/* @__PURE__ */ jsx_runtime390.jsxs(ThemedBox_default, {
|
|
866813
|
+
children: [
|
|
866814
|
+
/* @__PURE__ */ jsx_runtime390.jsx(ThemedText, {
|
|
866815
|
+
color: frameColor,
|
|
866816
|
+
bold: true,
|
|
866817
|
+
children: reviewTitle
|
|
866818
|
+
}),
|
|
866819
|
+
inlineReviewTitle && workerBadge && /* @__PURE__ */ jsx_runtime390.jsxs(ThemedText, {
|
|
866820
|
+
dimColor: true,
|
|
866821
|
+
children: [
|
|
866822
|
+
" \xB7 ",
|
|
866823
|
+
"@",
|
|
866824
|
+
workerBadge.name
|
|
866825
|
+
]
|
|
866826
|
+
})
|
|
866827
|
+
]
|
|
866828
|
+
}),
|
|
866829
|
+
!inlineReviewTitle && /* @__PURE__ */ jsx_runtime390.jsxs(ThemedBox_default, {
|
|
866463
866830
|
justifyContent: "space-between",
|
|
866464
866831
|
children: [
|
|
866465
866832
|
/* @__PURE__ */ jsx_runtime390.jsx(PermissionRequestTitle, {
|
|
@@ -866471,6 +866838,17 @@ function MatrixPermissionFrame({
|
|
|
866471
866838
|
titleRight
|
|
866472
866839
|
]
|
|
866473
866840
|
}),
|
|
866841
|
+
inlineReviewTitle && (subtitle != null || titleRight) && /* @__PURE__ */ jsx_runtime390.jsxs(ThemedBox_default, {
|
|
866842
|
+
justifyContent: "space-between",
|
|
866843
|
+
children: [
|
|
866844
|
+
typeof subtitle === "string" ? /* @__PURE__ */ jsx_runtime390.jsx(ThemedText, {
|
|
866845
|
+
dimColor: true,
|
|
866846
|
+
wrap: "truncate-start",
|
|
866847
|
+
children: subtitle
|
|
866848
|
+
}) : subtitle,
|
|
866849
|
+
titleRight
|
|
866850
|
+
]
|
|
866851
|
+
}),
|
|
866474
866852
|
/* @__PURE__ */ jsx_runtime390.jsxs(ThemedBox_default, {
|
|
866475
866853
|
flexDirection: "column",
|
|
866476
866854
|
paddingX: innerPaddingX,
|
|
@@ -866482,7 +866860,7 @@ function MatrixPermissionFrame({
|
|
|
866482
866860
|
children: t("components.review.the.requested.local.action.before.continuing")
|
|
866483
866861
|
}),
|
|
866484
866862
|
children2,
|
|
866485
|
-
/* @__PURE__ */ jsx_runtime390.jsx(MatrixMessageLine, {
|
|
866863
|
+
!hideInputCue && /* @__PURE__ */ jsx_runtime390.jsx(MatrixMessageLine, {
|
|
866486
866864
|
label: t("tag.cue", "CUE"),
|
|
866487
866865
|
tone: "meta",
|
|
866488
866866
|
children: t("components.choose.an.approval.option.to.continue")
|
|
@@ -866510,6 +866888,8 @@ function PermissionDialog({
|
|
|
866510
866888
|
innerPaddingX = 1,
|
|
866511
866889
|
workerBadge,
|
|
866512
866890
|
titleRight,
|
|
866891
|
+
inlineReviewTitle,
|
|
866892
|
+
hideInputCue,
|
|
866513
866893
|
children: children2
|
|
866514
866894
|
}) {
|
|
866515
866895
|
const [theme2] = useTheme();
|
|
@@ -866522,6 +866902,8 @@ function PermissionDialog({
|
|
|
866522
866902
|
innerPaddingX,
|
|
866523
866903
|
workerBadge,
|
|
866524
866904
|
titleRight,
|
|
866905
|
+
inlineReviewTitle,
|
|
866906
|
+
hideInputCue,
|
|
866525
866907
|
children: children2
|
|
866526
866908
|
});
|
|
866527
866909
|
}
|
|
@@ -867386,8 +867768,7 @@ function getFilePermissionOptions({
|
|
|
867386
867768
|
if (operationType === "read") {
|
|
867387
867769
|
sessionLabel = /* @__PURE__ */ jsx_runtime395.jsxs(ThemedText, {
|
|
867388
867770
|
children: [
|
|
867389
|
-
t("permissions.
|
|
867390
|
-
" ",
|
|
867771
|
+
t("permissions.allow.reading.from.dir.during.session.beforeDir"),
|
|
867391
867772
|
/* @__PURE__ */ jsx_runtime395.jsxs(ThemedText, {
|
|
867392
867773
|
bold: true,
|
|
867393
867774
|
children: [
|
|
@@ -867395,8 +867776,7 @@ function getFilePermissionOptions({
|
|
|
867395
867776
|
"/"
|
|
867396
867777
|
]
|
|
867397
867778
|
}),
|
|
867398
|
-
"
|
|
867399
|
-
t("permissions.during.this.session")
|
|
867779
|
+
t("permissions.allow.reading.from.dir.during.session.afterDir")
|
|
867400
867780
|
]
|
|
867401
867781
|
});
|
|
867402
867782
|
} else {
|
|
@@ -867698,6 +868078,7 @@ function FilePermissionDialog({
|
|
|
867698
868078
|
subtitle,
|
|
867699
868079
|
question = t("permissions.proceed"),
|
|
867700
868080
|
content,
|
|
868081
|
+
hideFooterHint = false,
|
|
867701
868082
|
completionType = "tool_use_single",
|
|
867702
868083
|
path: path49,
|
|
867703
868084
|
parseInput,
|
|
@@ -867804,6 +868185,8 @@ function FilePermissionDialog({
|
|
|
867804
868185
|
subtitle,
|
|
867805
868186
|
innerPaddingX: 0,
|
|
867806
868187
|
workerBadge,
|
|
868188
|
+
inlineReviewTitle: true,
|
|
868189
|
+
hideInputCue: hideFooterHint,
|
|
867807
868190
|
children: [
|
|
867808
868191
|
symlinkWarning,
|
|
867809
868192
|
content,
|
|
@@ -867841,7 +868224,7 @@ function FilePermissionDialog({
|
|
|
867841
868224
|
})
|
|
867842
868225
|
]
|
|
867843
868226
|
}),
|
|
867844
|
-
/* @__PURE__ */ jsx_runtime396.jsx(ThemedBox_default, {
|
|
868227
|
+
!hideFooterHint && /* @__PURE__ */ jsx_runtime396.jsx(ThemedBox_default, {
|
|
867845
868228
|
paddingX: 1,
|
|
867846
868229
|
marginTop: 1,
|
|
867847
868230
|
children: /* @__PURE__ */ jsx_runtime396.jsxs(ThemedText, {
|
|
@@ -870151,8 +870534,7 @@ function FilesystemPermissionRequest({
|
|
|
870151
870534
|
const path49 = pathFromToolUse(toolUseConfirm);
|
|
870152
870535
|
const userFacingName8 = toolUseConfirm.tool.userFacingName(toolUseConfirm.input);
|
|
870153
870536
|
const isReadOnly = toolUseConfirm.tool.isReadOnly(toolUseConfirm.input);
|
|
870154
|
-
const
|
|
870155
|
-
const title = `${userFacingReadOrEdit} file`;
|
|
870537
|
+
const title = isReadOnly ? t("permissions.readFileTitle") : t("permissions.editFileTitle");
|
|
870156
870538
|
const parseInput = (input4) => input4;
|
|
870157
870539
|
if (!path49) {
|
|
870158
870540
|
return /* @__PURE__ */ jsx_runtime405.jsx(FallbackPermissionRequest, {
|
|
@@ -870188,11 +870570,13 @@ function FilesystemPermissionRequest({
|
|
|
870188
870570
|
path: path49,
|
|
870189
870571
|
parseInput,
|
|
870190
870572
|
operationType: isReadOnly ? "read" : "write",
|
|
870191
|
-
completionType: "tool_use_single"
|
|
870573
|
+
completionType: "tool_use_single",
|
|
870574
|
+
hideFooterHint: true
|
|
870192
870575
|
});
|
|
870193
870576
|
}
|
|
870194
870577
|
var jsx_runtime405;
|
|
870195
870578
|
var init_FilesystemPermissionRequest = __esm(() => {
|
|
870579
|
+
init_locales2();
|
|
870196
870580
|
init_src();
|
|
870197
870581
|
init_FallbackPermissionRequest();
|
|
870198
870582
|
init_FilePermissionDialog();
|
|
@@ -873949,7 +874333,11 @@ function TokenWarning({ tokenUsage, model }) {
|
|
|
873949
874333
|
let displayPercentLeft = percentLeft;
|
|
873950
874334
|
let reactiveOnlyMode = false;
|
|
873951
874335
|
let collapseMode = false;
|
|
873952
|
-
if (
|
|
874336
|
+
if (true) {
|
|
874337
|
+
if (getFeatureValue_CACHED_MAY_BE_STALE("tengu_cobalt_raccoon", false)) {
|
|
874338
|
+
reactiveOnlyMode = true;
|
|
874339
|
+
}
|
|
874340
|
+
}
|
|
873953
874341
|
if (false) {}
|
|
873954
874342
|
if (reactiveOnlyMode || collapseMode) {
|
|
873955
874343
|
const effectiveWindow = getEffectiveContextWindowSize(model);
|
|
@@ -879667,7 +880055,7 @@ function buildStatusLineCommandInput(permissionMode, exceeds200kTokens, settings
|
|
|
879667
880055
|
project_dir: getOriginalCwd(),
|
|
879668
880056
|
added_dirs: addedDirs
|
|
879669
880057
|
},
|
|
879670
|
-
version: "4.2.
|
|
880058
|
+
version: "4.2.6-beta",
|
|
879671
880059
|
output_style: {
|
|
879672
880060
|
name: outputStyleName
|
|
879673
880061
|
},
|
|
@@ -898250,7 +898638,7 @@ async function submitTranscriptShare(messages, trigger, appearanceId) {
|
|
|
898250
898638
|
} catch {}
|
|
898251
898639
|
const data = {
|
|
898252
898640
|
trigger,
|
|
898253
|
-
version: "4.2.
|
|
898641
|
+
version: "4.2.6-beta",
|
|
898254
898642
|
platform: process.platform,
|
|
898255
898643
|
transcript,
|
|
898256
898644
|
subagentTranscripts: Object.keys(subagentTranscripts).length > 0 ? subagentTranscripts : undefined,
|
|
@@ -899505,7 +899893,7 @@ function getReleaseType(current2, latest) {
|
|
|
899505
899893
|
return "patch";
|
|
899506
899894
|
}
|
|
899507
899895
|
async function checkNewAutoUpdate(callbacks) {
|
|
899508
|
-
const currentVersion = "4.2.
|
|
899896
|
+
const currentVersion = "4.2.6-beta";
|
|
899509
899897
|
logForDebugging(`[newAutoUpdater] checking, current: ${currentVersion}`);
|
|
899510
899898
|
if (isNewAutoUpdaterDisabled()) {
|
|
899511
899899
|
return { action: "skip", currentVersion, latestVersion: null };
|
|
@@ -900212,10 +900600,10 @@ function DesktopHandoff({ onDone }) {
|
|
|
900212
900600
|
return;
|
|
900213
900601
|
}
|
|
900214
900602
|
if (state4 === "prompt-download") {
|
|
900215
|
-
if (input4 === "y" || input4 === "Y") {
|
|
900603
|
+
if (input4 === "y" || input4 === "Y" || input4 === "\u662F") {
|
|
900216
900604
|
openBrowser(getDownloadUrl()).catch(() => {});
|
|
900217
900605
|
onDone(t("desktopHandoff.message.startDownload", { url: DESKTOP_DOCS_URL }), { display: "system" });
|
|
900218
|
-
} else if (input4 === "n" || input4 === "N") {
|
|
900606
|
+
} else if (input4 === "n" || input4 === "N" || input4 === "\u5426") {
|
|
900219
900607
|
onDone(t("desktopHandoff.message.appRequired", { url: DESKTOP_DOCS_URL }), { display: "system" });
|
|
900220
900608
|
}
|
|
900221
900609
|
}
|
|
@@ -901239,9 +901627,7 @@ var init_SandboxViolationExpandedView = __esm(() => {
|
|
|
901239
901627
|
});
|
|
901240
901628
|
|
|
901241
901629
|
// src/hooks/notifs/useMcpConnectivityStatus.tsx
|
|
901242
|
-
function useMcpConnectivityStatus({
|
|
901243
|
-
mcpClients = EMPTY_MCP_CLIENTS
|
|
901244
|
-
}) {
|
|
901630
|
+
function useMcpConnectivityStatus({ mcpClients = EMPTY_MCP_CLIENTS }) {
|
|
901245
901631
|
const { addNotification } = useNotifications();
|
|
901246
901632
|
import_react335.useEffect(() => {
|
|
901247
901633
|
if (getIsRemoteMode())
|
|
@@ -901256,16 +901642,9 @@ function useMcpConnectivityStatus({
|
|
|
901256
901642
|
key: "mcp-failed",
|
|
901257
901643
|
jsx: /* @__PURE__ */ jsx_runtime463.jsxs(jsx_runtime463.Fragment, {
|
|
901258
901644
|
children: [
|
|
901259
|
-
/* @__PURE__ */ jsx_runtime463.
|
|
901645
|
+
/* @__PURE__ */ jsx_runtime463.jsx(ThemedText, {
|
|
901260
901646
|
color: "error",
|
|
901261
|
-
children:
|
|
901262
|
-
failedLocalClients.length,
|
|
901263
|
-
" MCP",
|
|
901264
|
-
" ",
|
|
901265
|
-
failedLocalClients.length === 1 ? t("mcp.server", "server") : t("mcp.servers", "servers"),
|
|
901266
|
-
" ",
|
|
901267
|
-
t("mcp.failed", "failed")
|
|
901268
|
-
]
|
|
901647
|
+
children: t("mcp.failedServersNotice", { count: failedLocalClients.length })
|
|
901269
901648
|
}),
|
|
901270
901649
|
/* @__PURE__ */ jsx_runtime463.jsx(ThemedText, {
|
|
901271
901650
|
dimColor: true,
|
|
@@ -910428,7 +910807,7 @@ function WelcomeV2() {
|
|
|
910428
910807
|
dimColor: true,
|
|
910429
910808
|
children: [
|
|
910430
910809
|
"v",
|
|
910431
|
-
"4.2.
|
|
910810
|
+
"4.2.6-beta",
|
|
910432
910811
|
" "
|
|
910433
910812
|
]
|
|
910434
910813
|
})
|
|
@@ -910494,7 +910873,7 @@ function WelcomeV2() {
|
|
|
910494
910873
|
dimColor: true,
|
|
910495
910874
|
children: [
|
|
910496
910875
|
"v",
|
|
910497
|
-
"4.2.
|
|
910876
|
+
"4.2.6-beta",
|
|
910498
910877
|
" "
|
|
910499
910878
|
]
|
|
910500
910879
|
})
|
|
@@ -910596,7 +910975,7 @@ function AppleTerminalWelcomeV2({ theme: theme2, welcomeMessage }) {
|
|
|
910596
910975
|
dimColor: true,
|
|
910597
910976
|
children: [
|
|
910598
910977
|
"v",
|
|
910599
|
-
"4.2.
|
|
910978
|
+
"4.2.6-beta",
|
|
910600
910979
|
" "
|
|
910601
910980
|
]
|
|
910602
910981
|
})
|
|
@@ -910662,7 +911041,7 @@ function AppleTerminalWelcomeV2({ theme: theme2, welcomeMessage }) {
|
|
|
910662
911041
|
dimColor: true,
|
|
910663
911042
|
children: [
|
|
910664
911043
|
"v",
|
|
910665
|
-
"4.2.
|
|
911044
|
+
"4.2.6-beta",
|
|
910666
911045
|
" "
|
|
910667
911046
|
]
|
|
910668
911047
|
})
|
|
@@ -911602,7 +911981,7 @@ function completeOnboarding() {
|
|
|
911602
911981
|
saveGlobalConfig((current2) => ({
|
|
911603
911982
|
...current2,
|
|
911604
911983
|
hasCompletedOnboarding: true,
|
|
911605
|
-
lastOnboardingVersion: "4.2.
|
|
911984
|
+
lastOnboardingVersion: "4.2.6-beta"
|
|
911606
911985
|
}));
|
|
911607
911986
|
}
|
|
911608
911987
|
function showDialog(root9, renderer) {
|
|
@@ -911970,11 +912349,7 @@ var init_useTeleportResume = __esm(() => {
|
|
|
911970
912349
|
});
|
|
911971
912350
|
|
|
911972
912351
|
// src/components/ResumeTask.tsx
|
|
911973
|
-
function ResumeTask({
|
|
911974
|
-
onSelect,
|
|
911975
|
-
onCancel,
|
|
911976
|
-
isEmbedded = false
|
|
911977
|
-
}) {
|
|
912352
|
+
function ResumeTask({ onSelect, onCancel, isEmbedded = false }) {
|
|
911978
912353
|
const { rows } = useTerminalSize();
|
|
911979
912354
|
const [sessions, setSessions] = import_react367.useState([]);
|
|
911980
912355
|
const [currentRepo, setCurrentRepo] = import_react367.useState(null);
|
|
@@ -912139,13 +912514,18 @@ function ResumeTask({
|
|
|
912139
912514
|
]
|
|
912140
912515
|
});
|
|
912141
912516
|
}
|
|
912517
|
+
const updatedHeader = t("components.updated");
|
|
912518
|
+
const padEndWidth2 = (text2, width) => {
|
|
912519
|
+
const w2 = stringWidth(text2);
|
|
912520
|
+
return w2 >= width ? text2 : text2 + " ".repeat(width - w2);
|
|
912521
|
+
};
|
|
912142
912522
|
const sessionMetadata = sessions.map((session2) => ({
|
|
912143
912523
|
...session2,
|
|
912144
912524
|
timeString: formatRelativeTime(new Date(session2.updated_at))
|
|
912145
912525
|
}));
|
|
912146
|
-
const maxTimeStringLength = Math.max(
|
|
912526
|
+
const maxTimeStringLength = Math.max(stringWidth(updatedHeader), ...sessionMetadata.map((meta5) => stringWidth(meta5.timeString)));
|
|
912147
912527
|
const options = sessionMetadata.map(({ timeString, title, id }) => {
|
|
912148
|
-
const paddedTime = timeString
|
|
912528
|
+
const paddedTime = padEndWidth2(timeString, maxTimeStringLength);
|
|
912149
912529
|
return {
|
|
912150
912530
|
label: `${paddedTime} ${title}`,
|
|
912151
912531
|
value: id
|
|
@@ -912196,7 +912576,7 @@ function ResumeTask({
|
|
|
912196
912576
|
children: /* @__PURE__ */ jsx_runtime499.jsxs(ThemedText, {
|
|
912197
912577
|
bold: true,
|
|
912198
912578
|
children: [
|
|
912199
|
-
|
|
912579
|
+
padEndWidth2(updatedHeader, maxTimeStringLength),
|
|
912200
912580
|
SPACE_BETWEEN_TABLE_COLUMNS,
|
|
912201
912581
|
t("components.session.title")
|
|
912202
912582
|
]
|
|
@@ -912314,7 +912694,7 @@ function renderErrorSpecificGuidance(errorType) {
|
|
|
912314
912694
|
});
|
|
912315
912695
|
}
|
|
912316
912696
|
}
|
|
912317
|
-
var import_react367, jsx_runtime499,
|
|
912697
|
+
var import_react367, jsx_runtime499, SPACE_BETWEEN_TABLE_COLUMNS = " ";
|
|
912318
912698
|
var init_ResumeTask = __esm(() => {
|
|
912319
912699
|
init_locales2();
|
|
912320
912700
|
init_useTerminalSize2();
|
|
@@ -912980,7 +913360,7 @@ function registerWeixinBuiltinPlugin() {
|
|
|
912980
913360
|
registerBuiltinPlugin({
|
|
912981
913361
|
name: "weixin",
|
|
912982
913362
|
description: "WeChat channel integration. Enables inbound WeChat messages via channels and provides reply/send_typing MCP tools. Configure with `ccb weixin login` and enable for a session with `--channels plugin:weixin@builtin`.",
|
|
912983
|
-
version: "4.2.
|
|
913363
|
+
version: "4.2.6-beta",
|
|
912984
913364
|
defaultEnabled: true,
|
|
912985
913365
|
mcpServers: {
|
|
912986
913366
|
weixin: {
|
|
@@ -921451,19 +921831,16 @@ Error: sandbox required but unavailable: ${sandboxUnavailableReason}
|
|
|
921451
921831
|
`);
|
|
921452
921832
|
break;
|
|
921453
921833
|
case "error_during_execution":
|
|
921454
|
-
writeToStdout(
|
|
921834
|
+
writeToStdout(t("errors.print.executionError"));
|
|
921455
921835
|
break;
|
|
921456
921836
|
case "error_max_turns":
|
|
921457
|
-
writeToStdout(
|
|
921458
|
-
Tip: Increase the limit with --max-turns or continue in a new session.`);
|
|
921837
|
+
writeToStdout(t("errors.print.maxTurns", { maxTurns: options.maxTurns ?? 0 }));
|
|
921459
921838
|
break;
|
|
921460
921839
|
case "error_max_budget_usd":
|
|
921461
|
-
writeToStdout(
|
|
921462
|
-
Tip: Increase the limit with --max-budget-usd or start a new session to continue.`);
|
|
921840
|
+
writeToStdout(t("errors.print.maxBudgetUsd", { maxBudgetUsd: options.maxBudgetUsd ?? 0 }));
|
|
921463
921841
|
break;
|
|
921464
921842
|
case "error_max_structured_output_retries":
|
|
921465
|
-
writeToStdout(
|
|
921466
|
-
Tip: Simplify your schema or check if the output format matches the expected structure.`);
|
|
921843
|
+
writeToStdout(t("errors.print.maxStructuredOutputRetries"));
|
|
921467
921844
|
}
|
|
921468
921845
|
}
|
|
921469
921846
|
logHeadlessProfilerTurn();
|
|
@@ -924111,6 +924488,7 @@ The user cannot receive your response until the team is completely shut down.
|
|
|
924111
924488
|
|
|
924112
924489
|
Shut down your team and prepare your final response for the user.`, MAX_RECEIVED_UUIDS = 1e4, receivedMessageUuids, receivedMessageUuidsOrder;
|
|
924113
924490
|
var init_print = __esm(() => {
|
|
924491
|
+
init_locales2();
|
|
924114
924492
|
init_settingsSync();
|
|
924115
924493
|
init_remoteManagedSettings();
|
|
924116
924494
|
init_structuredIO();
|
|
@@ -925325,7 +925703,7 @@ async function startMCPServer(cwd3, debug5, verbose) {
|
|
|
925325
925703
|
setCwd(cwd3);
|
|
925326
925704
|
const server2 = new Server({
|
|
925327
925705
|
name: "claude/tengu",
|
|
925328
|
-
version: "4.2.
|
|
925706
|
+
version: "4.2.6-beta"
|
|
925329
925707
|
}, {
|
|
925330
925708
|
capabilities: {
|
|
925331
925709
|
tools: {}
|
|
@@ -925840,7 +926218,7 @@ var init_mcp5 = __esm(() => {
|
|
|
925840
926218
|
jsx_runtime506 = __toESM(require_jsx_runtime(), 1);
|
|
925841
926219
|
});
|
|
925842
926220
|
|
|
925843
|
-
// node_modules/.bun/hono@4.12.
|
|
926221
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/compose.js
|
|
925844
926222
|
var compose = (middleware3, onError, onNotFound) => {
|
|
925845
926223
|
return (context41, next2) => {
|
|
925846
926224
|
let index2 = -1;
|
|
@@ -925885,7 +926263,7 @@ var compose = (middleware3, onError, onNotFound) => {
|
|
|
925885
926263
|
};
|
|
925886
926264
|
var init_compose = () => {};
|
|
925887
926265
|
|
|
925888
|
-
// node_modules/.bun/hono@4.12.
|
|
926266
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/http-exception.js
|
|
925889
926267
|
var HTTPException;
|
|
925890
926268
|
var init_http_exception = __esm(() => {
|
|
925891
926269
|
HTTPException = class extends Error {
|
|
@@ -925911,13 +926289,13 @@ var init_http_exception = __esm(() => {
|
|
|
925911
926289
|
};
|
|
925912
926290
|
});
|
|
925913
926291
|
|
|
925914
|
-
// node_modules/.bun/hono@4.12.
|
|
926292
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/request/constants.js
|
|
925915
926293
|
var GET_MATCH_RESULT;
|
|
925916
926294
|
var init_constants32 = __esm(() => {
|
|
925917
926295
|
GET_MATCH_RESULT = /* @__PURE__ */ Symbol();
|
|
925918
926296
|
});
|
|
925919
926297
|
|
|
925920
|
-
// node_modules/.bun/hono@4.12.
|
|
926298
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/utils/body.js
|
|
925921
926299
|
async function parseFormData(request3, options) {
|
|
925922
926300
|
const formData = await request3.formData();
|
|
925923
926301
|
if (formData) {
|
|
@@ -925989,7 +926367,7 @@ var init_body = __esm(() => {
|
|
|
925989
926367
|
init_request2();
|
|
925990
926368
|
});
|
|
925991
926369
|
|
|
925992
|
-
// node_modules/.bun/hono@4.12.
|
|
926370
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/utils/url.js
|
|
925993
926371
|
var splitPath2 = (path52) => {
|
|
925994
926372
|
const paths2 = path52.split("/");
|
|
925995
926373
|
if (paths2[0] === "") {
|
|
@@ -926178,7 +926556,7 @@ var init_url2 = __esm(() => {
|
|
|
926178
926556
|
decodeURIComponent_ = decodeURIComponent;
|
|
926179
926557
|
});
|
|
926180
926558
|
|
|
926181
|
-
// node_modules/.bun/hono@4.12.
|
|
926559
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/request.js
|
|
926182
926560
|
var tryDecodeURIComponent = (str3) => tryDecode(str3, decodeURIComponent_), HonoRequest;
|
|
926183
926561
|
var init_request2 = __esm(() => {
|
|
926184
926562
|
init_http_exception();
|
|
@@ -926298,7 +926676,7 @@ var init_request2 = __esm(() => {
|
|
|
926298
926676
|
};
|
|
926299
926677
|
});
|
|
926300
926678
|
|
|
926301
|
-
// node_modules/.bun/hono@4.12.
|
|
926679
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/utils/html.js
|
|
926302
926680
|
var HtmlEscapedCallbackPhase, raw = (value, callbacks) => {
|
|
926303
926681
|
const escapedString = new String(value);
|
|
926304
926682
|
escapedString.isEscaped = true;
|
|
@@ -926337,7 +926715,7 @@ var init_html = __esm(() => {
|
|
|
926337
926715
|
};
|
|
926338
926716
|
});
|
|
926339
926717
|
|
|
926340
|
-
// node_modules/.bun/hono@4.12.
|
|
926718
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/context.js
|
|
926341
926719
|
var TEXT_PLAIN = "text/plain; charset=UTF-8", setDefaultContentType = (contentType, headers) => {
|
|
926342
926720
|
return {
|
|
926343
926721
|
"Content-Type": contentType,
|
|
@@ -926505,7 +926883,7 @@ var init_context6 = __esm(() => {
|
|
|
926505
926883
|
init_html();
|
|
926506
926884
|
});
|
|
926507
926885
|
|
|
926508
|
-
// node_modules/.bun/hono@4.12.
|
|
926886
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/router.js
|
|
926509
926887
|
var METHOD_NAME_ALL = "ALL", METHOD_NAME_ALL_LOWERCASE = "all", METHODS, MESSAGE_MATCHER_IS_ALREADY_BUILT = "Can not add a route since the matcher is already built.", UnsupportedPathError;
|
|
926510
926888
|
var init_router = __esm(() => {
|
|
926511
926889
|
METHODS = ["get", "post", "put", "delete", "options", "patch"];
|
|
@@ -926513,11 +926891,11 @@ var init_router = __esm(() => {
|
|
|
926513
926891
|
};
|
|
926514
926892
|
});
|
|
926515
926893
|
|
|
926516
|
-
// node_modules/.bun/hono@4.12.
|
|
926894
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/utils/constants.js
|
|
926517
926895
|
var COMPOSED_HANDLER = "__COMPOSED_HANDLER";
|
|
926518
926896
|
var init_constants33 = () => {};
|
|
926519
926897
|
|
|
926520
|
-
// node_modules/.bun/hono@4.12.
|
|
926898
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/hono-base.js
|
|
926521
926899
|
var notFoundHandler = (c10) => {
|
|
926522
926900
|
return c10.text("404 Not Found", 404);
|
|
926523
926901
|
}, errorHandler = (err3, c10) => {
|
|
@@ -926746,7 +927124,7 @@ var init_hono_base = __esm(() => {
|
|
|
926746
927124
|
init_url2();
|
|
926747
927125
|
});
|
|
926748
927126
|
|
|
926749
|
-
// node_modules/.bun/hono@4.12.
|
|
927127
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/router/reg-exp-router/matcher.js
|
|
926750
927128
|
function match(method, path52) {
|
|
926751
927129
|
const matchers2 = this.buildAllMatchers();
|
|
926752
927130
|
const match2 = (method2, path210) => {
|
|
@@ -926771,7 +927149,7 @@ var init_matcher = __esm(() => {
|
|
|
926771
927149
|
emptyParam = [];
|
|
926772
927150
|
});
|
|
926773
927151
|
|
|
926774
|
-
// node_modules/.bun/hono@4.12.
|
|
927152
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/router/reg-exp-router/node.js
|
|
926775
927153
|
function compareKey(a8, b9) {
|
|
926776
927154
|
if (a8.length === 1) {
|
|
926777
927155
|
return b9.length === 1 ? a8 < b9 ? -1 : 1 : -1;
|
|
@@ -926874,7 +927252,7 @@ var init_node14 = __esm(() => {
|
|
|
926874
927252
|
regExpMetaChars = new Set(".\\+*[^]$()");
|
|
926875
927253
|
});
|
|
926876
927254
|
|
|
926877
|
-
// node_modules/.bun/hono@4.12.
|
|
927255
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/router/reg-exp-router/trie.js
|
|
926878
927256
|
var Trie = class {
|
|
926879
927257
|
#context = { varIndex: 0 };
|
|
926880
927258
|
#root = new Node3;
|
|
@@ -926933,7 +927311,7 @@ var init_trie = __esm(() => {
|
|
|
926933
927311
|
init_node14();
|
|
926934
927312
|
});
|
|
926935
927313
|
|
|
926936
|
-
// node_modules/.bun/hono@4.12.
|
|
927314
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/router/reg-exp-router/router.js
|
|
926937
927315
|
function buildWildcardRegExp(path52) {
|
|
926938
927316
|
return wildcardRegExpCache[path52] ??= new RegExp(path52 === "*" ? "" : `^${path52.replace(/\/\*$|([.\\+*[^\]$()])/g, (_2, metaChar) => metaChar ? `\\${metaChar}` : "(?:|/.*)")}$`);
|
|
926939
927317
|
}
|
|
@@ -927105,7 +927483,7 @@ var init_router2 = __esm(() => {
|
|
|
927105
927483
|
wildcardRegExpCache = /* @__PURE__ */ Object.create(null);
|
|
927106
927484
|
});
|
|
927107
927485
|
|
|
927108
|
-
// node_modules/.bun/hono@4.12.
|
|
927486
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/router/reg-exp-router/prepared-router.js
|
|
927109
927487
|
var PreparedRegExpRouter = class {
|
|
927110
927488
|
name = "PreparedRegExpRouter";
|
|
927111
927489
|
#matchers;
|
|
@@ -927182,13 +927560,13 @@ var init_prepared_router = __esm(() => {
|
|
|
927182
927560
|
init_router2();
|
|
927183
927561
|
});
|
|
927184
927562
|
|
|
927185
|
-
// node_modules/.bun/hono@4.12.
|
|
927563
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/router/reg-exp-router/index.js
|
|
927186
927564
|
var init_reg_exp_router = __esm(() => {
|
|
927187
927565
|
init_router2();
|
|
927188
927566
|
init_prepared_router();
|
|
927189
927567
|
});
|
|
927190
927568
|
|
|
927191
|
-
// node_modules/.bun/hono@4.12.
|
|
927569
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/router/smart-router/router.js
|
|
927192
927570
|
var SmartRouter = class {
|
|
927193
927571
|
name = "SmartRouter";
|
|
927194
927572
|
#routers = [];
|
|
@@ -927246,12 +927624,12 @@ var init_router3 = __esm(() => {
|
|
|
927246
927624
|
init_router();
|
|
927247
927625
|
});
|
|
927248
927626
|
|
|
927249
|
-
// node_modules/.bun/hono@4.12.
|
|
927627
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/router/smart-router/index.js
|
|
927250
927628
|
var init_smart_router = __esm(() => {
|
|
927251
927629
|
init_router3();
|
|
927252
927630
|
});
|
|
927253
927631
|
|
|
927254
|
-
// node_modules/.bun/hono@4.12.
|
|
927632
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/router/trie-router/node.js
|
|
927255
927633
|
var emptyParams, hasChildren = (children2) => {
|
|
927256
927634
|
for (const _2 in children2) {
|
|
927257
927635
|
return true;
|
|
@@ -927423,7 +927801,7 @@ var init_node15 = __esm(() => {
|
|
|
927423
927801
|
emptyParams = /* @__PURE__ */ Object.create(null);
|
|
927424
927802
|
});
|
|
927425
927803
|
|
|
927426
|
-
// node_modules/.bun/hono@4.12.
|
|
927804
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/router/trie-router/router.js
|
|
927427
927805
|
var TrieRouter = class {
|
|
927428
927806
|
name = "TrieRouter";
|
|
927429
927807
|
#node;
|
|
@@ -927449,12 +927827,12 @@ var init_router4 = __esm(() => {
|
|
|
927449
927827
|
init_node15();
|
|
927450
927828
|
});
|
|
927451
927829
|
|
|
927452
|
-
// node_modules/.bun/hono@4.12.
|
|
927830
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/router/trie-router/index.js
|
|
927453
927831
|
var init_trie_router = __esm(() => {
|
|
927454
927832
|
init_router4();
|
|
927455
927833
|
});
|
|
927456
927834
|
|
|
927457
|
-
// node_modules/.bun/hono@4.12.
|
|
927835
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/hono.js
|
|
927458
927836
|
var Hono2;
|
|
927459
927837
|
var init_hono2 = __esm(() => {
|
|
927460
927838
|
init_hono_base();
|
|
@@ -927471,13 +927849,13 @@ var init_hono2 = __esm(() => {
|
|
|
927471
927849
|
};
|
|
927472
927850
|
});
|
|
927473
927851
|
|
|
927474
|
-
// node_modules/.bun/hono@4.12.
|
|
927852
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/index.js
|
|
927475
927853
|
var init_dist15 = __esm(() => {
|
|
927476
927854
|
init_hono2();
|
|
927477
927855
|
init_context6();
|
|
927478
927856
|
});
|
|
927479
927857
|
|
|
927480
|
-
// node_modules/.bun/hono@4.12.
|
|
927858
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/middleware/cors/index.js
|
|
927481
927859
|
var cors = (options) => {
|
|
927482
927860
|
const opts = {
|
|
927483
927861
|
origin: "*",
|
|
@@ -927610,7 +927988,7 @@ function createHealthRoutes(sessionManager) {
|
|
|
927610
927988
|
const uptime2 = process.uptime() * 1000;
|
|
927611
927989
|
return c10.json({
|
|
927612
927990
|
status: "ok",
|
|
927613
|
-
version: "4.2.
|
|
927991
|
+
version: "4.2.6-beta",
|
|
927614
927992
|
uptime_ms: Math.round(uptime2),
|
|
927615
927993
|
active_sessions: sessionManager.getActiveCount()
|
|
927616
927994
|
});
|
|
@@ -927691,7 +928069,7 @@ var init_info2 = __esm(() => {
|
|
|
927691
928069
|
init_builtInAgents();
|
|
927692
928070
|
});
|
|
927693
928071
|
|
|
927694
|
-
// node_modules/.bun/hono@4.12.
|
|
928072
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/utils/stream.js
|
|
927695
928073
|
var StreamingApi = class {
|
|
927696
928074
|
writer;
|
|
927697
928075
|
encoder;
|
|
@@ -927760,7 +928138,7 @@ var StreamingApi = class {
|
|
|
927760
928138
|
};
|
|
927761
928139
|
var init_stream6 = () => {};
|
|
927762
928140
|
|
|
927763
|
-
// node_modules/.bun/hono@4.12.
|
|
928141
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/helper/streaming/utils.js
|
|
927764
928142
|
var isOldBunVersion = () => {
|
|
927765
928143
|
const version9 = typeof Bun !== "undefined" ? Bun.version : undefined;
|
|
927766
928144
|
if (version9 === undefined) {
|
|
@@ -927772,13 +928150,13 @@ var isOldBunVersion = () => {
|
|
|
927772
928150
|
};
|
|
927773
928151
|
var init_utils43 = () => {};
|
|
927774
928152
|
|
|
927775
|
-
// node_modules/.bun/hono@4.12.
|
|
928153
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/helper/streaming/stream.js
|
|
927776
928154
|
var init_stream7 = __esm(() => {
|
|
927777
928155
|
init_stream6();
|
|
927778
928156
|
init_utils43();
|
|
927779
928157
|
});
|
|
927780
928158
|
|
|
927781
|
-
// node_modules/.bun/hono@4.12.
|
|
928159
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/helper/streaming/sse.js
|
|
927782
928160
|
var SSEStreamingApi, run4 = async (stream7, cb, onError) => {
|
|
927783
928161
|
try {
|
|
927784
928162
|
await cb(stream7);
|
|
@@ -927847,13 +928225,13 @@ var init_sse2 = __esm(() => {
|
|
|
927847
928225
|
contextStash = /* @__PURE__ */ new WeakMap;
|
|
927848
928226
|
});
|
|
927849
928227
|
|
|
927850
|
-
// node_modules/.bun/hono@4.12.
|
|
928228
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/helper/streaming/text.js
|
|
927851
928229
|
var init_text = __esm(() => {
|
|
927852
928230
|
init_context6();
|
|
927853
928231
|
init_streaming14();
|
|
927854
928232
|
});
|
|
927855
928233
|
|
|
927856
|
-
// node_modules/.bun/hono@4.12.
|
|
928234
|
+
// node_modules/.bun/hono@4.12.26/node_modules/hono/dist/helper/streaming/index.js
|
|
927857
928235
|
var init_streaming14 = __esm(() => {
|
|
927858
928236
|
init_stream7();
|
|
927859
928237
|
init_sse2();
|
|
@@ -927881,7 +928259,7 @@ function getMacroDefines() {
|
|
|
927881
928259
|
commit = execSync3("git rev-parse --short HEAD", { encoding: "utf-8", cwd: __dirname }).trim();
|
|
927882
928260
|
} catch {}
|
|
927883
928261
|
return {
|
|
927884
|
-
"MACRO.VERSION": JSON.stringify("4.2.
|
|
928262
|
+
"MACRO.VERSION": JSON.stringify("4.2.6-beta"),
|
|
927885
928263
|
"MACRO.BUILD_TIME": JSON.stringify(new Date().toISOString()),
|
|
927886
928264
|
"MACRO.COMMIT": JSON.stringify(commit),
|
|
927887
928265
|
"MACRO.FEEDBACK_CHANNEL": JSON.stringify(""),
|
|
@@ -927917,6 +928295,7 @@ var init_defines = __esm(() => {
|
|
|
927917
928295
|
"ACP",
|
|
927918
928296
|
"WORKFLOW_SCRIPTS",
|
|
927919
928297
|
"HISTORY_SNIP",
|
|
928298
|
+
"REACTIVE_COMPACT",
|
|
927920
928299
|
"MONITOR_TOOL",
|
|
927921
928300
|
"KAIROS",
|
|
927922
928301
|
"BG_SESSIONS",
|
|
@@ -929582,6 +929961,7 @@ function getOrCreate(sessionID) {
|
|
|
929582
929961
|
messageID: randomUUID81(),
|
|
929583
929962
|
parentID: "",
|
|
929584
929963
|
modelID: "",
|
|
929964
|
+
timeCreated: Date.now(),
|
|
929585
929965
|
activeBlocks: new Map,
|
|
929586
929966
|
stepStartPartID: randomUUID81(),
|
|
929587
929967
|
assistantPartEmitted: false,
|
|
@@ -929630,7 +930010,7 @@ function processStreamEvent(sessionID, event) {
|
|
|
929630
930010
|
switch (eventType) {
|
|
929631
930011
|
case "message_start": {
|
|
929632
930012
|
const msg = event.message;
|
|
929633
|
-
state4.messageID = randomUUID81();
|
|
930013
|
+
state4.messageID = event._message_uuid || randomUUID81();
|
|
929634
930014
|
state4.modelID = msg?.model ?? "";
|
|
929635
930015
|
state4.usage = {
|
|
929636
930016
|
inputTokens: 0,
|
|
@@ -929904,7 +930284,7 @@ function processStreamEvent(sessionID, event) {
|
|
|
929904
930284
|
write: state4.usage.cacheWriteTokens
|
|
929905
930285
|
}
|
|
929906
930286
|
},
|
|
929907
|
-
time: { completed: Date.now() },
|
|
930287
|
+
time: { created: state4.timeCreated, completed: Date.now() },
|
|
929908
930288
|
finish: state4.stopReason || "stop"
|
|
929909
930289
|
}
|
|
929910
930290
|
}
|
|
@@ -931173,12 +931553,47 @@ function patchActiveSubagentsInMessages(messages, activeSubagents) {
|
|
|
931173
931553
|
}
|
|
931174
931554
|
}
|
|
931175
931555
|
}
|
|
931176
|
-
function
|
|
931556
|
+
function hasContent(m4) {
|
|
931557
|
+
if (m4.parts && m4.parts.length > 0)
|
|
931558
|
+
return true;
|
|
931559
|
+
if (typeof m4.content === "string" && m4.content.length > 0)
|
|
931560
|
+
return true;
|
|
931561
|
+
if (Array.isArray(m4.content) && m4.content.length > 0)
|
|
931562
|
+
return true;
|
|
931563
|
+
return false;
|
|
931564
|
+
}
|
|
931565
|
+
function dedupeMessages(disk, memory2, sessionID) {
|
|
931177
931566
|
if (disk.length === 0)
|
|
931178
931567
|
return memory2;
|
|
931179
|
-
const
|
|
931180
|
-
const
|
|
931181
|
-
|
|
931568
|
+
const memoryByUuid = new Map;
|
|
931569
|
+
for (const m4 of memory2) {
|
|
931570
|
+
if (!m4.uuid)
|
|
931571
|
+
continue;
|
|
931572
|
+
const existing = memoryByUuid.get(m4.uuid);
|
|
931573
|
+
if (!existing || hasContent(m4)) {
|
|
931574
|
+
memoryByUuid.set(m4.uuid, m4);
|
|
931575
|
+
}
|
|
931576
|
+
}
|
|
931577
|
+
const merged = [];
|
|
931578
|
+
const seen = new Set;
|
|
931579
|
+
for (const d7 of disk) {
|
|
931580
|
+
if (!d7.uuid)
|
|
931581
|
+
continue;
|
|
931582
|
+
const mem = memoryByUuid.get(d7.uuid);
|
|
931583
|
+
if (mem && hasContent(mem) && !hasContent(d7)) {
|
|
931584
|
+
merged.push(mem);
|
|
931585
|
+
} else {
|
|
931586
|
+
merged.push(d7);
|
|
931587
|
+
}
|
|
931588
|
+
seen.add(d7.uuid);
|
|
931589
|
+
}
|
|
931590
|
+
for (const [uuid9, m4] of memoryByUuid) {
|
|
931591
|
+
if (!seen.has(uuid9)) {
|
|
931592
|
+
merged.push(m4);
|
|
931593
|
+
seen.add(uuid9);
|
|
931594
|
+
}
|
|
931595
|
+
}
|
|
931596
|
+
return merged;
|
|
931182
931597
|
}
|
|
931183
931598
|
function createMessageRoutes(sessionManager) {
|
|
931184
931599
|
return new Hono2().get("/session/:sessionID/message", async (c10) => {
|
|
@@ -931197,7 +931612,7 @@ function createMessageRoutes(sessionManager) {
|
|
|
931197
931612
|
before,
|
|
931198
931613
|
includeSystem
|
|
931199
931614
|
});
|
|
931200
|
-
const messages = handle && handle.messageBuffer.length > 0 ? dedupeMessages(diskMessages, [...handle.messageBuffer]) : diskMessages;
|
|
931615
|
+
const messages = handle && handle.messageBuffer.length > 0 ? dedupeMessages(diskMessages, [...handle.messageBuffer], id) : diskMessages;
|
|
931201
931616
|
const tombstoned = handle?.tombstonedUuids;
|
|
931202
931617
|
const filtered = tombstoned && tombstoned.size > 0 ? messages.filter((m4) => !tombstoned.has(m4.uuid)) : messages;
|
|
931203
931618
|
const decomposed = filtered.map(decomposeMessageToParts);
|
|
@@ -933656,7 +934071,7 @@ __export(exports_update, {
|
|
|
933656
934071
|
});
|
|
933657
934072
|
async function update() {
|
|
933658
934073
|
logEvent("tengu_update_check", {});
|
|
933659
|
-
writeToStdout(`${t("cli.update.currentVersion", "Current version")}: ${"4.2.
|
|
934074
|
+
writeToStdout(`${t("cli.update.currentVersion", "Current version")}: ${"4.2.6-beta"}
|
|
933660
934075
|
`);
|
|
933661
934076
|
const channel5 = getInitialSettings()?.autoUpdatesChannel ?? "latest";
|
|
933662
934077
|
writeToStdout(`${t("cli.update.checkingUpdates", { channel: channel5 }, "Checking for updates to {channel} version...")}
|
|
@@ -933731,14 +934146,14 @@ async function update() {
|
|
|
933731
934146
|
writeToStdout(`${t("cli.update.managedByHomebrew", "CoStrict is managed by Homebrew.")}
|
|
933732
934147
|
`);
|
|
933733
934148
|
const latest = await getLatestVersion(channel5);
|
|
933734
|
-
if (latest && !gte2("4.2.
|
|
933735
|
-
writeToStdout(`${t("cli.update.updateAvailable", { current: "4.2.
|
|
934149
|
+
if (latest && !gte2("4.2.6-beta", latest)) {
|
|
934150
|
+
writeToStdout(`${t("cli.update.updateAvailable", { current: "4.2.6-beta", latest }, "Update available: {current} \u2192 {latest}")}
|
|
933736
934151
|
`);
|
|
933737
934152
|
writeToStdout(`
|
|
933738
934153
|
`);
|
|
933739
934154
|
writeToStdout(`${t("cli.update.toUpdateRun", "To update, run:")}
|
|
933740
934155
|
`);
|
|
933741
|
-
writeToStdout(source_default.bold(" brew upgrade
|
|
934156
|
+
writeToStdout(source_default.bold(" brew upgrade csc") + `
|
|
933742
934157
|
`);
|
|
933743
934158
|
} else {
|
|
933744
934159
|
writeToStdout(`${t("cli.update.upToDate", "CoStrict is up to date!")}
|
|
@@ -933748,8 +934163,8 @@ async function update() {
|
|
|
933748
934163
|
writeToStdout(`${t("cli.update.managedByWinget", "CoStrict is managed by winget.")}
|
|
933749
934164
|
`);
|
|
933750
934165
|
const latest = await getLatestVersion(channel5);
|
|
933751
|
-
if (latest && !gte2("4.2.
|
|
933752
|
-
writeToStdout(`${t("cli.update.updateAvailable", { current: "4.2.
|
|
934166
|
+
if (latest && !gte2("4.2.6-beta", latest)) {
|
|
934167
|
+
writeToStdout(`${t("cli.update.updateAvailable", { current: "4.2.6-beta", latest }, "Update available: {current} \u2192 {latest}")}
|
|
933753
934168
|
`);
|
|
933754
934169
|
writeToStdout(`
|
|
933755
934170
|
`);
|
|
@@ -933765,14 +934180,14 @@ async function update() {
|
|
|
933765
934180
|
writeToStdout(`${t("cli.update.managedByApk", "CoStrict is managed by apk.")}
|
|
933766
934181
|
`);
|
|
933767
934182
|
const latest = await getLatestVersion(channel5);
|
|
933768
|
-
if (latest && !gte2("4.2.
|
|
933769
|
-
writeToStdout(`${t("cli.update.updateAvailable", { current: "4.2.
|
|
934183
|
+
if (latest && !gte2("4.2.6-beta", latest)) {
|
|
934184
|
+
writeToStdout(`${t("cli.update.updateAvailable", { current: "4.2.6-beta", latest }, "Update available: {current} \u2192 {latest}")}
|
|
933770
934185
|
`);
|
|
933771
934186
|
writeToStdout(`
|
|
933772
934187
|
`);
|
|
933773
934188
|
writeToStdout(`${t("cli.update.toUpdateRun", "To update, run:")}
|
|
933774
934189
|
`);
|
|
933775
|
-
writeToStdout(source_default.bold(" apk upgrade
|
|
934190
|
+
writeToStdout(source_default.bold(" apk upgrade csc") + `
|
|
933776
934191
|
`);
|
|
933777
934192
|
} else {
|
|
933778
934193
|
writeToStdout(`${t("cli.update.upToDate", "CoStrict is up to date!")}
|
|
@@ -933831,11 +934246,11 @@ async function update() {
|
|
|
933831
934246
|
`);
|
|
933832
934247
|
await gracefulShutdown(1);
|
|
933833
934248
|
}
|
|
933834
|
-
if (result2.latestVersion === "4.2.
|
|
933835
|
-
writeToStdout(source_default.green(t("cli.update.upToDateVersion", { version: "4.2.
|
|
934249
|
+
if (result2.latestVersion === "4.2.6-beta") {
|
|
934250
|
+
writeToStdout(source_default.green(t("cli.update.upToDateVersion", { version: "4.2.6-beta" }, "CoStrict is up to date ({version})")) + `
|
|
933836
934251
|
`);
|
|
933837
934252
|
} else {
|
|
933838
|
-
writeToStdout(source_default.green(t("cli.update.successfullyUpdated", { from: "4.2.
|
|
934253
|
+
writeToStdout(source_default.green(t("cli.update.successfullyUpdated", { from: "4.2.6-beta", to: String(result2.latestVersion) }, "Successfully updated from {from} to version {to}")) + `
|
|
933839
934254
|
`);
|
|
933840
934255
|
regenerateCompletionCache();
|
|
933841
934256
|
}
|
|
@@ -933895,12 +934310,12 @@ async function update() {
|
|
|
933895
934310
|
`);
|
|
933896
934311
|
await gracefulShutdown(1);
|
|
933897
934312
|
}
|
|
933898
|
-
if (latestVersion === "4.2.
|
|
933899
|
-
writeToStdout(source_default.green(t("cli.update.upToDateVersion", { version: "4.2.
|
|
934313
|
+
if (latestVersion === "4.2.6-beta") {
|
|
934314
|
+
writeToStdout(source_default.green(t("cli.update.upToDateVersion", { version: "4.2.6-beta" }, "CoStrict is up to date ({version})")) + `
|
|
933900
934315
|
`);
|
|
933901
934316
|
await gracefulShutdown(0);
|
|
933902
934317
|
}
|
|
933903
|
-
writeToStdout(`${t("cli.update.newVersionAvailable", { latest: String(latestVersion), current: "4.2.
|
|
934318
|
+
writeToStdout(`${t("cli.update.newVersionAvailable", { latest: String(latestVersion), current: "4.2.6-beta" }, "New version available: {latest} (current: {current})")}
|
|
933904
934319
|
`);
|
|
933905
934320
|
writeToStdout(`${t("cli.update.installing", "Installing update...")}
|
|
933906
934321
|
`);
|
|
@@ -933945,7 +934360,7 @@ async function update() {
|
|
|
933945
934360
|
logForDebugging(`update: Installation status: ${result.status}`);
|
|
933946
934361
|
switch (result.status) {
|
|
933947
934362
|
case "success":
|
|
933948
|
-
writeToStdout(source_default.green(t("cli.update.successfullyUpdated", { from: "4.2.
|
|
934363
|
+
writeToStdout(source_default.green(t("cli.update.successfullyUpdated", { from: "4.2.6-beta", to: String(latestVersion) }, "Successfully updated from {from} to version {to}")) + `
|
|
933949
934364
|
`);
|
|
933950
934365
|
regenerateCompletionCache();
|
|
933951
934366
|
break;
|
|
@@ -936159,7 +936574,7 @@ ${assistantAddendum}` : assistantAddendum;
|
|
|
936159
936574
|
}
|
|
936160
936575
|
}
|
|
936161
936576
|
logForDiagnosticsNoPII("info", "started", {
|
|
936162
|
-
version: "4.2.
|
|
936577
|
+
version: "4.2.6-beta",
|
|
936163
936578
|
is_native_binary: isInBundledMode()
|
|
936164
936579
|
});
|
|
936165
936580
|
registerCleanup(async () => {
|
|
@@ -936640,7 +937055,7 @@ Session: ${directConnectConfig.sessionId}`, "info");
|
|
|
936640
937055
|
sshSession = await createSSHSession2({
|
|
936641
937056
|
host: _pendingSSH.host,
|
|
936642
937057
|
cwd: _pendingSSH.cwd,
|
|
936643
|
-
localVersion: "4.2.
|
|
937058
|
+
localVersion: "4.2.6-beta",
|
|
936644
937059
|
permissionMode: _pendingSSH.permissionMode,
|
|
936645
937060
|
dangerouslySkipPermissions: _pendingSSH.dangerouslySkipPermissions,
|
|
936646
937061
|
extraCliArgs: _pendingSSH.extraCliArgs,
|
|
@@ -937112,7 +937527,7 @@ Usage: csc --remote "your task description"`, () => gracefulShutdown(1));
|
|
|
937112
937527
|
pendingHookMessages
|
|
937113
937528
|
}, renderAndRun);
|
|
937114
937529
|
}
|
|
937115
|
-
}).version("4.2.
|
|
937530
|
+
}).version("4.2.6-beta (CoStrict)", "-v, --version", cliDesc("cli.option.version", "Output the version number"));
|
|
937116
937531
|
program2.addOption(new Option("-w, --worktree [name]", cliDesc("cli.option.worktree", "Create a new git worktree for this session (optionally specify a name)")).hideHelp());
|
|
937117
937532
|
program2.addOption(new Option("--tmux", cliDesc("cli.option.tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.")).hideHelp());
|
|
937118
937533
|
if (canUserConfigureAdvisor()) {
|
|
@@ -937827,10 +938242,10 @@ if (process.env.CLAUDE_CODE_REMOTE === "true") {
|
|
|
937827
938242
|
async function main2() {
|
|
937828
938243
|
const args = process.argv.slice(2);
|
|
937829
938244
|
if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
|
|
937830
|
-
const d7 = new Date("2026-06-
|
|
938245
|
+
const d7 = new Date("2026-06-22T11:00:03.039Z");
|
|
937831
938246
|
const p2 = (n3) => String(n3).padStart(2, "0");
|
|
937832
938247
|
const buildTime = `${d7.getFullYear()}/${p2(d7.getMonth() + 1)}/${p2(d7.getDate())} ${p2(d7.getHours())}:${p2(d7.getMinutes())}:${p2(d7.getSeconds())}`;
|
|
937833
|
-
console.log(`${"4.2.
|
|
938248
|
+
console.log(`${"4.2.6-beta"} (commit: ${"45c31bd51"}, built: ${buildTime})`);
|
|
937834
938249
|
return;
|
|
937835
938250
|
}
|
|
937836
938251
|
const { profileCheckpoint: profileCheckpoint2 } = await Promise.resolve().then(() => (init_startupProfiler(), exports_startupProfiler));
|
|
@@ -937870,7 +938285,7 @@ async function main2() {
|
|
|
937870
938285
|
registerPermissionHandler(server2, handler) {
|
|
937871
938286
|
server2.setNotificationHandler(ChannelPermissionRequestNotificationSchema2(), async (notification) => handler(notification.params));
|
|
937872
938287
|
}
|
|
937873
|
-
}, "4.2.
|
|
938288
|
+
}, "4.2.6-beta");
|
|
937874
938289
|
return;
|
|
937875
938290
|
}
|
|
937876
938291
|
if (args[0] === "--daemon-worker" || args[0]?.startsWith("--daemon-worker=")) {
|
|
@@ -937968,5 +938383,5 @@ async function main2() {
|
|
|
937968
938383
|
}
|
|
937969
938384
|
main2();
|
|
937970
938385
|
|
|
937971
|
-
//# debugId=
|
|
938386
|
+
//# debugId=8AD428C6B9E3C1E064756E2164756E21
|
|
937972
938387
|
//# sourceMappingURL=cli.js.map
|