@parhelia/core 0.1.12776 → 0.1.12780
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/ui/button.d.ts +1 -1
- package/dist/editor/ai/AgentTerminal.d.ts +5 -1
- package/dist/editor/ai/AgentTerminal.js +740 -600
- package/dist/editor/ai/AgentTerminal.js.map +1 -1
- package/dist/editor/ai/AgentTerminalStatusBar.d.ts +7 -1
- package/dist/editor/ai/AgentTerminalStatusBar.js +8 -2
- package/dist/editor/ai/AgentTerminalStatusBar.js.map +1 -1
- package/dist/editor/ai/AiResponseMessage.js +1 -13
- package/dist/editor/ai/AiResponseMessage.js.map +1 -1
- package/dist/editor/ai/HeartbeatDiagnosticsPanel.d.ts +12 -0
- package/dist/editor/ai/HeartbeatDiagnosticsPanel.js +310 -0
- package/dist/editor/ai/HeartbeatDiagnosticsPanel.js.map +1 -0
- package/dist/editor/ai/ToolCallDisplay.d.ts +1 -3
- package/dist/editor/ai/ToolCallDisplay.js +7 -37
- package/dist/editor/ai/ToolCallDisplay.js.map +1 -1
- package/dist/editor/ai/agentDiagnostics.d.ts +24 -51
- package/dist/editor/ai/agentDiagnostics.js +22 -199
- package/dist/editor/ai/agentDiagnostics.js.map +1 -1
- package/dist/editor/ai/agentDiagnostics.test.js +93 -322
- package/dist/editor/ai/agentDiagnostics.test.js.map +1 -1
- package/dist/editor/ai/agentRecoveryEventBus.d.ts +10 -0
- package/dist/editor/ai/agentRecoveryEventBus.js +18 -0
- package/dist/editor/ai/agentRecoveryEventBus.js.map +1 -0
- package/dist/editor/ai/agentWatchdogStatusRegistry.d.ts +17 -0
- package/dist/editor/ai/agentWatchdogStatusRegistry.js +25 -0
- package/dist/editor/ai/agentWatchdogStatusRegistry.js.map +1 -0
- package/dist/editor/client/EditorShell.js +8 -7
- package/dist/editor/client/EditorShell.js.map +1 -1
- package/dist/editor/reviews/Comment.js +9 -0
- package/dist/editor/reviews/Comment.js.map +1 -1
- package/dist/editor/services/agentService.d.ts +1 -0
- package/dist/editor/services/agentService.js.map +1 -1
- package/dist/editor/settings/SettingsHeaderActionsContext.d.ts +0 -1
- package/dist/editor/settings/SettingsHeaderActionsContext.js +0 -3
- package/dist/editor/settings/SettingsHeaderActionsContext.js.map +1 -1
- package/dist/editor/settings/SettingsView.js +1 -1
- package/dist/editor/settings/SettingsView.js.map +1 -1
- package/dist/revision.d.ts +2 -2
- package/dist/revision.js +2 -2
- package/dist/splash-screen/ParheliaAssistantChat.js +61 -16
- package/dist/splash-screen/ParheliaAssistantChat.js.map +1 -1
- package/dist/splash-screen/SplashScreenAgentContext.d.ts +28 -0
- package/dist/splash-screen/SplashScreenAgentContext.js +51 -0
- package/dist/splash-screen/SplashScreenAgentContext.js.map +1 -0
- package/dist/task-board/TaskBoardWorkspace.js +31 -1
- package/dist/task-board/TaskBoardWorkspace.js.map +1 -1
- package/dist/task-board/components/TaskBoardTitlebar.js +6 -2
- package/dist/task-board/components/TaskBoardTitlebar.js.map +1 -1
- package/dist/task-board/services/taskService.d.ts +3 -0
- package/dist/task-board/services/taskService.js +4 -0
- package/dist/task-board/services/taskService.js.map +1 -1
- package/dist/task-board/taskBoardNavStore.d.ts +1 -0
- package/dist/task-board/taskBoardNavStore.js +1 -0
- package/dist/task-board/taskBoardNavStore.js.map +1 -1
- package/dist/task-board/types.d.ts +3 -0
- package/dist/task-board/views/DependencyGraphView.js +9 -8
- package/dist/task-board/views/DependencyGraphView.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
declare const buttonVariants: (props?: ({
|
|
3
|
-
variant?: "
|
|
3
|
+
variant?: "link" | "select" | "outline" | "default" | "defaultInverted" | "destructive" | "secondary" | "ghost" | null | undefined;
|
|
4
4
|
size?: "select" | "default" | "icon" | "sm" | "xs" | "xxs" | "lg" | "iconSm" | "iconXs" | null | undefined;
|
|
5
5
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
6
6
|
type BaseButtonProps = React.ComponentProps<"button"> & {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { AgentChatMessage, Agent, AgentMetadata } from "../services/agentService";
|
|
3
3
|
import { AiProfile } from "../services/aiService";
|
|
4
|
-
export declare function AgentTerminal({ agentStub, initialMetadata, profiles, onReloadProfiles, isActive, isVisible, isFocused, compact, displayMode, showSummaryInput, hideContext, hideBottomControls, hideGreeting, defaultCollapseJson, simpleMode, className, initialPrompt, onAgentUpdate, onMessage, onInteractionSubmitted, onQuestionnaireOpenChange, questionnaireFooterActions, hideSummaryMessages, summaryPlaceholderActions, summaryPlaceholderMessage, hideSummaryWaitingPlaceholder, }: {
|
|
4
|
+
export declare function AgentTerminal({ agentStub, initialMetadata, profiles, onReloadProfiles, isActive, isVisible, isFocused, compact, displayMode, showSummaryInput, hideContext, hideBottomControls, showStatusBar, showAgentConfigControls, hideGreeting, defaultCollapseJson, simpleMode, className, initialPrompt, onAgentUpdate, onMessage, onInteractionSubmitted, onQuestionnaireOpenChange, questionnaireFooterActions, hideSummaryMessages, summaryPlaceholderActions, summaryPlaceholderMessage, hideSummaryWaitingPlaceholder, }: {
|
|
5
5
|
agentStub: Agent;
|
|
6
6
|
initialMetadata?: AgentMetadata;
|
|
7
7
|
profiles: AiProfile[];
|
|
@@ -17,6 +17,10 @@ export declare function AgentTerminal({ agentStub, initialMetadata, profiles, on
|
|
|
17
17
|
showSummaryInput?: boolean;
|
|
18
18
|
hideContext?: boolean;
|
|
19
19
|
hideBottomControls?: boolean;
|
|
20
|
+
/** Force the bottom status bar (model/context/cost) to render even when bottom controls are hidden. Defaults to `!hideBottomControls`. */
|
|
21
|
+
showStatusBar?: boolean;
|
|
22
|
+
/** Force the agent configuration row (mode selector, Agent settings popover) to render even when bottom controls are hidden. Defaults to `!hideBottomControls`. */
|
|
23
|
+
showAgentConfigControls?: boolean;
|
|
20
24
|
hideGreeting?: boolean;
|
|
21
25
|
defaultCollapseJson?: boolean;
|
|
22
26
|
simpleMode?: boolean;
|