Skip to content
pandacoderz/ui

Agent Inbox

Parallel agent runs as cards with status, progress, and an expandable detail panel.

Agent Inbox
Open preview

What’s inside

  • Run cards show status, agent, elapsed time, step progress, and the latest output line.
  • Filters by status with live counts.
  • Detail panel renders the run’s steps and markdown output, with approve, request changes, and retry actions.

Installation

npx shadcn@latest add https://ui.spencerwueste.com/r/agent-inbox.json

The registry item pulls in every component it depends on.

Usage

import AgentInbox from "@/components/blocks/agent-inbox/agent-inbox";

export default function Page() {
  return (
    <div className="h-dvh p-4">
      <AgentInbox />
    </div>
  );
}

Give the parent a bounded height. The block fills it and scrolls internally.

Going live

Pass your own runs and subscribe to updates from your orchestrator. The simulated interval that advances running steps is only there so the demo moves.