- Refactor session state to use ptySessionId as primary key across all components - Add SessionStateManager with PTY-scoped hook processing, approval tracking, notifications - Add sync-engine debug panel (AgentStatesSection, HookTimelineSection, TerminalRegistrySection, WsMonitorSection) - Add useLifecycleStates composable for continuous state chips (session, responding, tool, subagent, compacting) - Add WS monitor endpoint and composable for real-time connection health - Enhance SessionLifecycleStatus with animated state chips and badge counts - Enhance SystemMessage with expanded content and better formatting - Update hooks (approval-permission, approval-plan, notify) with pty_session injection - Update approval system to derive pending lists from PTY-scoped state - Update ChatContainer with PTY-derived agent status and lifecycle events - Update AgentBadge with PTY-scoped status colors - Improve PiP window, approval window, and loading window handling
22 lines
1.3 KiB
TypeScript
22 lines
1.3 KiB
TypeScript
export { default as SessionSelector } from './SessionSelector.vue'
|
|
export { default as RawJsonViewer } from './RawJsonViewer.vue'
|
|
export { default as ChatContainer } from './ChatContainer.vue'
|
|
export { default as UserMessageBubble } from './UserMessageBubble.vue'
|
|
export { default as AssistantMessageBubble } from './AssistantMessageBubble.vue'
|
|
export { default as ThinkingBlock } from './ThinkingBlock.vue'
|
|
export { default as ToolCallBlock } from './ToolCallBlock.vue'
|
|
export { default as ToolResultBlock } from './ToolResultBlock.vue'
|
|
export { default as ProgressEvent } from './ProgressEvent.vue'
|
|
export { default as SystemMessage } from './SystemMessage.vue'
|
|
export { default as TurnEndDivider } from './TurnEndDivider.vue'
|
|
export { default as UserInput } from './UserInput.vue'
|
|
export { default as PermissionApproval } from './PermissionApproval.vue'
|
|
export { default as PlanApproval } from './PlanApproval.vue'
|
|
export { default as CodeBlock } from './CodeBlock.vue'
|
|
export { default as AgentBadge } from './AgentBadge.vue'
|
|
export { default as ResumeTerminalButton } from './ResumeTerminalButton.vue'
|
|
export { default as VoiceMicButton } from './VoiceMicButton.vue'
|
|
export { default as NewSessionModal } from './NewSessionModal.vue'
|
|
export { AquaticBackground } from './aquaticBackground'
|
|
export { SyncEnginePanel } from './sync-engine'
|