patchwork-os 0.2.0-alpha.33 → 0.2.0-alpha.35

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.
Files changed (270) hide show
  1. package/README.md +248 -48
  2. package/deploy/bootstrap-new-vps.sh +12 -12
  3. package/deploy/bootstrap-vps.sh +6 -3
  4. package/deploy/deploy-landing.sh +59 -2
  5. package/dist/bridge.js +35 -1
  6. package/dist/bridge.js.map +1 -1
  7. package/dist/commands/recipe.d.ts +11 -0
  8. package/dist/commands/recipe.js +32 -3
  9. package/dist/commands/recipe.js.map +1 -1
  10. package/dist/commands/recipeInstall.d.ts +79 -1
  11. package/dist/commands/recipeInstall.js +241 -13
  12. package/dist/commands/recipeInstall.js.map +1 -1
  13. package/dist/connectors/asana.d.ts +198 -0
  14. package/dist/connectors/asana.js +680 -0
  15. package/dist/connectors/asana.js.map +1 -0
  16. package/dist/connectors/baseConnector.d.ts +16 -0
  17. package/dist/connectors/baseConnector.js +107 -25
  18. package/dist/connectors/baseConnector.js.map +1 -1
  19. package/dist/connectors/discord.d.ts +150 -0
  20. package/dist/connectors/discord.js +544 -0
  21. package/dist/connectors/discord.js.map +1 -0
  22. package/dist/connectors/github.js +15 -7
  23. package/dist/connectors/github.js.map +1 -1
  24. package/dist/connectors/gitlab.d.ts +180 -0
  25. package/dist/connectors/gitlab.js +582 -0
  26. package/dist/connectors/gitlab.js.map +1 -0
  27. package/dist/connectors/gmail.js +45 -0
  28. package/dist/connectors/gmail.js.map +1 -1
  29. package/dist/connectors/googleDrive.d.ts +34 -0
  30. package/dist/connectors/googleDrive.js +305 -0
  31. package/dist/connectors/googleDrive.js.map +1 -0
  32. package/dist/connectors/htmlEscape.d.ts +5 -0
  33. package/dist/connectors/htmlEscape.js +13 -0
  34. package/dist/connectors/htmlEscape.js.map +1 -0
  35. package/dist/connectors/linear.js +26 -6
  36. package/dist/connectors/linear.js.map +1 -1
  37. package/dist/connectors/mcpOAuth.d.ts +2 -0
  38. package/dist/connectors/mcpOAuth.js +8 -4
  39. package/dist/connectors/mcpOAuth.js.map +1 -1
  40. package/dist/connectors/pagerduty.d.ts +160 -0
  41. package/dist/connectors/pagerduty.js +464 -0
  42. package/dist/connectors/pagerduty.js.map +1 -0
  43. package/dist/connectors/sentry.js +3 -2
  44. package/dist/connectors/sentry.js.map +1 -1
  45. package/dist/connectors/slack.d.ts +1 -1
  46. package/dist/connectors/slack.js +7 -4
  47. package/dist/connectors/slack.js.map +1 -1
  48. package/dist/featureFlags.d.ts +17 -11
  49. package/dist/featureFlags.js +52 -47
  50. package/dist/featureFlags.js.map +1 -1
  51. package/dist/index.js +262 -129
  52. package/dist/index.js.map +1 -1
  53. package/dist/oauth.js +3 -2
  54. package/dist/oauth.js.map +1 -1
  55. package/dist/recipeOrchestration.d.ts +7 -0
  56. package/dist/recipeOrchestration.js +154 -28
  57. package/dist/recipeOrchestration.js.map +1 -1
  58. package/dist/recipes/agentExecutor.d.ts +1 -0
  59. package/dist/recipes/agentExecutor.js +7 -0
  60. package/dist/recipes/agentExecutor.js.map +1 -1
  61. package/dist/recipes/captureForRunlog.d.ts +27 -0
  62. package/dist/recipes/captureForRunlog.js +128 -0
  63. package/dist/recipes/captureForRunlog.js.map +1 -0
  64. package/dist/recipes/chainedRunner.d.ts +39 -3
  65. package/dist/recipes/chainedRunner.js +183 -28
  66. package/dist/recipes/chainedRunner.js.map +1 -1
  67. package/dist/recipes/detectSilentFail.d.ts +34 -0
  68. package/dist/recipes/detectSilentFail.js +105 -0
  69. package/dist/recipes/detectSilentFail.js.map +1 -0
  70. package/dist/recipes/legacyRecipeCompat.d.ts +8 -0
  71. package/dist/recipes/legacyRecipeCompat.js +20 -1
  72. package/dist/recipes/legacyRecipeCompat.js.map +1 -1
  73. package/dist/recipes/manifest.js +21 -6
  74. package/dist/recipes/manifest.js.map +1 -1
  75. package/dist/recipes/migrations/index.d.ts +24 -0
  76. package/dist/recipes/migrations/index.js +55 -0
  77. package/dist/recipes/migrations/index.js.map +1 -0
  78. package/dist/recipes/migrations/types.d.ts +28 -0
  79. package/dist/recipes/migrations/types.js +2 -0
  80. package/dist/recipes/migrations/types.js.map +1 -0
  81. package/dist/recipes/migrations/v1.d.ts +11 -0
  82. package/dist/recipes/migrations/v1.js +18 -0
  83. package/dist/recipes/migrations/v1.js.map +1 -0
  84. package/dist/recipes/replayRun.d.ts +62 -0
  85. package/dist/recipes/replayRun.js +97 -0
  86. package/dist/recipes/replayRun.js.map +1 -0
  87. package/dist/recipes/scheduler.js +102 -11
  88. package/dist/recipes/scheduler.js.map +1 -1
  89. package/dist/recipes/schemaGenerator.js +3 -3
  90. package/dist/recipes/schemaGenerator.js.map +1 -1
  91. package/dist/recipes/templateEngine.js +8 -1
  92. package/dist/recipes/templateEngine.js.map +1 -1
  93. package/dist/recipes/toolRegistry.d.ts +5 -0
  94. package/dist/recipes/toolRegistry.js +9 -0
  95. package/dist/recipes/toolRegistry.js.map +1 -1
  96. package/dist/recipes/tools/asana.d.ts +16 -0
  97. package/dist/recipes/tools/asana.js +524 -0
  98. package/dist/recipes/tools/asana.js.map +1 -0
  99. package/dist/recipes/tools/discord.d.ts +18 -0
  100. package/dist/recipes/tools/discord.js +254 -0
  101. package/dist/recipes/tools/discord.js.map +1 -0
  102. package/dist/recipes/tools/github.js +29 -4
  103. package/dist/recipes/tools/github.js.map +1 -1
  104. package/dist/recipes/tools/gitlab.d.ts +11 -0
  105. package/dist/recipes/tools/gitlab.js +285 -0
  106. package/dist/recipes/tools/gitlab.js.map +1 -0
  107. package/dist/recipes/tools/gmail.d.ts +1 -1
  108. package/dist/recipes/tools/gmail.js +230 -6
  109. package/dist/recipes/tools/gmail.js.map +1 -1
  110. package/dist/recipes/tools/googleDrive.d.ts +1 -0
  111. package/dist/recipes/tools/googleDrive.js +55 -0
  112. package/dist/recipes/tools/googleDrive.js.map +1 -0
  113. package/dist/recipes/tools/index.d.ts +6 -0
  114. package/dist/recipes/tools/index.js +6 -0
  115. package/dist/recipes/tools/index.js.map +1 -1
  116. package/dist/recipes/tools/linear.d.ts +2 -1
  117. package/dist/recipes/tools/linear.js +222 -1
  118. package/dist/recipes/tools/linear.js.map +1 -1
  119. package/dist/recipes/tools/meetingNotes.d.ts +21 -0
  120. package/dist/recipes/tools/meetingNotes.js +701 -0
  121. package/dist/recipes/tools/meetingNotes.js.map +1 -0
  122. package/dist/recipes/tools/pagerduty.d.ts +15 -0
  123. package/dist/recipes/tools/pagerduty.js +451 -0
  124. package/dist/recipes/tools/pagerduty.js.map +1 -0
  125. package/dist/recipes/tools/slack.js +8 -2
  126. package/dist/recipes/tools/slack.js.map +1 -1
  127. package/dist/recipes/validation.js +54 -15
  128. package/dist/recipes/validation.js.map +1 -1
  129. package/dist/recipes/yamlRunner.d.ts +23 -2
  130. package/dist/recipes/yamlRunner.js +265 -60
  131. package/dist/recipes/yamlRunner.js.map +1 -1
  132. package/dist/recipesHttp.d.ts +60 -0
  133. package/dist/recipesHttp.js +418 -3
  134. package/dist/recipesHttp.js.map +1 -1
  135. package/dist/runLog.d.ts +64 -2
  136. package/dist/runLog.js +116 -2
  137. package/dist/runLog.js.map +1 -1
  138. package/dist/server.d.ts +21 -0
  139. package/dist/server.js +387 -8
  140. package/dist/server.js.map +1 -1
  141. package/dist/streamableHttp.d.ts +31 -1
  142. package/dist/streamableHttp.js +20 -2
  143. package/dist/streamableHttp.js.map +1 -1
  144. package/dist/tools/activityLog.d.ts +2 -0
  145. package/dist/tools/addLinearComment.d.ts +1 -0
  146. package/dist/tools/batchLsp.d.ts +3 -0
  147. package/dist/tools/bridgeDoctor.d.ts +1 -0
  148. package/dist/tools/bridgeStatus.d.ts +1 -0
  149. package/dist/tools/cancelClaudeTask.d.ts +1 -0
  150. package/dist/tools/checkDocumentDirty.d.ts +1 -0
  151. package/dist/tools/clipboard.d.ts +2 -0
  152. package/dist/tools/closeTabs.d.ts +2 -0
  153. package/dist/tools/codeLens.d.ts +1 -0
  154. package/dist/tools/contextBundle.d.ts +1 -0
  155. package/dist/tools/createIssueFromAIComment.d.ts +1 -0
  156. package/dist/tools/createLinearIssue.d.ts +1 -0
  157. package/dist/tools/ctxGetTaskContext.d.ts +1 -0
  158. package/dist/tools/ctxQueryTraces.d.ts +1 -0
  159. package/dist/tools/ctxSaveTrace.d.ts +1 -0
  160. package/dist/tools/debug.d.ts +4 -0
  161. package/dist/tools/decorations.d.ts +2 -0
  162. package/dist/tools/documentLinks.d.ts +1 -0
  163. package/dist/tools/editText.d.ts +1 -0
  164. package/dist/tools/enrichCommit.d.ts +1 -0
  165. package/dist/tools/enrichStackTrace.d.ts +1 -0
  166. package/dist/tools/explainDiagnostic.d.ts +1 -0
  167. package/dist/tools/explainSymbol.d.ts +1 -0
  168. package/dist/tools/fetchCalendarEvents.d.ts +1 -0
  169. package/dist/tools/fetchGithubIssue.d.ts +1 -0
  170. package/dist/tools/fetchGithubPR.d.ts +1 -0
  171. package/dist/tools/fetchLinearIssue.d.ts +1 -0
  172. package/dist/tools/fetchSentryIssue.d.ts +1 -0
  173. package/dist/tools/fetchSlackProfile.d.ts +1 -0
  174. package/dist/tools/fileOperations.d.ts +3 -0
  175. package/dist/tools/fileWatcher.d.ts +2 -0
  176. package/dist/tools/findFiles.d.ts +1 -0
  177. package/dist/tools/findRelatedTests.d.ts +1 -0
  178. package/dist/tools/fixAllLintErrors.d.ts +1 -0
  179. package/dist/tools/foldingRanges.d.ts +1 -0
  180. package/dist/tools/formatDocument.d.ts +1 -0
  181. package/dist/tools/generateTests.d.ts +1 -0
  182. package/dist/tools/getAIComments.d.ts +1 -0
  183. package/dist/tools/getAnalyticsReport.d.ts +1 -0
  184. package/dist/tools/getArchitectureContext.d.ts +1 -0
  185. package/dist/tools/getBufferContent.d.ts +1 -0
  186. package/dist/tools/getChangeImpact.d.ts +1 -0
  187. package/dist/tools/getClaudeTaskStatus.d.ts +1 -0
  188. package/dist/tools/getCodeCoverage.d.ts +1 -0
  189. package/dist/tools/getCommitsForIssue.d.ts +1 -0
  190. package/dist/tools/getConnectorStatus.d.ts +1 -0
  191. package/dist/tools/getCurrentSelection.d.ts +2 -0
  192. package/dist/tools/getDebugState.d.ts +1 -0
  193. package/dist/tools/getDependencyTree.d.ts +1 -0
  194. package/dist/tools/getDiagnostics.d.ts +1 -0
  195. package/dist/tools/getDiffFromHandoff.d.ts +1 -0
  196. package/dist/tools/getDocumentSymbols.d.ts +1 -0
  197. package/dist/tools/getFileTree.d.ts +1 -0
  198. package/dist/tools/getGitDiff.d.ts +1 -0
  199. package/dist/tools/getGitHotspots.d.ts +1 -0
  200. package/dist/tools/getGitLog.d.ts +1 -0
  201. package/dist/tools/getGitStatus.d.ts +1 -0
  202. package/dist/tools/getImportTree.d.ts +1 -0
  203. package/dist/tools/getImportedSignatures.d.ts +1 -0
  204. package/dist/tools/getOpenEditors.d.ts +1 -0
  205. package/dist/tools/getPRTemplate.d.ts +1 -0
  206. package/dist/tools/getProjectContext.d.ts +1 -0
  207. package/dist/tools/getProjectInfo.d.ts +1 -0
  208. package/dist/tools/getSecurityAdvisories.d.ts +1 -0
  209. package/dist/tools/getSessionUsage.d.ts +1 -0
  210. package/dist/tools/getSymbolHistory.d.ts +1 -0
  211. package/dist/tools/getToolCapabilities.d.ts +1 -0
  212. package/dist/tools/getTypeSignature.d.ts +1 -0
  213. package/dist/tools/getWorkspaceFolders.d.ts +1 -0
  214. package/dist/tools/getWorkspaceSettings.d.ts +1 -0
  215. package/dist/tools/gitHistory.d.ts +2 -0
  216. package/dist/tools/gitWrite.d.ts +11 -0
  217. package/dist/tools/github/actions.d.ts +2 -0
  218. package/dist/tools/github/composite.d.ts +3 -0
  219. package/dist/tools/github/issues.d.ts +4 -0
  220. package/dist/tools/github/pr.d.ts +7 -0
  221. package/dist/tools/handoffNote.d.ts +2 -0
  222. package/dist/tools/hoverAtCursor.d.ts +1 -0
  223. package/dist/tools/httpClient.d.ts +2 -0
  224. package/dist/tools/inlayHints.d.ts +1 -0
  225. package/dist/tools/launchQuickTask.d.ts +1 -0
  226. package/dist/tools/listClaudeTasks.d.ts +1 -0
  227. package/dist/tools/listTerminals.d.ts +1 -0
  228. package/dist/tools/lsp.d.ts +14 -0
  229. package/dist/tools/navigateToSymbolByName.d.ts +1 -0
  230. package/dist/tools/openDiff.d.ts +1 -0
  231. package/dist/tools/openFile.d.ts +1 -0
  232. package/dist/tools/openInBrowser.d.ts +1 -0
  233. package/dist/tools/organizeImports.d.ts +1 -0
  234. package/dist/tools/performanceReport.d.ts +1 -0
  235. package/dist/tools/planPersistence.d.ts +5 -0
  236. package/dist/tools/previewEdit.d.ts +1 -0
  237. package/dist/tools/refactorAnalyze.d.ts +1 -0
  238. package/dist/tools/refactorPreview.d.ts +1 -0
  239. package/dist/tools/replaceBlock.d.ts +1 -0
  240. package/dist/tools/resumeClaudeTask.d.ts +1 -0
  241. package/dist/tools/runClaudeTask.d.ts +1 -0
  242. package/dist/tools/runCommand.d.ts +1 -0
  243. package/dist/tools/runTests.d.ts +1 -0
  244. package/dist/tools/saveDocument.d.ts +1 -0
  245. package/dist/tools/screenshotAndAnnotate.d.ts +1 -0
  246. package/dist/tools/searchAndReplace.d.ts +1 -0
  247. package/dist/tools/searchTools.d.ts +1 -0
  248. package/dist/tools/searchWorkspace.d.ts +1 -0
  249. package/dist/tools/selectionRanges.d.ts +1 -0
  250. package/dist/tools/semanticTokens.d.ts +1 -0
  251. package/dist/tools/setActiveWorkspaceFolder.d.ts +1 -0
  252. package/dist/tools/signatureHelp.d.ts +1 -0
  253. package/dist/tools/slackListChannels.d.ts +1 -0
  254. package/dist/tools/slackPostMessage.d.ts +1 -0
  255. package/dist/tools/slackPostMessage.js +1 -1
  256. package/dist/tools/slackPostMessage.js.map +1 -1
  257. package/dist/tools/terminal.d.ts +6 -0
  258. package/dist/tools/testTraceToSource.d.ts +1 -0
  259. package/dist/tools/transaction.d.ts +4 -0
  260. package/dist/tools/typeHierarchy.d.ts +1 -0
  261. package/dist/tools/updateLinearIssue.d.ts +1 -0
  262. package/dist/tools/utils.d.ts +2 -0
  263. package/dist/tools/utils.js.map +1 -1
  264. package/dist/tools/vscodeCommands.d.ts +2 -0
  265. package/dist/tools/vscodeTasks.d.ts +2 -0
  266. package/dist/tools/workspaceSettings.d.ts +1 -0
  267. package/package.json +20 -4
  268. package/templates/recipes/project-health-check.yaml +1 -1
  269. package/dist/schemas/dry-run-plan.v1.json +0 -139
  270. package/dist/schemas/recipe.v1.json +0 -684
