# Agent Team Panel

A coordinated specialist-team panel for monitoring active, waiting, completed, and failed agents.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/agent-team-panel.json
```

[Registry JSON](https://amro-ui.vercel.app/r/agent-team-panel.json)

## Preview

```tsx
import { AgentTeamPanel } from "@amro-ui/react";

export function Preview() {
  return (
    <div className="grid min-h-72 w-full place-items-center rounded-xl border bg-background p-6 sm:p-10">
      <AgentTeamPanel />
    </div>
  );
}
```


## Source

### ui/agent-team-panel.tsx

```tsx
"use client";

import "@/components/amro/amro-ui.css";

export { AgentTeamPanel } from "@/components/amro/components/agents";
export type { AgentTeamPanelProps } from "@/components/amro/components/agents";
```



## Usage

A coordinated specialist-team panel for monitoring active, waiting, completed, and failed agents.

### Package

```tsx
import { AgentTeamPanel } from "@amro-ui/react";

<AgentTeamPanel />
```

### shadcn copy

```tsx
import { AgentTeamPanel } from "@/components/ui/agent-team-panel";

<AgentTeamPanel />
```

