/** * AgentsStep — Shows discovered agents after gateway connection. */ import { Bot, Users, WifiOff } from "lucide-react"; export type AgentsStepProps = { agentCount: number; connected: boolean; }; export const AgentsStep = ({ agentCount, connected }: AgentsStepProps) => { if (!connected) { return (

Connect to your gateway first to discover agents.

); } if (agentCount === 0) { return (

No agents found

Your gateway is connected, but no agents are configured yet. You can create agents from the Claw3D fleet sidebar after completing this wizard.

Quick start:

  1. 1. Click the + button in the fleet sidebar
  2. 2. Choose a name and model for your agent
  3. 3. Configure skills and personality
  4. 4. Watch your agent appear at their desk!
); } return (

{agentCount} agent{agentCount !== 1 ? "s" : ""} discovered

Your AI team is ready and waiting in the office.

What you can do with agents:

{[ { label: "Chat", desc: "Send messages and get responses" }, { label: "Approve", desc: "Review and approve exec commands" }, { label: "Configure", desc: "Edit brain files and settings" }, { label: "Monitor", desc: "Watch runtime activity in real time" }, ].map(({ label, desc }) => (

{label}

{desc}

))}
); };