@@ -104,5 +104,6 @@ export declare function createGetDiagnosticsTool(workspace: string, probes?: Pro
104
104
  _meta?: Record<string, unknown>;
105
105
  }>;
106
106
  structuredContent: unknown;
107
+ isError?: undefined;
107
108
  }>;
108
109
  };
@@ -85,5 +85,6 @@ export declare function createGetDiffFromHandoffTool(workspace: string, extensio
85
85
  text: string;
86
86
  }>;
87
87
  structuredContent: unknown;
88
+ isError?: undefined;
88
89
  }>;
89
90
  };
@@ -64,6 +64,7 @@ export declare function createGetDocumentSymbolsTool(workspace: string, extensio
64
64
  text: string;
65
65
  }>;
66
66
  structuredContent: unknown;
67
+ isError?: undefined;
67
68
  } | {
68
69
  content: Array<{
69
70
  type: string;
@@ -62,5 +62,6 @@ export declare function createGetFileTreeTool(workspace: string, probes: ProbeRe
62
62
  _meta?: Record<string, unknown>;
63
63
  }>;
64
64
  structuredContent: unknown;
65
+ isError?: undefined;
65
66
  }>;
66
67
  };
@@ -46,5 +46,6 @@ export declare function createGetGitDiffTool(workspace: string): {
46
46
  _meta?: Record<string, unknown>;
47
47
  }>;
