@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.
- package/bin/aria-dev.js +15 -0
- package/bin/aria.js +366 -0
- package/bin/install-owner-lease.d.ts +8 -0
- package/bin/install-owner-lease.js +53 -0
- package/dist/.aria-build-stamp.json +4 -0
- package/dist/attached-local-control-client.d.ts +90 -0
- package/dist/bootstrap-local-control-client.d.ts +1 -0
- package/dist/capability-aware-method-proxy.d.ts +1 -0
- package/dist/cli-context.d.ts +31 -0
- package/dist/commands/arions.d.ts +14 -0
- package/dist/commands/auth.d.ts +27 -0
- package/dist/commands/daemon.d.ts +31 -0
- package/dist/commands/definitions.d.ts +19 -0
- package/dist/commands/index.d.ts +13 -0
- package/dist/commands/login-handler.d.ts +108 -0
- package/dist/commands/logout-handler.d.ts +24 -0
- package/dist/commands/memory-handlers.d.ts +15 -0
- package/dist/commands/pairing.d.ts +2 -0
- package/dist/commands/peer-message-handler.d.ts +7 -0
- package/dist/commands/runtime-cutover-reset-command.d.ts +2 -0
- package/dist/commands/runtime-cutover-reset.d.ts +26 -0
- package/dist/commands/terminal-setup.d.ts +3 -0
- package/dist/config/aria-config.d.ts +50 -0
- package/dist/config/index.d.ts +4 -0
- package/dist/config/loader.d.ts +17 -0
- package/dist/config.d.ts +53 -0
- package/dist/daemon-info.d.ts +17 -0
- package/dist/ensure-daemon.d.ts +21 -0
- package/dist/event-loop-watchdog.d.ts +31 -0
- package/dist/headless/auth-orchestrator.d.ts +19 -0
- package/dist/headless/auth-service.d.ts +15 -0
- package/dist/headless/bootstrap-fast-path.d.ts +12 -0
- package/dist/headless/call-command.d.ts +8 -0
- package/dist/headless/daemon-service.d.ts +14 -0
- package/dist/headless/hook-actions.d.ts +40 -0
- package/dist/headless/hook-service.d.ts +8 -0
- package/dist/headless/kernel-services.d.ts +8 -0
- package/dist/headless/kernel.d.ts +118 -0
- package/dist/headless/operations/arion.d.ts +3 -0
- package/dist/headless/operations/auth.d.ts +4 -0
- package/dist/headless/operations/client.d.ts +2 -0
- package/dist/headless/operations/config.d.ts +3 -0
- package/dist/headless/operations/daemon.d.ts +3 -0
- package/dist/headless/operations/hook.d.ts +3 -0
- package/dist/headless/operations/index.d.ts +10 -0
- package/dist/headless/operations/memory.d.ts +3 -0
- package/dist/headless/operations/message.d.ts +2 -0
- package/dist/headless/operations/model.d.ts +3 -0
- package/dist/headless/operations/peer.d.ts +2 -0
- package/dist/headless/operations/run.d.ts +3 -0
- package/dist/headless/operations/session.d.ts +74 -0
- package/dist/headless/operations/subscription.d.ts +2 -0
- package/dist/headless/operations/system.d.ts +3 -0
- package/dist/headless/operations/utils.d.ts +5 -0
- package/dist/headless/run-orchestrator.d.ts +38 -0
- package/dist/headless/stdio-server.d.ts +4 -0
- package/dist/history/SessionHistory.d.ts +200 -0
- package/dist/history/conversation-message.d.ts +181 -0
- package/dist/history/index.d.ts +8 -0
- package/dist/history/jsonl-replay.d.ts +38 -0
- package/dist/history/repair-tool-pairing.d.ts +14 -0
- package/dist/history/turn-accumulator.d.ts +85 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +505 -0
- package/dist/ink-repl.d.ts +32 -0
- package/dist/local-control-bootstrap.d.ts +5 -0
- package/dist/local-control-client.d.ts +1 -0
- package/dist/local-control-error-reporting.d.ts +6 -0
- package/dist/local-control-http-client.d.ts +9 -0
- package/dist/network-security.d.ts +7 -0
- package/dist/networking-server.d.ts +28 -0
- package/dist/peer-identity.d.ts +3 -0
- package/dist/polling-subscription.d.ts +7 -0
- package/dist/relaunch.d.ts +55 -0
- package/dist/release-notes.d.ts +11 -0
- package/dist/repl-cleanup.d.ts +20 -0
- package/dist/selectable-client.d.ts +7 -0
- package/dist/selectable-peer.d.ts +12 -0
- package/dist/session.d.ts +103 -0
- package/dist/slash-commands.d.ts +34 -0
- package/dist/sounds.d.ts +31 -0
- package/dist/ui/App.d.ts +288 -0
- package/dist/ui/components/AnthropicMethodPicker.d.ts +9 -0
- package/dist/ui/components/ArionPrompt.d.ts +8 -0
- package/dist/ui/components/AutocompleteDropdown.d.ts +9 -0
- package/dist/ui/components/AutonomySelector.d.ts +12 -0
- package/dist/ui/components/Banner.d.ts +9 -0
- package/dist/ui/components/ConversationHistory.d.ts +59 -0
- package/dist/ui/components/CopilotDeviceLoginFlow.d.ts +15 -0
- package/dist/ui/components/CopilotSourcePicker.d.ts +13 -0
- package/dist/ui/components/Cost.d.ts +8 -0
- package/dist/ui/components/CustomSelect/option-map.d.ts +15 -0
- package/dist/ui/components/CustomSelect/select-option.d.ts +20 -0
- package/dist/ui/components/CustomSelect/select.d.ts +55 -0
- package/dist/ui/components/CustomSelect/use-select-state.d.ts +99 -0
- package/dist/ui/components/CustomSelect/use-select.d.ts +14 -0
- package/dist/ui/components/ErrorDisplay.d.ts +26 -0
- package/dist/ui/components/FallbackToolUseRejectedMessage.d.ts +2 -0
- package/dist/ui/components/FileEditToolUpdatedMessage.d.ts +9 -0
- package/dist/ui/components/HandoffMarker.d.ts +17 -0
- package/dist/ui/components/HighlightedCode.d.ts +7 -0
- package/dist/ui/components/InputArea.d.ts +17 -0
- package/dist/ui/components/Message.d.ts +16 -0
- package/dist/ui/components/OAuthLoginFlow.d.ts +25 -0
- package/dist/ui/components/OutputTruncation.d.ts +16 -0
- package/dist/ui/components/PermissionPrompt.d.ts +22 -0
- package/dist/ui/components/PipelineTimingPanel.d.ts +13 -0
- package/dist/ui/components/ProviderMethodPicker.d.ts +16 -0
- package/dist/ui/components/ProviderPicker.d.ts +15 -0
- package/dist/ui/components/RenderItemView.d.ts +18 -0
- package/dist/ui/components/Spinner.d.ts +3 -0
- package/dist/ui/components/StatusBar.d.ts +78 -0
- package/dist/ui/components/StreamingIndicator.d.ts +11 -0
- package/dist/ui/components/StructuredDiff.d.ts +20 -0
- package/dist/ui/components/TextInputOverlay.d.ts +9 -0
- package/dist/ui/components/ThinkingBlock.d.ts +53 -0
- package/dist/ui/components/ToolCost.d.ts +8 -0
- package/dist/ui/components/ToolExecution.d.ts +13 -0
- package/dist/ui/components/ToolHeader.d.ts +10 -0
- package/dist/ui/components/ToolRenderLayoutContext.d.ts +10 -0
- package/dist/ui/components/ToolResultWrapper.d.ts +6 -0
- package/dist/ui/components/ToolUseLoader.d.ts +10 -0
- package/dist/ui/components/TraceWaterfall.d.ts +56 -0
- package/dist/ui/components/index.d.ts +29 -0
- package/dist/ui/components/messages/AssistantTextMessage.d.ts +13 -0
- package/dist/ui/components/messages/UserImageMessage.d.ts +8 -0
- package/dist/ui/components/messages/UserTextMessage.d.ts +13 -0
- package/dist/ui/components/overlays/ArionSelector.d.ts +18 -0
- package/dist/ui/components/overlays/ClientSelector.d.ts +7 -0
- package/dist/ui/components/overlays/CommandPalette.d.ts +14 -0
- package/dist/ui/components/overlays/InviteShareOverlay.d.ts +7 -0
- package/dist/ui/components/overlays/JoinInviteOverlay.d.ts +6 -0
- package/dist/ui/components/overlays/MemoryBrowser.d.ts +17 -0
- package/dist/ui/components/overlays/MessageSelector.d.ts +20 -0
- package/dist/ui/components/overlays/ModelSelector.d.ts +17 -0
- package/dist/ui/components/overlays/PairRequestOverlay.d.ts +19 -0
- package/dist/ui/components/overlays/PeerSelector.d.ts +14 -0
- package/dist/ui/components/overlays/SessionSelector.d.ts +11 -0
- package/dist/ui/components/overlays/ThemeSelector.d.ts +22 -0
- package/dist/ui/components/overlays/index.d.ts +13 -0
- package/dist/ui/components/permissions/BashPermissionRequest/BashPermissionRequest.d.ts +9 -0
- package/dist/ui/components/permissions/FallbackPermissionRequest.d.ts +9 -0
- package/dist/ui/components/permissions/FileEditPermissionRequest/FileEditPermissionRequest.d.ts +9 -0
- package/dist/ui/components/permissions/FileEditPermissionRequest/FileEditToolDiff.d.ts +11 -0
- package/dist/ui/components/permissions/FileWritePermissionRequest/FileWritePermissionRequest.d.ts +9 -0
- package/dist/ui/components/permissions/FileWritePermissionRequest/FileWriteToolDiff.d.ts +9 -0
- package/dist/ui/components/permissions/FilesystemPermissionRequest/FilesystemPermissionRequest.d.ts +5 -0
- package/dist/ui/components/permissions/PermissionRequest.d.ts +52 -0
- package/dist/ui/components/permissions/PermissionRequestTitle.d.ts +13 -0
- package/dist/ui/components/permissions/hooks.d.ts +10 -0
- package/dist/ui/components/permissions/toolUseOptions.d.ts +10 -0
- package/dist/ui/components/permissions/utils.d.ts +6 -0
- package/dist/ui/components/text-input/Cursor.d.ts +58 -0
- package/dist/ui/components/text-input/TextInput.d.ts +98 -0
- package/dist/ui/components/text-input/imagePaste.d.ts +2 -0
- package/dist/ui/components/text-input/index.d.ts +6 -0
- package/dist/ui/components/text-input/useDoublePress.d.ts +2 -0
- package/dist/ui/components/text-input/useTextInput.d.ts +34 -0
- package/dist/ui/components/tool-types.d.ts +28 -0
- package/dist/ui/constants/figures.d.ts +1 -0
- package/dist/ui/constants/index.d.ts +1 -0
- package/dist/ui/display-mode.d.ts +62 -0
- package/dist/ui/display-policy.d.ts +3 -0
- package/dist/ui/hooks/index.d.ts +4 -0
- package/dist/ui/hooks/useCommandAutocomplete.d.ts +28 -0
- package/dist/ui/hooks/useDoublePress.d.ts +13 -0
- package/dist/ui/hooks/useIndicatorState.d.ts +3 -0
- package/dist/ui/hooks/useInterval.d.ts +6 -0
- package/dist/ui/hooks/useKeyboardShortcuts.d.ts +17 -0
- package/dist/ui/hooks/usePeerMessages.d.ts +26 -0
- package/dist/ui/hooks/useTerminalSize.d.ts +6 -0
- package/dist/ui/hooks/useUnifiedMessages.d.ts +83 -0
- package/dist/ui/indicator-state.d.ts +46 -0
- package/dist/ui/markdown/highlight.d.ts +8 -0
- package/dist/ui/markdown/index.d.ts +16 -0
- package/dist/ui/markdown/tokenizer.d.ts +17 -0
- package/dist/ui/render-item.d.ts +70 -0
- package/dist/ui/screens/REPL.d.ts +288 -0
- package/dist/ui/status-line.d.ts +32 -0
- package/dist/ui/theme/index.d.ts +8 -0
- package/dist/ui/theme/themes/claude-dark-daltonized.d.ts +2 -0
- package/dist/ui/theme/themes/claude-dark.d.ts +2 -0
- package/dist/ui/theme/themes/claude-light-daltonized.d.ts +2 -0
- package/dist/ui/theme/themes/claude-light.d.ts +2 -0
- package/dist/ui/theme/themes/dark-accessible.d.ts +2 -0
- package/dist/ui/theme/themes/dark.d.ts +2 -0
- package/dist/ui/theme/themes/light-accessible.d.ts +2 -0
- package/dist/ui/theme/themes/light.d.ts +2 -0
- package/dist/ui/theme/types.d.ts +51 -0
- package/dist/ui/theme.d.ts +51 -0
- package/dist/ui/to-render-items.d.ts +7 -0
- package/dist/ui/tools/AgentTool/index.d.ts +8 -0
- package/dist/ui/tools/ArchitectTool/index.d.ts +10 -0
- package/dist/ui/tools/AskUserTool/index.d.ts +19 -0
- package/dist/ui/tools/BashTool/BashToolResultMessage.d.ts +13 -0
- package/dist/ui/tools/BashTool/OutputLine.d.ts +6 -0
- package/dist/ui/tools/BashTool/index.d.ts +8 -0
- package/dist/ui/tools/BrowseTool/index.d.ts +20 -0
- package/dist/ui/tools/BrowserTool/index.d.ts +25 -0
- package/dist/ui/tools/CbmTool/index.d.ts +81 -0
- package/dist/ui/tools/CheckDelegationTool/index.d.ts +23 -0
- package/dist/ui/tools/CheckMessagesTool/index.d.ts +8 -0
- package/dist/ui/tools/CreateQuipTool/index.d.ts +10 -0
- package/dist/ui/tools/CreateSkillTool/index.d.ts +13 -0
- package/dist/ui/tools/CreateToolTool/index.d.ts +10 -0
- package/dist/ui/tools/DelegateRemoteTool/index.d.ts +22 -0
- package/dist/ui/tools/DeployTool/index.d.ts +24 -0
- package/dist/ui/tools/FffTool/index.d.ts +17 -0
- package/dist/ui/tools/FileEditTool/index.d.ts +10 -0
- package/dist/ui/tools/FileReadTool/index.d.ts +10 -0
- package/dist/ui/tools/FileWriteTool/index.d.ts +10 -0
- package/dist/ui/tools/FrgTool/index.d.ts +17 -0
- package/dist/ui/tools/GetThreadTool/index.d.ts +10 -0
- package/dist/ui/tools/GlobTool/index.d.ts +11 -0
- package/dist/ui/tools/GrepTool/index.d.ts +12 -0
- package/dist/ui/tools/HatchArionTool/index.d.ts +20 -0
- package/dist/ui/tools/LearnSkillTool/index.d.ts +13 -0
- package/dist/ui/tools/LearnTool/index.d.ts +15 -0
- package/dist/ui/tools/LearnToolTool/index.d.ts +14 -0
- package/dist/ui/tools/ListClientsTool/index.d.ts +10 -0
- package/dist/ui/tools/LspTool/index.d.ts +11 -0
- package/dist/ui/tools/MCPTool/index.d.ts +11 -0
- package/dist/ui/tools/ManageNetworkTool/index.d.ts +28 -0
- package/dist/ui/tools/MemoryReadTool/index.d.ts +8 -0
- package/dist/ui/tools/MemoryWriteTool/index.d.ts +6 -0
- package/dist/ui/tools/NotebookEditTool/index.d.ts +19 -0
- package/dist/ui/tools/NotebookReadTool/index.d.ts +12 -0
- package/dist/ui/tools/OutlookReadTool/index.d.ts +10 -0
- package/dist/ui/tools/OutlookReplyTool/index.d.ts +10 -0
- package/dist/ui/tools/OutlookSendTool/index.d.ts +10 -0
- package/dist/ui/tools/PauseDelegationTool/index.d.ts +20 -0
- package/dist/ui/tools/ProbeTool/index.d.ts +26 -0
- package/dist/ui/tools/ProcessTool/index.d.ts +29 -0
- package/dist/ui/tools/QuestListTool/index.d.ts +24 -0
- package/dist/ui/tools/QuestReportTool/index.d.ts +27 -0
- package/dist/ui/tools/QuestUpdateTool/index.d.ts +24 -0
- package/dist/ui/tools/QuipCommentTool/index.d.ts +23 -0
- package/dist/ui/tools/QuipReadTool/index.d.ts +26 -0
- package/dist/ui/tools/RestArionTool/index.d.ts +19 -0
- package/dist/ui/tools/RestartTool/index.d.ts +20 -0
- package/dist/ui/tools/ResumeDelegationTool/index.d.ts +21 -0
- package/dist/ui/tools/RetireArionTool/index.d.ts +19 -0
- package/dist/ui/tools/RgTool/index.d.ts +44 -0
- package/dist/ui/tools/SearchKnowledgeTool/index.d.ts +31 -0
- package/dist/ui/tools/SearchMessagesTool/index.d.ts +10 -0
- package/dist/ui/tools/SelfDiagnoseTool/index.d.ts +11 -0
- package/dist/ui/tools/SendMessageTool/index.d.ts +8 -0
- package/dist/ui/tools/SerenaTool/index.d.ts +18 -0
- package/dist/ui/tools/SessionHistoryTool/index.d.ts +32 -0
- package/dist/ui/tools/SgTool/index.d.ts +8 -0
- package/dist/ui/tools/SlackReactTool/index.d.ts +10 -0
- package/dist/ui/tools/SlackReadTool/index.d.ts +10 -0
- package/dist/ui/tools/SlackSendTool/index.d.ts +10 -0
- package/dist/ui/tools/SpawnWorkerTool/index.d.ts +18 -0
- package/dist/ui/tools/StickerRequestTool/index.d.ts +6 -0
- package/dist/ui/tools/ThinkTool/index.d.ts +8 -0
- package/dist/ui/tools/UgTool/index.d.ts +47 -0
- package/dist/ui/tools/UseSkillTool/index.d.ts +17 -0
- package/dist/ui/tools/WakeArionTool/index.d.ts +19 -0
- package/dist/ui/tools/WebFetchTool/index.d.ts +20 -0
- package/dist/ui/tools/WebSearchTool/index.d.ts +21 -0
- package/dist/ui/tools/lsTool/index.d.ts +12 -0
- package/dist/ui/tools/registry.d.ts +15 -0
- package/dist/ui/tools/tool-renderer.d.ts +24 -0
- package/dist/ui/tools/truncation.d.ts +6 -0
- package/dist/ui/types/anthropic.d.ts +19 -0
- package/dist/ui/types/index.d.ts +3 -0
- package/dist/ui/types/message.d.ts +19 -0
- package/dist/ui/types/tool.d.ts +17 -0
- package/dist/ui/utils/array.d.ts +1 -0
- package/dist/ui/utils/cursor.d.ts +28 -0
- package/dist/ui/utils/diff.d.ts +24 -0
- package/dist/ui/utils/format.d.ts +3 -0
- package/dist/ui/utils/fuzzy.d.ts +11 -0
- package/dist/ui/utils/index.d.ts +9 -0
- package/dist/ui/utils/keys.d.ts +6 -0
- package/dist/ui/utils/patch.d.ts +8 -0
- package/dist/ui/utils/risk.d.ts +14 -0
- package/dist/ui/utils/terminal-image.d.ts +18 -0
- package/dist/ui/utils/validation.d.ts +8 -0
- package/dist/ui/verb-pairs.d.ts +20 -0
- package/dist/ui.d.ts +70 -0
- 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,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
|
+
};
|