diff --git a/components/council/Council.tsx b/components/council/Council.tsx index f4552d6..dfc5cd5 100644 --- a/components/council/Council.tsx +++ b/components/council/Council.tsx @@ -127,58 +127,31 @@ export default function Council() { - {/* Agents */} -
+ {/* Agents - Grid Layout */} +
{currentTeam.agents.map((agent) => (
-
-
- - {agent.status.toUpperCase()} - - {agent.name} - — {agent.role} -
- {agent.lastRun && ( - Last: {new Date(agent.lastRun).toLocaleTimeString()} - )} +
+ + {agent.status.toUpperCase()} + + {agent.name}
-

{agent.description}

+

{agent.role}

{/* Open Agent Command Center */} - - {/* Task Input */} -
- + ))} +
type="text" value={runningTask} - onChange={(e) => setRunningTask(e.target.value)} - placeholder={`Ask ${agent.name} to...`} - className="flex-1 bg-white/10 border border-white/20 rounded-lg px-3 py-2 text-sm placeholder:text-white/40 focus:outline-none focus:border-brand-pink" - onKeyDown={(e) => e.key === "Enter" && spawnAgent(agent, runningTask)} - /> - -
- - {/* Output */} - {agentOutputs[agent.id] && ( -
- {agentOutputs[agent.id]} -
- )}
))}