48
48
  structuredContent: unknown;
49
+ isError?: undefined;
49
50
  }>;
50
51
  };
@@ -78,6 +78,7 @@ export declare function createGetGitHotspotsTool(workspace: string): {
78
78
  _meta?: Record<string, unknown>;
79
79
  }>;
80
80
  structuredContent: unknown;
81
+ isError?: undefined;
81
82
  } | {
82
83
  content: Array<{
83
84
  type: string;
@@ -58,5 +58,6 @@ export declare function createGetGitLogTool(workspace: string): {
58
58
  _meta?: Record<string, unknown>;
59
59
  }>;
60
60
  structuredContent: unknown;
61
+ isError?: undefined;
61
62
  }>;
62
63
  };
@@ -68,5 +68,6 @@ export declare function createGetGitStatusTool(workspace: string): {
68
68
  text: string;
69
69
  }>;
70
70
  structuredContent: unknown;
71
+ isError?: undefined;
71
72
  }>;
72
73
  };
@@ -69,5 +69,6 @@ export declare function createGetImportTreeTool(workspace: string): {
69
69
  _meta?: Record<string, unknown>;
70
70
  }>;
71
71
  structuredContent: unknown;
72
+ isError?: undefined;
72
73
  }>;
73
74
  };
@@ -52,6 +52,7 @@ export declare function createGetImportedSignaturesTool(workspace: string, exten
52
52
  text: string;
53
53
  }>;
