tinytown 0.10.0

A simple, fast multi-agent orchestration system using Redis for message passing
Documentation
# tt history

Show recent agent communication history from the event stream.

## Usage

```bash
tt history [-n <limit>] [--agent <name>]
```

## Options

| Option | Short | Description |
|--------|-------|-------------|
| `--limit <N>` | `-n` | Maximum number of events to show (default: 30) |
| `--agent <NAME>` | `-a` | Filter to events involving a specific agent |

## Output

Events are displayed chronologically with timestamps, icons, and agent labels in `Nickname [role]` format:

```
πŸ“œ Recent History (5 events):

  14:23:01 🐣 *Frankie [backend]* Agent spawned
  14:23:02 πŸ“Œ *Frankie [backend]* Task assigned: implement auth API
  14:23:15 πŸ”„ *Frankie [backend]* State changed: Idle β†’ Working
  14:25:30 βœ… *Frankie [backend]* Task completed: implement auth API
  14:25:31 πŸ‘€ *Martha [reviewer]* Review handoff from backend
```

## Event Icons

| Icon | Event Type |
|------|-----------|
| 🐣 | Agent spawned |
| 🏁 | Agent stopped/completed |
| πŸ”„ | State changed |
| πŸ“Œ | Task assigned |
| βœ… | Task/review completed |
| ❌ | Task failed |
| 🀝 | Task delegated |
| πŸ‘€ | Reviewer handoff |
| 🚨 | Conductor escalation |
| ⏸️ | Agent interrupted |
| ▢️ | Agent resumed |
| 🎯 | Mission event |

## Examples

```bash
# Show last 30 events
tt history

# Show last 50 events
tt history -n 50

# Show only events for a specific agent
tt history --agent backend
```