# Agent Status Row

A specialist agent row showing identity, current task, presence state, and determinate progress.

## Installation

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

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

## Preview

```tsx
import { AgentStatusRow } 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">
      <AgentStatusRow />
    </div>
  );
}
```


## Source

### ui/agent-status-row.tsx

```tsx
"use client";

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

export { AgentStatusRow } from "@/components/amro/components/agents";
export type { AgentStatusRowProps } from "@/components/amro/components/agents";
```



## Usage

A specialist agent row showing identity, current task, presence state, and determinate progress.

### Package

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

<AgentStatusRow />
```

### shadcn copy

```tsx
import { AgentStatusRow } from "@/components/ui/agent-status-row";

<AgentStatusRow />
```