54
54
  structuredContent: unknown;
55
+ isError?: undefined;
55
56
  } | {
56
57
  content: Array<{
57
58
  type: string;
@@ -58,5 +58,6 @@ export declare function createGetOpenEditorsTool(openedFiles: Set<string>, exten
58
58
  text: string;
59
59
  }>;
60
60
  structuredContent: unknown;
61
+ isError?: undefined;
61
62
  }>;
62
63
  };
@@ -58,6 +58,7 @@ export declare function createGetPRTemplateTool(workspace: string): {
58
58
  text: string;
59
59
  }>;
60
60
  structuredContent: unknown;
61
+ isError?: undefined;
61
62
  } | {
62
63
  content: Array<{
63
64
  type: string;
@@ -110,5 +110,6 @@ export declare function createGetProjectContextTool(workspace: string, extension
110
110
  text: string;
111
111
  }>;
112
112
  structuredContent: unknown;
113
+ isError?: undefined;
113
114
  }>;
114
115
  };
@@ -47,5 +47,6 @@ export declare function createGetProjectInfoTool(workspace: string): {
47
47
  text: string;
48
48
  }>;
49
49
  structuredContent: unknown;
50
+ isError?: undefined;
50
51
  }>;
51
52
  };
@@ -101,5 +101,6 @@ export declare function createGetSecurityAdvisoriesTool(workspace: string, _prob
101
101
  _meta?: Record<string, unknown>;
102
102
  }>;
