# Recent Agent Activity

A dense chronological feed of agent research, tool calls, approvals, and real-world outcomes.

## Installation

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

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

## Preview

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


## Source

### ui/recent-agent-activity.tsx

```tsx
"use client";

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

export { RecentAgentActivity } from "@/components/amro/components/agents";
export type { RecentAgentActivityProps } from "@/components/amro/components/agents";
```



## Usage

A dense chronological feed of agent research, tool calls, approvals, and real-world outcomes.

### Package

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

<RecentAgentActivity />
```

### shadcn copy

```tsx
import { RecentAgentActivity } from "@/components/ui/recent-agent-activity";

<RecentAgentActivity />
```

