@aria-cli/cli 1.0.14

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 (283) hide show
  1. package/bin/aria-dev.js +15 -0
  2. package/bin/aria.js +366 -0
  3. package/bin/install-owner-lease.d.ts +8 -0
  4. package/bin/install-owner-lease.js +53 -0
  5. package/dist/.aria-build-stamp.json +4 -0
  6. package/dist/attached-local-control-client.d.ts +90 -0
  7. package/dist/bootstrap-local-control-client.d.ts +1 -0
  8. package/dist/capability-aware-method-proxy.d.ts +1 -0
  9. package/dist/cli-context.d.ts +31 -0
  10. package/dist/commands/arions.d.ts +14 -0
  11. package/dist/commands/auth.d.ts +27 -0
  12. package/dist/commands/daemon.d.ts +31 -0
  13. package/dist/commands/definitions.d.ts +19 -0
  14. package/dist/commands/index.d.ts +13 -0
  15. package/dist/commands/login-handler.d.ts +108 -0
  16. package/dist/commands/logout-handler.d.ts +24 -0
  17. package/dist/commands/memory-handlers.d.ts +15 -0
  18. package/dist/commands/pairing.d.ts +2 -0
  19. package/dist/commands/peer-message-handler.d.ts +7 -0
  20. package/dist/commands/runtime-cutover-reset-command.d.ts +2 -0
  21. package/dist/commands/runtime-cutover-reset.d.ts +26 -0
  22. package/dist/commands/terminal-setup.d.ts +3 -0
  23. package/dist/config/aria-config.d.ts +50 -0
  24. package/dist/config/index.d.ts +4 -0
  25. package/dist/config/loader.d.ts +17 -0
  26. package/dist/config.d.ts +53 -0
  27. package/dist/daemon-info.d.ts +17 -0
  28. package/dist/ensure-daemon.d.ts +21 -0
  29. package/dist/event-loop-watchdog.d.ts +31 -0
  30. package/dist/headless/auth-orchestrator.d.ts +19 -0
  31. package/dist/headless/auth-service.d.ts +15 -0
  32. package/dist/headless/bootstrap-fast-path.d.ts +12 -0
  33. package/dist/headless/call-command.d.ts +8 -0
  34. package/dist/headless/daemon-service.d.ts +14 -0
  35. package/dist/headless/hook-actions.d.ts +40 -0
  36. package/dist/headless/hook-service.d.ts +8 -0
  37. package/dist/headless/kernel-services.d.ts +8 -0
  38. package/dist/headless/kernel.d.ts +118 -0
  39. package/dist/headless/operations/arion.d.ts +3 -0
  40. package/dist/headless/operations/auth.d.ts +4 -0
  41. package/dist/headless/operations/client.d.ts +2 -0
  42. package/dist/headless/operations/config.d.ts +3 -0
  43. package/dist/headless/operations/daemon.d.ts +3 -0
  44. package/dist/headless/operations/hook.d.ts +3 -0
  45. package/dist/headless/operations/index.d.ts +10 -0
  46. package/dist/headless/operations/memory.d.ts +3 -0
  47. package/dist/headless/operations/message.d.ts +2 -0
  48. package/dist/headless/operations/model.d.ts +3 -0
  49. package/dist/headless/operations/peer.d.ts +2 -0
  50. package/dist/headless/operations/run.d.ts +3 -0
  51. package/dist/headless/operations/session.d.ts +74 -0
  52. package/dist/headless/operations/subscription.d.ts +2 -0
  53. package/dist/headless/operations/system.d.ts +3 -0
  54. package/dist/headless/operations/utils.d.ts +5 -0
  55. package/dist/headless/run-orchestrator.d.ts +38 -0
  56. package/dist/headless/stdio-server.d.ts +4 -0
  57. package/dist/history/SessionHistory.d.ts +200 -0
  58. package/dist/history/conversation-message.d.ts +181 -0
  59. package/dist/history/index.d.ts +8 -0
  60. package/dist/history/jsonl-replay.d.ts +38 -0
  61. package/dist/history/repair-tool-pairing.d.ts +14 -0
  62. package/dist/history/turn-accumulator.d.ts +85 -0
  63. package/dist/index.d.ts +6 -0
  64. package/dist/index.js +505 -0
  65. package/dist/ink-repl.d.ts +32 -0
  66. package/dist/local-control-bootstrap.d.ts +5 -0
  67. package/dist/local-control-client.d.ts +1 -0
  68. package/dist/local-control-error-reporting.d.ts +6 -0
  69. package/dist/local-control-http-client.d.ts +9 -0
  70. package/dist/network-security.d.ts +7 -0
  71. package/dist/networking-server.d.ts +28 -0
  72. package/dist/peer-identity.d.ts +3 -0
  73. package/dist/polling-subscription.d.ts +7 -0
  74. package/dist/relaunch.d.ts +55 -0
  75. package/dist/release-notes.d.ts +11 -0
  76. package/dist/repl-cleanup.d.ts +20 -0
  77. package/dist/selectable-client.d.ts +7 -0
  78. package/dist/selectable-peer.d.ts +12 -0
  79. package/dist/session.d.ts +103 -0
  80. package/dist/slash-commands.d.ts +34 -0
  81. package/dist/sounds.d.ts +31 -0
  82. package/dist/ui/App.d.ts +288 -0
  83. package/dist/ui/components/AnthropicMethodPicker.d.ts +9 -0
  84. package/dist/ui/components/ArionPrompt.d.ts +8 -0
  85. package/dist/ui/components/AutocompleteDropdown.d.ts +9 -0
  86. package/dist/ui/components/AutonomySelector.d.ts +12 -0
  87. package/dist/ui/components/Banner.d.ts +9 -0
  88. package/dist/ui/components/ConversationHistory.d.ts +59 -0
  89. package/dist/ui/components/CopilotDeviceLoginFlow.d.ts +15 -0
  90. package/dist/ui/components/CopilotSourcePicker.d.ts +13 -0
  91. package/dist/ui/components/Cost.d.ts +8 -0
  92. package/dist/ui/components/CustomSelect/option-map.d.ts +15 -0
  93. package/dist/ui/components/CustomSelect/select-option.d.ts +20 -0
  94. package/dist/ui/components/CustomSelect/select.d.ts +55 -0
  95. package/dist/ui/components/CustomSelect/use-select-state.d.ts +99 -0
  96. package/dist/ui/components/CustomSelect/use-select.d.ts +14 -0
  97. package/dist/ui/components/ErrorDisplay.d.ts +26 -0
  98. package/dist/ui/components/FallbackToolUseRejectedMessage.d.ts +2 -0
  99. package/dist/ui/components/FileEditToolUpdatedMessage.d.ts +9 -0
  100. package/dist/ui/components/HandoffMarker.d.ts +17 -0
  101. package/dist/ui/components/HighlightedCode.d.ts +7 -0
  102. package/dist/ui/components/InputArea.d.ts +17 -0
  103. package/dist/ui/components/Message.d.ts +16 -0
  104. package/dist/ui/components/OAuthLoginFlow.d.ts +25 -0
  105. package/dist/ui/components/OutputTruncation.d.ts +16 -0
  106. package/dist/ui/components/PermissionPrompt.d.ts +22 -0
  107. package/dist/ui/components/PipelineTimingPanel.d.ts +13 -0
  108. package/dist/ui/components/ProviderMethodPicker.d.ts +16 -0
  109. package/dist/ui/components/ProviderPicker.d.ts +15 -0
  110. package/dist/ui/components/RenderItemView.d.ts +18 -0
  111. package/dist/ui/components/Spinner.d.ts +3 -0
  112. package/dist/ui/components/StatusBar.d.ts +78 -0
  113. package/dist/ui/components/StreamingIndicator.d.ts +11 -0
  114. package/dist/ui/components/StructuredDiff.d.ts +20 -0
  115. package/dist/ui/components/TextInputOverlay.d.ts +9 -0
  116. package/dist/ui/components/ThinkingBlock.d.ts +53 -0
  117. package/dist/ui/components/ToolCost.d.ts +8 -0
  118. package/dist/ui/components/ToolExecution.d.ts +13 -0
  119. package/dist/ui/components/ToolHeader.d.ts +10 -0
  120. package/dist/ui/components/ToolRenderLayoutContext.d.ts +10 -0
  121. package/dist/ui/components/ToolResultWrapper.d.ts +6 -0
  122. package/dist/ui/components/ToolUseLoader.d.ts +10 -0
  123. package/dist/ui/components/TraceWaterfall.d.ts +56 -0
  124. package/dist/ui/components/index.d.ts +29 -0
  125. package/dist/ui/components/messages/AssistantTextMessage.d.ts +13 -0
  126. package/dist/ui/components/messages/UserImageMessage.d.ts +8 -0
  127. package/dist/ui/components/messages/UserTextMessage.d.ts +13 -0
  128. package/dist/ui/components/overlays/ArionSelector.d.ts +18 -0
  129. package/dist/ui/components/overlays/ClientSelector.d.ts +7 -0
  130. package/dist/ui/components/overlays/CommandPalette.d.ts +14 -0
  131. package/dist/ui/components/overlays/InviteShareOverlay.d.ts +7 -0
  132. package/dist/ui/components/overlays/JoinInviteOverlay.d.ts +6 -0
  133. package/dist/ui/components/overlays/MemoryBrowser.d.ts +17 -0
  134. package/dist/ui/components/overlays/MessageSelector.d.ts +20 -0
  135. package/dist/ui/components/overlays/ModelSelector.d.ts +17 -0
  136. package/dist/ui/components/overlays/PairRequestOverlay.d.ts +19 -0
  137. package/dist/ui/components/overlays/PeerSelector.d.ts +14 -0
  138. package/dist/ui/components/overlays/SessionSelector.d.ts +11 -0
  139. package/dist/ui/components/overlays/ThemeSelector.d.ts +22 -0
  140. package/dist/ui/components/overlays/index.d.ts +13 -0
  141. package/dist/ui/components/permissions/BashPermissionRequest/BashPermissionRequest.d.ts +9 -0
  142. package/dist/ui/components/permissions/FallbackPermissionRequest.d.ts +9 -0
  143. package/dist/ui/components/permissions/FileEditPermissionRequest/FileEditPermissionRequest.d.ts +9 -0
  144. package/dist/ui/components/permissions/FileEditPermissionRequest/FileEditToolDiff.d.ts +11 -0
  145. package/dist/ui/components/permissions/FileWritePermissionRequest/FileWritePermissionRequest.d.ts +9 -0
  146. package/dist/ui/components/permissions/FileWritePermissionRequest/FileWriteToolDiff.d.ts +9 -0
  147. package/dist/ui/components/permissions/FilesystemPermissionRequest/FilesystemPermissionRequest.d.ts +5 -0
  148. package/dist/ui/components/permissions/PermissionRequest.d.ts +52 -0
  149. package/dist/ui/components/permissions/PermissionRequestTitle.d.ts +13 -0
  150. package/dist/ui/components/permissions/hooks.d.ts +10 -0
  151. package/dist/ui/components/permissions/toolUseOptions.d.ts +10 -0
  152. package/dist/ui/components/permissions/utils.d.ts +6 -0
  153. package/dist/ui/components/text-input/Cursor.d.ts +58 -0
  154. package/dist/ui/components/text-input/TextInput.d.ts +98 -0
  155. package/dist/ui/components/text-input/imagePaste.d.ts +2 -0
  156. package/dist/ui/components/text-input/index.d.ts +6 -0
  157. package/dist/ui/components/text-input/useDoublePress.d.ts +2 -0
  158. package/dist/ui/components/text-input/useTextInput.d.ts +34 -0
  159. package/dist/ui/components/tool-types.d.ts +28 -0
  160. package/dist/ui/constants/figures.d.ts +1 -0
  161. package/dist/ui/constants/index.d.ts +1 -0
  162. package/dist/ui/display-mode.d.ts +62 -0
  163. package/dist/ui/display-policy.d.ts +3 -0
  164. package/dist/ui/hooks/index.d.ts +4 -0
  165. package/dist/ui/hooks/useCommandAutocomplete.d.ts +28 -0
  166. package/dist/ui/hooks/useDoublePress.d.ts +13 -0
  167. package/dist/ui/hooks/useIndicatorState.d.ts +3 -0
  168. package/dist/ui/hooks/useInterval.d.ts +6 -0
  169. package/dist/ui/hooks/useKeyboardShortcuts.d.ts +17 -0
  170. package/dist/ui/hooks/usePeerMessages.d.ts +26 -0
  171. package/dist/ui/hooks/useTerminalSize.d.ts +6 -0
  172. package/dist/ui/hooks/useUnifiedMessages.d.ts +83 -0
  173. package/dist/ui/indicator-state.d.ts +46 -0
  174. package/dist/ui/markdown/highlight.d.ts +8 -0
  175. package/dist/ui/markdown/index.d.ts +16 -0
  176. package/dist/ui/markdown/tokenizer.d.ts +17 -0
  177. package/dist/ui/render-item.d.ts +70 -0
  178. package/dist/ui/screens/REPL.d.ts +288 -0
  179. package/dist/ui/status-line.d.ts +32 -0
  180. package/dist/ui/theme/index.d.ts +8 -0
  181. package/dist/ui/theme/themes/claude-dark-daltonized.d.ts +2 -0
  182. package/dist/ui/theme/themes/claude-dark.d.ts +2 -0
  183. package/dist/ui/theme/themes/claude-light-daltonized.d.ts +2 -0
  184. package/dist/ui/theme/themes/claude-light.d.ts +2 -0
  185. package/dist/ui/theme/themes/dark-accessible.d.ts +2 -0
  186. package/dist/ui/theme/themes/dark.d.ts +2 -0
  187. package/dist/ui/theme/themes/light-accessible.d.ts +2 -0
  188. package/dist/ui/theme/themes/light.d.ts +2 -0
  189. package/dist/ui/theme/types.d.ts +51 -0
  190. package/dist/ui/theme.d.ts +51 -0
  191. package/dist/ui/to-render-items.d.ts +7 -0
  192. package/dist/ui/tools/AgentTool/index.d.ts +8 -0
  193. package/dist/ui/tools/ArchitectTool/index.d.ts +10 -0
  194. package/dist/ui/tools/AskUserTool/index.d.ts +19 -0
  195. package/dist/ui/tools/BashTool/BashToolResultMessage.d.ts +13 -0
  196. package/dist/ui/tools/BashTool/OutputLine.d.ts +6 -0
  197. package/dist/ui/tools/BashTool/index.d.ts +8 -0
  198. package/dist/ui/tools/BrowseTool/index.d.ts +20 -0
  199. package/dist/ui/tools/BrowserTool/index.d.ts +25 -0
  200. package/dist/ui/tools/CbmTool/index.d.ts +81 -0
  201. package/dist/ui/tools/CheckDelegationTool/index.d.ts +23 -0
  202. package/dist/ui/tools/CheckMessagesTool/index.d.ts +8 -0
  203. package/dist/ui/tools/CreateQuipTool/index.d.ts +10 -0
  204. package/dist/ui/tools/CreateSkillTool/index.d.ts +13 -0
  205. package/dist/ui/tools/CreateToolTool/index.d.ts +10 -0
  206. package/dist/ui/tools/DelegateRemoteTool/index.d.ts +22 -0
  207. package/dist/ui/tools/DeployTool/index.d.ts +24 -0
  208. package/dist/ui/tools/FffTool/index.d.ts +17 -0
  209. package/dist/ui/tools/FileEditTool/index.d.ts +10 -0
  210. package/dist/ui/tools/FileReadTool/index.d.ts +10 -0
  211. package/dist/ui/tools/FileWriteTool/index.d.ts +10 -0
  212. package/dist/ui/tools/FrgTool/index.d.ts +17 -0
  213. package/dist/ui/tools/GetThreadTool/index.d.ts +10 -0
  214. package/dist/ui/tools/GlobTool/index.d.ts +11 -0
  215. package/dist/ui/tools/GrepTool/index.d.ts +12 -0
  216. package/dist/ui/tools/HatchArionTool/index.d.ts +20 -0
  217. package/dist/ui/tools/LearnSkillTool/index.d.ts +13 -0
  218. package/dist/ui/tools/LearnTool/index.d.ts +15 -0
  219. package/dist/ui/tools/LearnToolTool/index.d.ts +14 -0
  220. package/dist/ui/tools/ListClientsTool/index.d.ts +10 -0
  221. package/dist/ui/tools/LspTool/index.d.ts +11 -0
  222. package/dist/ui/tools/MCPTool/index.d.ts +11 -0
  223. package/dist/ui/tools/ManageNetworkTool/index.d.ts +28 -0
  224. package/dist/ui/tools/MemoryReadTool/index.d.ts +8 -0
  225. package/dist/ui/tools/MemoryWriteTool/index.d.ts +6 -0
  226. package/dist/ui/tools/NotebookEditTool/index.d.ts +19 -0
  227. package/dist/ui/tools/NotebookReadTool/index.d.ts +12 -0
  228. package/dist/ui/tools/OutlookReadTool/index.d.ts +10 -0
  229. package/dist/ui/tools/OutlookReplyTool/index.d.ts +10 -0
  230. package/dist/ui/tools/OutlookSendTool/index.d.ts +10 -0
  231. package/dist/ui/tools/PauseDelegationTool/index.d.ts +20 -0
  232. package/dist/ui/tools/ProbeTool/index.d.ts +26 -0
  233. package/dist/ui/tools/ProcessTool/index.d.ts +29 -0
  234. package/dist/ui/tools/QuestListTool/index.d.ts +24 -0
  235. package/dist/ui/tools/QuestReportTool/index.d.ts +27 -0
  236. package/dist/ui/tools/QuestUpdateTool/index.d.ts +24 -0
  237. package/dist/ui/tools/QuipCommentTool/index.d.ts +23 -0
  238. package/dist/ui/tools/QuipReadTool/index.d.ts +26 -0
  239. package/dist/ui/tools/RestArionTool/index.d.ts +19 -0
  240. package/dist/ui/tools/RestartTool/index.d.ts +20 -0
  241. package/dist/ui/tools/ResumeDelegationTool/index.d.ts +21 -0
  242. package/dist/ui/tools/RetireArionTool/index.d.ts +19 -0
  243. package/dist/ui/tools/RgTool/index.d.ts +44 -0
  244. package/dist/ui/tools/SearchKnowledgeTool/index.d.ts +31 -0
  245. package/dist/ui/tools/SearchMessagesTool/index.d.ts +10 -0
  246. package/dist/ui/tools/SelfDiagnoseTool/index.d.ts +11 -0
  247. package/dist/ui/tools/SendMessageTool/index.d.ts +8 -0
  248. package/dist/ui/tools/SerenaTool/index.d.ts +18 -0
  249. package/dist/ui/tools/SessionHistoryTool/index.d.ts +32 -0
  250. package/dist/ui/tools/SgTool/index.d.ts +8 -0
  251. package/dist/ui/tools/SlackReactTool/index.d.ts +10 -0
  252. package/dist/ui/tools/SlackReadTool/index.d.ts +10 -0
  253. package/dist/ui/tools/SlackSendTool/index.d.ts +10 -0
  254. package/dist/ui/tools/SpawnWorkerTool/index.d.ts +18 -0
  255. package/dist/ui/tools/StickerRequestTool/index.d.ts +6 -0
  256. package/dist/ui/tools/ThinkTool/index.d.ts +8 -0
  257. package/dist/ui/tools/UgTool/index.d.ts +47 -0
  258. package/dist/ui/tools/UseSkillTool/index.d.ts +17 -0
  259. package/dist/ui/tools/WakeArionTool/index.d.ts +19 -0
  260. package/dist/ui/tools/WebFetchTool/index.d.ts +20 -0
  261. package/dist/ui/tools/WebSearchTool/index.d.ts +21 -0
  262. package/dist/ui/tools/lsTool/index.d.ts +12 -0
  263. package/dist/ui/tools/registry.d.ts +15 -0
  264. package/dist/ui/tools/tool-renderer.d.ts +24 -0
  265. package/dist/ui/tools/truncation.d.ts +6 -0
  266. package/dist/ui/types/anthropic.d.ts +19 -0
  267. package/dist/ui/types/index.d.ts +3 -0
  268. package/dist/ui/types/message.d.ts +19 -0
  269. package/dist/ui/types/tool.d.ts +17 -0
  270. package/dist/ui/utils/array.d.ts +1 -0
  271. package/dist/ui/utils/cursor.d.ts +28 -0
  272. package/dist/ui/utils/diff.d.ts +24 -0
  273. package/dist/ui/utils/format.d.ts +3 -0
  274. package/dist/ui/utils/fuzzy.d.ts +11 -0
  275. package/dist/ui/utils/index.d.ts +9 -0
  276. package/dist/ui/utils/keys.d.ts +6 -0
  277. package/dist/ui/utils/patch.d.ts +8 -0
  278. package/dist/ui/utils/risk.d.ts +14 -0
  279. package/dist/ui/utils/terminal-image.d.ts +18 -0
  280. package/dist/ui/utils/validation.d.ts +8 -0
  281. package/dist/ui/verb-pairs.d.ts +20 -0
  282. package/dist/ui.d.ts +70 -0
  283. package/package.json +76 -0