103
103
  structuredContent: unknown;
104
+ isError?: undefined;
104
105
  }>;
105
106
  };
@@ -54,5 +54,6 @@ export declare function createGetSessionUsageTool(transport: McpTransport): {
54
54
  text: string;
55
55
  }>;
56
56
  structuredContent: unknown;
57
+ isError?: undefined;
57
58
  }>;
58
59
  };
@@ -147,6 +147,7 @@ export declare function createGetSymbolHistoryTool(workspace: string, extensionC
147
147
  text: string;
148
148
  }>;
149
149
  structuredContent: unknown;
150
+ isError?: undefined;
150
151
  } | {
151
152
  content: Array<{
152
153
  type: string;
@@ -65,5 +65,6 @@ export declare function createGetToolCapabilitiesTool(probes: ProbeResults, exte
65
65
  text: string;
66
66
  }>;
67
67
  structuredContent: unknown;
68
+ isError?: undefined;
68
69
  }>;
69
70
  };
@@ -60,6 +60,7 @@ export declare function createGetTypeSignatureTool(extensionClient: ExtensionCli
60
60
  text: string;
61
61
  }>;
62
62
  structuredContent: unknown;
63
+ isError?: undefined;
63
64
  } | {
64
65
  content: Array<{
65
66
  type: string;
@@ -54,5 +54,6 @@ export declare function createGetWorkspaceFoldersTool(workspaceFolders: string[]
54
54
  text: string;
55
55
  }>;
56
56
  structuredContent: unknown;
57
+ isError?: undefined;
57
58
  }>;
58
59
  };
@@ -34,6 +34,7 @@ export declare function createGetWorkspaceSettingsTool(extensionClient: Extensio
34
34
  text: string;
35
35
  }>;
36
36
  structuredContent: unknown;
37
+ isError?: undefined;
37
38
  } | {
38
39
  content: Array<{
39
40
  type: string;
@@ -47,6 +47,7 @@ export declare function createGetCommitDetailsTool(workspace: string): {
47
47
  _meta?: Record<string, unknown>;
48
48
  }>;
49
49
  structuredContent: unknown;
50
+ isError?: undefined;
50
51
  }>;
51
52
  };
52
53
  export declare function createGetDiffBetweenRefsTool(workspace: string): {
@@ -106,5 +107,6 @@ export declare function createGetDiffBetweenRefsTool(workspace: string): {
106
107
  _meta?: Record<string, unknown>;
107
108
  }>;
108
109
  structuredContent: unknown;
110
+ isError?: undefined;
109
111
  }>;
110
112
  };
@@ -44,6 +44,7 @@ export declare function createGitAddTool(workspace: string): {
44
44
  text: string;
45
45
  }>;
46
46
  structuredContent: unknown;
