show thought

This commit is contained in:
Auto
2025-12-31 08:07:36 +02:00
parent f1cabd2d49
commit 5cb78a6b43
4 changed files with 182 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ import { SetupWizard } from './components/SetupWizard'
import { AddFeatureForm } from './components/AddFeatureForm'
import { FeatureModal } from './components/FeatureModal'
import { DebugLogViewer } from './components/DebugLogViewer'
import { AgentThought } from './components/AgentThought'
import { Plus, Loader2 } from 'lucide-react'
import type { Feature } from './lib/types'
@@ -182,6 +183,12 @@ function App() {
isConnected={wsState.isConnected}
/>
{/* Agent Thought - shows latest agent narrative */}
<AgentThought
logs={wsState.logs}
agentStatus={wsState.agentStatus}
/>
{/* Initializing Features State - show when agent is running but no features yet */}
{features &&
features.pending.length === 0 &&