@@ -0,0 +1,15 @@
1
+ export declare const LearnToolRenderers: {
2
+ displayName(): string;
3
+ renderInput(input: {
4
+ source?: string | {
5
+ type?: string;
6
+ command?: string;
7
+ path?: string;
8
+ };
9
+ name?: string;
10
+ }, _opts: {
11
+ verbose: boolean;
12
+ }): string;
13
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
14
+ renderOutput(output: unknown): import("react/jsx-runtime").JSX.Element;
15
+ };
@@ -0,0 +1,14 @@
1
+ export declare const LearnToolToolRenderers: {
2
+ displayName(): string;
3
+ renderInput(input: {
4
+ name?: string;
5
+ }, _opts: {
6
+ verbose: boolean;
7
+ }): string;
8
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
9
+ renderOutput(output: {
10
+ toolId?: string;
11
+ name?: string;
12
+ description?: string;
13
+ }): import("react/jsx-runtime").JSX.Element;
14
+ };
@@ -0,0 +1,10 @@
1
+ export declare const ListClientsToolRenderers: {
2
+ displayName(): string;
3
+ renderInput(input: Record<string, unknown>, { verbose }?: {
4
+ verbose?: boolean;
5
+ }): string;
6
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
7
+ renderOutput(output: unknown, { verbose }?: {
8
+ verbose?: boolean;
9
+ }): import("react/jsx-runtime").JSX.Element;
10
+ };
@@ -0,0 +1,11 @@
1
+ import * as React from "react";
2
+ export declare const LspToolRenderers: {
3
+ displayName(): string;
4
+ renderInput(input: Record<string, unknown>, { verbose }: {
5
+ verbose: boolean;
6
+ }): string;
7
+ renderOutput(output: unknown, { verbose }?: {
8
+ verbose?: boolean;
9
+ }, input?: unknown): React.ReactNode;
10
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
11
+ };
@@ -0,0 +1,11 @@
1
+ export declare const MCPToolRenderers: {
2
+ displayName: () => string;
3
+ renderInput(input: Record<string, unknown>): string;
4
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
5
+ renderOutput(output: string | Array<{
6
+ type: string;
7
+ text?: string;
8
+ }> | null, { verbose }: {
9
+ verbose: boolean;
10
+ }): import("react/jsx-runtime").JSX.Element;
11
+ };
@@ -0,0 +1,28 @@
1
+ interface ManageNetworkInput {
2
+ action?: string;
3
+ [key: string]: unknown;
4
+ }
5
+ interface PeerInfo {
6
+ nodeId?: string;
7
+ displayName?: string;
8
+ [key: string]: unknown;
9
+ }
10
+ interface ManageNetworkOutput {
11
+ success?: boolean;
12
+ message?: string;
13
+ inviteToken?: string;
14
+ peers?: PeerInfo[];
15
+ error?: string;
16
+ [key: string]: unknown;
17
+ }
18
+ export declare const ManageNetworkToolRenderers: {
19
+ displayName(): string;
20
+ renderInput(input: ManageNetworkInput, _opts?: {
21
+ verbose?: boolean;
22
+ }): string;
23
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
24
+ renderOutput(output: ManageNetworkOutput | string | null, _opts?: {
25
+ verbose?: boolean;
26
+ }): import("react/jsx-runtime").JSX.Element;
27
+ };
28
+ export {};
@@ -0,0 +1,8 @@
1
+ export declare const MemoryReadToolRenderers: {
2
+ displayName(): string;
3
+ renderInput(input: Record<string, unknown>): string;
4
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
5
+ renderOutput(output: unknown, { verbose }?: {
6
+ verbose: boolean;
7
+ }): import("react/jsx-runtime").JSX.Element;
8
+ };
@@ -0,0 +1,6 @@
1
+ export declare const MemoryWriteToolRenderers: {
2
+ displayName(): string;
3
+ renderInput(input: Record<string, unknown>): string;
4
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
5
+ renderOutput(): import("react/jsx-runtime").JSX.Element;
6
+ };
@@ -0,0 +1,19 @@
1
+ export declare const NotebookEditToolRenderers: {
2
+ displayName(): string;
3
+ renderInput(input: {
4
+ notebook_path: string;
5
+ cell_number: number;
6
+ new_source: string;
7
+ cell_type?: string;
8
+ edit_mode?: string;
9
+ }, { verbose }: {
10
+ verbose: boolean;
11
+ }): string;
12
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
13
+ renderOutput(output: {
14
+ cell_number: number;
15
+ new_source: string;
16
+ language: string;
17
+ error?: string;
18
+ } | null): import("react/jsx-runtime").JSX.Element;
19
+ };
@@ -0,0 +1,12 @@
1
+ export declare const NotebookReadToolRenderers: {
2
+ displayName(): string;
3
+ renderInput(input: {
4
+ notebook_path: string;
5
+ }, { verbose }: {
6
+ verbose: boolean;
7
+ }): string;
8
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
9
+ renderOutput(content: Array<{
10
+ cell: number;
11
+ }> | null): import("react/jsx-runtime").JSX.Element;
12
+ };
@@ -0,0 +1,10 @@
1
+ export declare const OutlookReadToolRenderers: {
2
+ displayName(): string;
3
+ renderInput(input: Record<string, unknown>, { verbose }?: {
4
+ verbose?: boolean;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
7
+ renderOutput(output: unknown, { verbose }?: {
8
+ verbose?: boolean;
9
+ }): import("react/jsx-runtime").JSX.Element;
10
+ };
@@ -0,0 +1,10 @@
1
+ export declare const OutlookReplyToolRenderers: {
2
+ displayName(): string;
3
+ renderInput(input: Record<string, unknown>, { verbose }?: {
4
+ verbose?: boolean;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
7
+ renderOutput(output: unknown, { verbose }?: {
8
+ verbose?: boolean;
9
+ }): import("react/jsx-runtime").JSX.Element;
10
+ };
@@ -0,0 +1,10 @@
1
+ export declare const OutlookSendToolRenderers: {
2
+ displayName(): string;
3
+ renderInput(input: Record<string, unknown>, { verbose }?: {
4
+ verbose?: boolean;
5
+ }): import("react/jsx-runtime").JSX.Element;
6
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
7
+ renderOutput(output: unknown, { verbose }?: {
8
+ verbose?: boolean;
9
+ }): import("react/jsx-runtime").JSX.Element;
10
+ };
@@ -0,0 +1,20 @@
1
+ interface PauseDelegationInput {
2
+ id?: string;
3
+ [key: string]: unknown;
4
+ }
5
+ interface PauseDelegationOutput {
6
+ success?: boolean;
7
+ error?: string;
8
+ message?: string;
9
+ }
10
+ export declare const PauseDelegationToolRenderers: {
11
+ displayName(): string;
12
+ renderInput(input: PauseDelegationInput, _opts?: {
13
+ verbose?: boolean;
14
+ }): string;
15
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
16
+ renderOutput(output: PauseDelegationOutput | string | null, _opts?: {
17
+ verbose?: boolean;
18
+ }): import("react/jsx-runtime").JSX.Element;
19
+ };
20
+ export {};
@@ -0,0 +1,26 @@
1
+ interface ProbeInput {
2
+ command?: string;
3
+ query?: string;
4
+ files?: string[] | string;
5
+ language?: string;
6
+ max_results?: number;
7
+ max_tokens?: number;
8
+ exact?: boolean;
9
+ reranker?: string;
10
+ session?: string;
11
+ extra_args?: string[];
12
+ allow_tests?: boolean;
13
+ path?: string;
14
+ [key: string]: unknown;
15
+ }
16
+ export declare const ProbeToolRenderers: {
17
+ displayName(): string;
18
+ renderInput(input: ProbeInput, { verbose }: {
19
+ verbose: boolean;
20
+ }): string;
21
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
22
+ renderOutput(output: unknown, { verbose }?: {
23
+ verbose?: boolean;
24
+ }, input?: ProbeInput): import("react/jsx-runtime").JSX.Element;
25
+ };
26
+ export {};
@@ -0,0 +1,29 @@
1
+ interface ProcessInput {
2
+ action?: string;
3
+ command?: string;
4
+ pid?: number;
5
+ [key: string]: unknown;
6
+ }
7
+ interface ProcessSession {
8
+ pid?: number;
9
+ command?: string;
10
+ status?: string;
11
+ }
12
+ interface ProcessOutput {
13
+ action?: string;
14
+ pid?: number;
15
+ output?: string;
16
+ exitCode?: number;
17
+ sessions?: ProcessSession[];
18
+ }
19
+ export declare const ProcessToolRenderers: {
20
+ displayName(): string;
21
+ renderInput(input: ProcessInput, _opts: {
22
+ verbose: boolean;
23
+ }): string;
24
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
25
+ renderOutput(output: ProcessOutput | string | null, _opts: {
26
+ verbose: boolean;
27
+ }): import("react/jsx-runtime").JSX.Element;
28
+ };
29
+ export {};
@@ -0,0 +1,24 @@
1
+ interface Quest {
2
+ id: string;
3
+ title: string;
4
+ status: string;
5
+ priority: number;
6
+ blocked_by?: string[];
7
+ notes?: string;
8
+ updatedAt?: string;
9
+ }
10
+ interface QuestListOutput {
11
+ quests: Quest[];
12
+ count: number;
13
+ }
14
+ export declare const QuestListToolRenderers: {
15
+ displayName(): string;
16
+ renderInput(input: {
17
+ status?: string;
18
+ }): string;
19
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
20
+ renderOutput(output: QuestListOutput, { verbose }: {
21
+ verbose: boolean;
22
+ }): import("react/jsx-runtime").JSX.Element;
23
+ };
24
+ export {};
@@ -0,0 +1,27 @@
1
+ interface QuestReportInput {
2
+ quest_id?: string;
3
+ [key: string]: unknown;
4
+ }
5
+ interface QuestReportData {
6
+ commits?: number;
7
+ filesChanged?: number;
8
+ commandsRun?: number;
9
+ cost?: number | string;
10
+ }
11
+ interface QuestReportOutput {
12
+ success?: boolean;
13
+ message?: string;
14
+ data?: QuestReportData;
15
+ error?: string;
16
+ }
17
+ export declare const QuestReportToolRenderers: {
18
+ displayName(): string;
19
+ renderInput(input: QuestReportInput, _opts?: {
20
+ verbose?: boolean;
21
+ }): string;
22
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
23
+ renderOutput(output: QuestReportOutput | string | null, _opts?: {
24
+ verbose?: boolean;
25
+ }): import("react/jsx-runtime").JSX.Element;
26
+ };
27
+ export {};
@@ -0,0 +1,24 @@
1
+ interface QuestResult {
2
+ id: string;
3
+ title: string;
4
+ status: string;
5
+ action: string;
6
+ error?: string;
7
+ }
8
+ interface QuestUpdateOutput {
9
+ quests: QuestResult[];
10
+ }
11
+ export declare const QuestUpdateToolRenderers: {
12
+ displayName(): string;
13
+ renderInput(input: {
14
+ action?: string;
15
+ title?: string;
16
+ id?: string;
17
+ quests?: unknown[];
18
+ }): string;
19
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
20
+ renderOutput(output: QuestUpdateOutput | unknown, { verbose }: {
21
+ verbose: boolean;
22
+ }): import("react/jsx-runtime").JSX.Element;
23
+ };
24
+ export {};
@@ -0,0 +1,23 @@
1
+ interface QuipCommentInput {
2
+ threadId?: string;
3
+ content?: string;
4
+ }
5
+ interface QuipCommentOutput {
6
+ success?: boolean;
7
+ message?: string;
8
+ data?: {
9
+ [key: string]: unknown;
10
+ };
11
+ [key: string]: unknown;
12
+ }
13
+ export declare const QuipCommentToolRenderers: {
14
+ displayName(): string;
15
+ renderInput(input: QuipCommentInput, { verbose }?: {
16
+ verbose?: boolean;
17
+ }): import("react/jsx-runtime").JSX.Element;
18
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
19
+ renderOutput(output: QuipCommentOutput | string | null, { verbose }?: {
20
+ verbose?: boolean;
21
+ }): import("react/jsx-runtime").JSX.Element;
22
+ };
23
+ export {};
@@ -0,0 +1,26 @@
1
+ interface QuipReadInput {
2
+ action?: string;
3
+ query?: string;
4
+ threadId?: string;
5
+ limit?: number;
6
+ }
7
+ interface QuipReadOutput {
8
+ success?: boolean;
9
+ message?: string;
10
+ data?: {
11
+ output?: string;
12
+ [key: string]: unknown;
13
+ };
14
+ [key: string]: unknown;
15
+ }
16
+ export declare const QuipReadToolRenderers: {
17
+ displayName(): string;
18
+ renderInput(input: QuipReadInput, { verbose }?: {
19
+ verbose?: boolean;
20
+ }): import("react/jsx-runtime").JSX.Element;
21
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
22
+ renderOutput(output: QuipReadOutput | string | null, { verbose }?: {
23
+ verbose?: boolean;
24
+ }): import("react/jsx-runtime").JSX.Element;
25
+ };
26
+ export {};
@@ -0,0 +1,19 @@
1
+ interface RestArionInput {
2
+ name?: string;
3
+ [key: string]: unknown;
4
+ }
5
+ interface RestArionOutput {
6
+ name?: string;
7
+ message?: string;
8
+ }
9
+ export declare const RestArionToolRenderers: {
10
+ displayName(): string;
11
+ renderInput(input: RestArionInput, _opts: {
12
+ verbose: boolean;
13
+ }): string;
14
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
15
+ renderOutput(output: RestArionOutput | string | null, _opts: {
16
+ verbose: boolean;
17
+ }): import("react/jsx-runtime").JSX.Element;
18
+ };
19
+ export {};
@@ -0,0 +1,20 @@
1
+ interface RestartInput {
2
+ reason?: string;
3
+ [key: string]: unknown;
4
+ }
5
+ interface RestartOutput {
6
+ success?: boolean;
7
+ error?: string;
8
+ message?: string;
9
+ }
10
+ export declare const RestartToolRenderers: {
11
+ displayName(): string;
12
+ renderInput(input: RestartInput, _opts?: {
13
+ verbose?: boolean;
14
+ }): string;
15
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
16
+ renderOutput(output: RestartOutput | string | null, _opts?: {
17
+ verbose?: boolean;
18
+ }): import("react/jsx-runtime").JSX.Element;
19
+ };
20
+ export {};
@@ -0,0 +1,21 @@
1
+ interface ResumeDelegationInput {
2
+ id?: string;
3
+ [key: string]: unknown;
4
+ }
5
+ interface ResumeDelegationOutput {
6
+ success?: boolean;
7
+ quest_id?: string;
8
+ error?: string;
9
+ message?: string;
10
+ }
11
+ export declare const ResumeDelegationToolRenderers: {
12
+ displayName(): string;
13
+ renderInput(input: ResumeDelegationInput, _opts?: {
14
+ verbose?: boolean;
15
+ }): string;
16
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
17
+ renderOutput(output: ResumeDelegationOutput | string | null, _opts?: {
18
+ verbose?: boolean;
19
+ }): import("react/jsx-runtime").JSX.Element;
20
+ };
21
+ export {};
@@ -0,0 +1,19 @@
1
+ interface RetireArionInput {
2
+ name?: string;
3
+ [key: string]: unknown;
4
+ }
5
+ interface RetireArionOutput {
6
+ name?: string;
7
+ message?: string;
8
+ }
9
+ export declare const RetireArionToolRenderers: {
10
+ displayName(): string;
11
+ renderInput(input: RetireArionInput, _opts: {
12
+ verbose: boolean;
13
+ }): string;
14
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
15
+ renderOutput(output: RetireArionOutput | string | null, _opts: {
16
+ verbose: boolean;
17
+ }): import("react/jsx-runtime").JSX.Element;
18
+ };
19
+ export {};
@@ -0,0 +1,44 @@
1
+ interface RgInput {
2
+ pattern: string;
3
+ path?: string;
4
+ file_type?: string;
5
+ ignore_case?: boolean;
6
+ smart_case?: boolean;
7
+ fixed_strings?: boolean;
8
+ word_regexp?: boolean;
9
+ invert?: boolean;
10
+ files_only?: boolean;
11
+ count?: boolean;
12
+ max_count?: number;
13
+ context?: number;
14
+ glob?: string;
15
+ extra_args?: string[];
16
+ }
17
+ interface RgMatch {
18
+ file: string;
19
+ line: number;
20
+ column?: number;
21
+ text: string;
22
+ submatch?: string;
23
+ }
24
+ interface RgCountResult {
25
+ file: string;
26
+ count: number;
27
+ }
28
+ interface RgNormalOutput {
29
+ matches: RgMatch[];
30
+ }
31
+ interface RgCountOutput {
32
+ counts: RgCountResult[];
33
+ total: number;
34
+ }
35
+ type RgOutput = RgNormalOutput | RgCountOutput;
36
+ export declare const RgToolRenderers: {
37
+ displayName(): string;
38
+ renderInput(input: RgInput, { verbose }?: {
39
+ verbose?: boolean;
40
+ }): string;
41
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
42
+ renderOutput(output: RgOutput): import("react/jsx-runtime").JSX.Element;
43
+ };
44
+ export {};
@@ -0,0 +1,31 @@
1
+ interface SearchInput {
2
+ query?: string;
3
+ sources?: string[];
4
+ limit?: number;
5
+ learn?: boolean;
6
+ adopt?: boolean;
7
+ [key: string]: unknown;
8
+ }
9
+ interface SearchResultItem {
10
+ kind: "tool" | "skill" | "memory";
11
+ name: string;
12
+ description: string;
13
+ source: string;
14
+ runnable?: boolean;
15
+ }
16
+ interface SearchOutput {
17
+ results?: SearchResultItem[];
18
+ platform?: {
19
+ os: string;
20
+ arch: string;
21
+ };
22
+ }
23
+ export declare const SearchKnowledgeToolRenderers: {
24
+ displayName(): string;
25
+ renderInput(input: SearchInput, { verbose }: {
26
+ verbose: boolean;
27
+ }): string;
28
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
29
+ renderOutput(output: SearchOutput | string | null): import("react/jsx-runtime").JSX.Element;
30
+ };
31
+ export {};
@@ -0,0 +1,10 @@
1
+ export declare const SearchMessagesToolRenderers: {
2
+ displayName(): string;
3
+ renderInput(input: Record<string, unknown>, { verbose }?: {
4
+ verbose?: boolean;
5
+ }): string;
6
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
7
+ renderOutput(output: unknown, { verbose }?: {
8
+ verbose?: boolean;
9
+ }): import("react/jsx-runtime").JSX.Element;
10
+ };
@@ -0,0 +1,11 @@
1
+ export declare const SelfDiagnoseToolRenderers: {
2
+ displayName(): string;
3
+ renderInput(input: {
4
+ focus?: string;
5
+ sections?: string[];
6
+ }): string;
7
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
8
+ renderOutput(output: unknown, { verbose }: {
9
+ verbose: boolean;
10
+ }): import("react/jsx-runtime").JSX.Element | null;
11
+ };
@@ -0,0 +1,8 @@
1
+ export declare const SendMessageToolRenderers: {
2
+ displayName(): string;
3
+ renderInput(input: Record<string, unknown>): string;
4
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
5
+ renderOutput(output: unknown, { verbose }?: {
6
+ verbose?: boolean;
7
+ }, input?: Record<string, unknown>): import("react/jsx-runtime").JSX.Element;
8
+ };
@@ -0,0 +1,18 @@
1
+ interface SerenaInput {
2
+ action: string;
3
+ name_path?: string;
4
+ body?: string;
5
+ pattern?: string;
6
+ new_name?: string;
7
+ relative_path?: string;
8
+ [key: string]: unknown;
9
+ }
10
+ export declare const SerenaToolRenderers: {
11
+ displayName(): string;
12
+ renderInput(input: SerenaInput, { verbose }: {
13
+ verbose: boolean;
14
+ }): string;
15
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
16
+ renderOutput(output: unknown): import("react/jsx-runtime").JSX.Element;
17
+ };
18
+ export {};
@@ -0,0 +1,32 @@
1
+ interface SessionHistoryInput {
2
+ action?: string;
3
+ query?: string;
4
+ [key: string]: unknown;
5
+ }
6
+ interface SessionInfo {
7
+ id?: string;
8
+ title?: string;
9
+ summary?: string;
10
+ messageCount?: number;
11
+ [key: string]: unknown;
12
+ }
13
+ interface SessionHistoryOutput {
14
+ success?: boolean;
15
+ message?: string;
16
+ data?: {
17
+ sessions?: SessionInfo[];
18
+ [key: string]: unknown;
19
+ };
20
+ error?: string;
21
+ }
22
+ export declare const SessionHistoryToolRenderers: {
23
+ displayName(): string;
24
+ renderInput(input: SessionHistoryInput, _opts?: {
25
+ verbose?: boolean;
26
+ }): string;
27
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
28
+ renderOutput(output: SessionHistoryOutput | string | null, _opts?: {
29
+ verbose?: boolean;
30
+ }): import("react/jsx-runtime").JSX.Element;
31
+ };
32
+ export {};
@@ -0,0 +1,8 @@
1
+ export declare const SgToolRenderers: {
2
+ displayName(): string;
3
+ renderInput(input: Record<string, unknown>, { verbose }?: {
4
+ verbose: boolean;
5
+ }): string;
6
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
7
+ renderOutput(output: unknown): import("react/jsx-runtime").JSX.Element;
8
+ };
@@ -0,0 +1,10 @@
1
+ export declare const SlackReactToolRenderers: {
2
+ displayName(): string;
3
+ renderInput(input: Record<string, unknown>, { verbose }?: {
4
+ verbose?: boolean;
5
+ }): string;
6
+ renderRejection(): import("react/jsx-runtime").JSX.Element;
7
+ renderOutput(output: unknown, { verbose }?: {
8
+ verbose?: boolean;
9
+ }): import("react/jsx-runtime").JSX.Element;
10
+ };