Merged
Conversation
React + TypeScript + Vite frontend for composable-agents API. Features: - Agent management (CRUD with YAML upload) - Real-time chat with SSE streaming - HITL (Human-in-the-loop) support - Thread history grouped by agent Stack: React 18, Tailwind CSS, shadcn/ui, Zustand, React Query Architecture: Hexagonal (domain/infrastructure/application) CI/CD: Build + tests + Trivy + SonarQube / Docker + Flux
- Add agent selection dialog in ThreadSidebar for new conversations - Show user message immediately (optimistic rendering) before API response - Add stream/standard mode toggle in ChatInput - Default to standard mode (streaming has backend issues) - Show typing indicator during streaming - 61 tests passing
Backend streaming fix applied (composable-agents PR #8). Set useStreaming=true as default in useChatStore.
- Auto-scroll triggers on pendingUserMessage and isStreaming changes - Add overflow-hidden on AI message bubble container - Add break-words and overflow-wrap-anywhere on markdown content - Add overflow-x-auto on code blocks
Replace subtle "..." text with a spinner + "Thinking..." label in an agent-styled bubble. Shows immediately after sending a message, before any streaming content arrives.
Show spinner throughout the streaming session, not just before first chunk. Displays "Thinking..." initially, then "Processing..." once content starts arriving. Stays visible until stream fully completes.
Single agent bubble with content + spinner at the bottom. Shows "Thinking..." before first chunk, then content + "Processing..." below until stream completes.
…e configuration files
SonarQube fixes (27 of 32 resolved): - Replace div role="dialog" with native <dialog> elements - Add Readonly<> to all component props (S6759) - Fix ambiguous JSX spacing (S6772) - Extract nested ternary (S3358) - Remove deprecated FormEvent imports (S1874) - Remove unnecessary type assertions (S4325) - Fix unknown|null union type (S6571) Coverage: 46.9% → 79.1% (148 tests, +87 new tests) - Hook tests for all agent and chat hooks - Component tests: AgentConfigViewer, CreateAgentDialog, TopNav, MainLayout, HITLReviewPanel - Infrastructure: axiosInstance interceptor test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Jira
BRIC-4
Changes
Tests