47
+ isError?: undefined;
47
48
  } | {
48
49
  content: Array<{
49
50
  type: string;
@@ -119,6 +120,7 @@ export declare function createGitCommitTool(workspace: string, onGitCommit?: (re
119
120
  text: string;
120
121
  }>;
121
122
  structuredContent: unknown;
123
+ isError?: undefined;
122
124
  } | {
123
125
  content: Array<{
124
126
  type: string;
@@ -180,6 +182,7 @@ export declare function createGitCheckoutTool(workspace: string, onBranchCheckou
180
182
  text: string;
181
183
  }>;
182
184
  structuredContent: unknown;
185
+ isError?: undefined;
183
186
  } | {
184
187
  content: Array<{
185
188
  type: string;
@@ -233,6 +236,7 @@ export declare function createGitBlameTool(workspace: string): {
233
236
  text: string;
234
237
  }>;
235
238
  structuredContent: unknown;
239
+ isError?: undefined;
236
240
  } | {
237
241
  content: Array<{
238
242
  type: string;
@@ -284,6 +288,7 @@ export declare function createGitFetchTool(workspace: string): {
284
288
  text: string;
285
289
  }>;
286
290
  structuredContent: unknown;
291
+ isError?: undefined;
287
292
  } | {
288
293
  content: Array<{
289
294
  type: string;
@@ -334,6 +339,7 @@ export declare function createGitListBranchesTool(workspace: string): {
334
339
  text: string;
335
340
  }>;
336
341
  structuredContent: unknown;
342
+ isError?: undefined;
337
343
  } | {
338
344
  content: Array<{
339
345
  type: string;
@@ -386,6 +392,7 @@ export declare function createGitPullTool(workspace: string, onGitPull?: (result
386
392
  text: string;
387
393
  }>;
388
394
  structuredContent: unknown;
395
+ isError?: undefined;
389
396
  } | {
390
397
  content: Array<{
391
398
  type: string;
@@ -462,6 +469,7 @@ export declare function createGitPushTool(workspace: string, onGitPush?: (result
462
469
  text: string;
463
470
  }>;
464
471
  structuredContent: unknown;
472
+ isError?: undefined;
465
473
  } | {
466
474
  content: Array<{
467
475
  type: string;
@@ -516,6 +524,7 @@ export declare function createGitStashTool(workspace: string): {
516
524
  text: string;
517
525
  }>;
518
526
  structuredContent: unknown;
527
+ isError?: undefined;
519
528
  } | {
520
529
  content: Array<{
521
530
  type: string;
@@ -563,6 +572,7 @@ export declare function createGitStashPopTool(workspace: string): {
563
572
  text: string;
564
573
  }>;
565
574
  structuredContent: unknown;
575
+ isError?: undefined;
566
576
  } | {
567
577
  content: Array<{
568
578
  type: string;
@@ -602,6 +612,7 @@ export declare function createGitStashListTool(workspace: string): {
602
612
  text: string;
603
613
  }>;
604
614
  structuredContent: unknown;
615
+ isError?: undefined;
605
616
  } | {
606
617
  content: Array<{
607
618
  type: string;
@@ -84,6 +84,7 @@ export declare function createGithubListRunsTool(workspace: string, defaultRepo?
84
84
  text: string;
85
85
  }>;
86
86
  structuredContent: unknown;
87
+ isError?: undefined;
87
88
  } | {
88
89
  content: Array<{
89
90
  type: string;
@@ -142,6 +143,7 @@ export declare function createGithubGetRunLogsTool(workspace: string, defaultRep
142
143
  text: string;
143
144
  }>;
144
145
  structuredContent: unknown;
146
+ isError?: undefined;
145
147
  } | {
146
148
  content: Array<{
147
149
  type: string;
@@ -146,6 +146,7 @@ export declare function createGithubPRTool(workspace: string, onPullRequest?: (r
146
146
  text: string;
147
147
  }>;
148
148
  structuredContent: unknown;
149
+ isError?: undefined;
149
150
  } | {
150
151
  content: Array<{
151
152
  type: string;
@@ -243,6 +244,7 @@ export declare function createGithubIssueTool(workspace: string): {
243
244
  text: string;
244
245
  }>;
245
246
  structuredContent: unknown;
247
+ isError?: undefined;
246
248
  } | {
247
249
  content: Array<{
248
250
  type: string;
@@ -329,6 +331,7 @@ export declare function createGithubActionsTool(workspace: string, defaultRepo?:
329
331
  text: string;
330
332
  }>;
331
333
  structuredContent: unknown;
334
+ isError?: undefined;
332
335
  } | {
333
336
  content: Array<{
334
337
  type: string;
@@ -83,6 +83,7 @@ export declare function createGithubListIssuesTool(workspace: string): {
83
83
  text: string;
84
84
  }>;
85
85
  structuredContent: unknown;
86
+ isError?: undefined;
86
87
  } | {
87
88
  content: Array<{
88
89
  type: string;
@@ -158,6 +159,7 @@ export declare function createGithubGetIssueTool(workspace: string): {
158
159
  text: string;
159
160
  }>;
160
161
  structuredContent: unknown;
162
+ isError?: undefined;
161
163
  } | {
162
164
  content: Array<{
163
165
  type: string;
@@ -222,6 +224,7 @@ export declare function createGithubCreateIssueTool(workspace: string): {
222
224
  text: string;
223
225
  }>;
224
226
  structuredContent: unknown;
227
+ isError?: undefined;
225
228
  } | {
226
229
  content: Array<{
227
230
  type: string;
@@ -271,6 +274,7 @@ export declare function createGithubCommentIssueTool(workspace: string): {
271
274
  text: string;
272
275
  }>;
273
276
  structuredContent: unknown;
277
+ isError?: undefined;
274
278
  } | {
275
279
  content: Array<{
276
280
  type: string;
@@ -61,6 +61,7 @@ export declare function createGithubCreatePRTool(workspace: string, onPullReques
61
61
  text: string;
62
62
  }>;
63
63
  structuredContent: unknown;
64
+ isError?: undefined;
64
65
  } | {
65
66
  content: Array<{
66
67
  type: string;
@@ -146,6 +147,7 @@ export declare function createGithubListPRsTool(workspace: string): {
146
147
  text: string;
147
148
  }>;
148
149
  structuredContent: unknown;
150
+ isError?: undefined;
149
151
  } | {
150
152
  content: Array<{
151
153
  type: string;
@@ -226,6 +228,7 @@ export declare function createGithubViewPRTool(workspace: string): {
226
228
  text: string;
227
229
  }>;
228
230
  structuredContent: unknown;
231
+ isError?: undefined;
229
232
  } | {
230
233
  content: Array<{
231
234
  type: string;
@@ -328,6 +331,7 @@ export declare function createGithubGetPRDiffTool(workspace: string): {
328
331
  _meta?: Record<string, unknown>;
329
332
  }>;
330
333
  structuredContent: unknown;
334
+ isError?: undefined;
331
335
  } | {
332
336
  content: Array<{
333
337
  type: string;
@@ -422,6 +426,7 @@ export declare function createGithubPostPRReviewTool(workspace: string): {
422
426
  text: string;
423
427
  }>;
424
428
  structuredContent: unknown;
429
+ isError?: undefined;
425
430
  } | {
426
431
  content: Array<{
427
432
  type: string;
@@ -477,6 +482,7 @@ export declare function createGithubApprovePRTool(workspace: string): {
477
482
  text: string;
478
483
  }>;
479
484
  structuredContent: unknown;
485
+ isError?: undefined;
480
486
  } | {
481
487
  content: Array<{
482
488
  type: string;
@@ -544,6 +550,7 @@ export declare function createGithubMergePRTool(workspace: string): {
544
550
  text: string;
545
551
  }>;
546
552
  structuredContent: unknown;
553
+ isError?: undefined;
547
554
  } | {
548
555
  content: Array<{
549
556
  type: string;
@@ -50,6 +50,7 @@ export declare function createSetHandoffNoteTool(_sessionId: string, deps?: {
50
50
  text: string;
51
51
  }>;
52
52
  structuredContent: unknown;
53
+ isError?: undefined;
53
54
  } | {
54
55
  content: Array<{
55
56
  type: string;
@@ -101,6 +102,7 @@ export declare function createGetHandoffNoteTool(deps?: {
101
102
  text: string;
102
103
  }>;
103
104
  structuredContent: unknown;
105
+ isError?: undefined;
104
106
  }>;
105
107
  };
106
108
  export {};
@@ -44,6 +44,7 @@ export declare function createGetHoverAtCursorTool(extensionClient: ExtensionCli
44
44
  text: string;
45
45
  }>;
46
46
  structuredContent: unknown;
47
+ isError?: undefined;
47
48
  } | {
48
49
  content: Array<{
49
50
  type: string;
@@ -85,6 +85,7 @@ export declare function createSendHttpRequestTool(options?: {
85
85
  text: string;
86
86
  }>;
87
87
  structuredContent: unknown;
88
+ isError?: undefined;
88
89
  } | {
89
90
  content: Array<{
90
91
  type: string;
@@ -131,6 +132,7 @@ export declare function createParseHttpFileTool(workspace: string): {
131
132
  text: string;
132
133
  }>;
133
134
  structuredContent: unknown;
135
+ isError?: undefined;
134
136
  } | {
135
137
  content: Array<{
136
138
  type: string;
@@ -71,6 +71,7 @@ export declare function createGetInlayHintsTool(workspace: string, extensionClie
71
71
  text: string;
72
72
  }>;
73
73
  structuredContent: unknown;
74
+ isError?: undefined;
74
75
  } | {
75
76
  content: Array<{
76
77
  type: string;
@@ -66,6 +66,7 @@ export declare function createLaunchQuickTaskTool(deps: LaunchQuickTaskDeps): {
66
66
  text: string;
67
67
  }>;
68
68
  structuredContent: unknown;
69
+ isError?: undefined;
69
70
  } | {
70
71
  content: Array<{
71
72
  type: string;
@@ -74,6 +74,7 @@ export declare function createListClaudeTasksTool(orchestrator: ClaudeOrchestrat
74
74
  text: string;
75
75
  }>;
76
76
  structuredContent: unknown;
77
+ isError?: undefined;
77
78
  } | {
78
79
  content: Array<{
79
80
  type: string;
@@ -45,6 +45,7 @@ export declare function createListTerminalsTool(extensionClient: ExtensionClient
45
45
  text: string;
46
46
  }>;
47
47
  structuredContent: unknown;
48
+ isError?: undefined;
48
49
  } | {
49
50
  content: Array<{
50
51
  type: string;
@@ -74,6 +74,7 @@ export declare function createGoToDefinitionTool(workspace: string, extensionCli
74
74
  text: string;
75
75
  }>;
76
76
  structuredContent: unknown;
77
+ isError?: undefined;
77
78
  } | {
78
79
  content: Array<{
79
80
  type: string;
@@ -149,6 +150,7 @@ export declare function createFindReferencesTool(workspace: string, extensionCli
149
150
  text: string;
150
151
  }>;
151
152
  structuredContent: unknown;
153
+ isError?: undefined;
152
154
  } | {
153
155
  content: Array<{
154
156
  type: string;
@@ -209,6 +211,7 @@ export declare function createGetHoverTool(workspace: string, extensionClient: E
209
211
  text: string;
210
212
  }>;
211
213
  structuredContent: unknown;
214
+ isError?: undefined;
212
215
  } | {
213
216
  content: Array<{
214
217
  type: string;
@@ -283,6 +286,7 @@ export declare function createGetCodeActionsTool(workspace: string, extensionCli
283
286
  text: string;
284
287
  }>;
285
288
  structuredContent: unknown;
289
+ isError?: undefined;
286
290
  } | {
287
291
  content: Array<{
288
292
  type: string;
@@ -362,6 +366,7 @@ export declare function createApplyCodeActionTool(workspace: string, extensionCl
362
366
  text: string;
363
367
  }>;
364
368
  structuredContent: unknown;
369
+ isError?: undefined;
365
370
  } | {
366
371
  content: Array<{
367
372
  type: string;
@@ -476,6 +481,7 @@ export declare function createPreviewCodeActionTool(workspace: string, extension
476
481
  text: string;
477
482
  }>;
478
483
  structuredContent: unknown;
484
+ isError?: undefined;
479
485
  } | {
480
486
  content: Array<{
481
487
  type: string;
@@ -555,6 +561,7 @@ export declare function createRenameSymbolTool(workspace: string, extensionClien
555
561
  text: string;
556
562
  }>;
557
563
  structuredContent: unknown;
564
+ isError?: undefined;
558
565
  } | {
559
566
  content: Array<{
560
567
  type: string;
@@ -643,6 +650,7 @@ export declare function createGetCallHierarchyTool(workspace: string, extensionC
643
650
  text: string;
644
651
  }>;
645
652
  structuredContent: unknown;
653
+ isError?: undefined;
646
654
  } | {
647
655
  content: Array<{
648
656
  type: string;
@@ -714,6 +722,7 @@ export declare function createSearchWorkspaceSymbolsTool(workspace: string, exte
714
722
  text: string;
715
723
  }>;
716
724
  structuredContent: unknown;
725
+ isError?: undefined;
717
726
  } | {
718
727
  content: Array<{
719
728
  type: string;
@@ -788,6 +797,7 @@ export declare function createPrepareRenameTool(workspace: string, extensionClie
788
797
  text: string;
789
798
  }>;
790
799
  structuredContent: unknown;
800
+ isError?: undefined;
791
801
  } | {
792
802
  content: Array<{
793
803
  type: string;
@@ -845,6 +855,7 @@ export declare function createFormatRangeTool(workspace: string, extensionClient
845
855
  text: string;
846
856
  }>;
847
857
  structuredContent: unknown;
858
+ isError?: undefined;
848
859
  } | {
849
860
  content: Array<{
850
861
  type: string;
@@ -922,6 +933,7 @@ export declare function createFindImplementationsTool(workspace: string, extensi
922
933
  text: string;
923
934
  }>;
924
935
  structuredContent: unknown;
936
+ isError?: undefined;
925
937
  } | {
926
938
  content: Array<{
927
939
  type: string;
@@ -999,6 +1011,7 @@ export declare function createGoToTypeDefinitionTool(workspace: string, extensio
999
1011
  text: string;
1000
1012
  }>;
1001
1013
  structuredContent: unknown;
1014
+ isError?: undefined;
1002
1015
  } | {
1003
1016
  content: Array<{
1004
1017
  type: string;
@@ -1076,6 +1089,7 @@ export declare function createGoToDeclarationTool(workspace: string, extensionCl
1076
1089
  text: string;
1077
1090
  }>;
1078
1091
  structuredContent: unknown;
1092
+ isError?: undefined;
1079
1093
  } | {
1080
1094
  content: Array<{
1081
1095
  type: string;
@@ -46,6 +46,7 @@ export declare function createNavigateToSymbolByNameTool(extensionClient: Extens
46
46
  text: string;
47
47
  }>;
48
48
  structuredContent: unknown;
49
+ isError?: undefined;
49
50
  } | {
50
51
  content: Array<{
51
52
  type: string;
@@ -56,6 +56,7 @@ export declare function createOpenDiffTool(workspace: string, editorCommand: str
56
56
  text: string;
57
57
  }>;
58
58
  structuredContent: unknown;
59
+ isError?: undefined;
59
60
  } | {
60
61
  content: Array<{
61
62
  type: string;
@@ -59,6 +59,7 @@ export declare function createOpenFileTool(workspace: string, editorCommand: str
59
59
  text: string;
60
60
  }>;
61
61
  structuredContent: unknown;
62
+ isError?: undefined;
62
63
  } | {
63
64
  content: Array<{
64
65
  type: string;
@@ -51,5 +51,6 @@ export declare function createOpenInBrowserTool(): {
51
51
  text: string;
52
52
  }>;
53
53
  structuredContent: unknown;
54
+ isError?: undefined;
54
55
  }>;
55
56
  };
@@ -46,6 +46,7 @@ export declare function createOrganizeImportsTool(workspace: string, extensionCl
46
46
  text: string;
47
47
  }>;
48
48
  structuredContent: unknown;
49
+ isError?: undefined;
49
50
  } | {
50
51
  content: Array<{
51
52
  type: string;
@@ -129,5 +129,6 @@ export declare function createGetPerformanceReportTool(deps: PerformanceReportDe
129
129
  text: string;
130
130
  }>;
131
131
  structuredContent: unknown;
132
+ isError?: undefined;
132
133
  }>;
133
134
  };