---
title: "What's New"
description: "Latest Broodnet features, improvements, and fixes."
url: "https://broodnet.com/whats-new"
---

# What's New

Latest Broodnet features, improvements, and fixes — shipped continuously.

## v0.2.3 — CLI: watch, mark, inbox filters

_2026-04-23 · The CLI gets a batch of agent-quality-of-life upgrades: wait for the next email to arrive, filter and paginate your inbox, and flip message flags without touching the TUI._
## What's New

### `mail watch` — wait for the next email

Designed for OTP and verification flows. Run it after triggering a sign-up or password reset and it will open the arriving message automatically — no polling loop needed in your agent script.

```sh
broodnet mail watch --json
```

Opens immediately if a message arrived in the last 60 seconds. Otherwise polls every 3s for up to 60s and opens the first arrival. Returns the same shape as `mail open`.

### `mail inbox` — filters, pagination, sort

The inbox command now filters server-side so it stays fast on large mailboxes.

- **Flag filters**: `--unread`, `--read`, `--important`, `--answered`, `--unanswered` — combinable
- **Pagination**: `--limit` and `--offset` for walking through large inboxes page by page
- **Sort order**: `--sort=oldest` to flip the default newest-first ordering
- **Response metadata**: the JSON response now includes `total` and the active filter set

```sh
broodnet mail inbox --unread --important --limit=20 --offset=20 --json
```

### `mail mark` — set and clear flags

Mark messages as read, unread, flagged, or unflagged by UID without opening or deleting them. Accepts multiple UIDs in one call.

```sh
broodnet mail mark 1042 --seen
broodnet mail mark 10 11 12 --flagged
```

### `mail open` — leaner JSON

The HTML body is no longer included in the default JSON output. If you need the full raw source, use `--raw`.

---

## v0.2.0 — Agent Auth & New Homepage

_2026-04-17 · Agents can now authenticate themselves — and we gave the whole site a fresh new look._
## What's New

### Agent authentication

Agents can now handle their own auth flow end-to-end. Register an agent, claim it, and give it exactly the permissions it needs — no manual token juggling.

- **Agent registration**: Walk through a step-by-step onboarding wizard to connect a new agent
- **Host management**: Organise agents under hosts, view connection details, and track activity
- **Scoped permissions**: Grant agents only what they need — mailbox access, domain verification, and more
- **Notifications**: Get alerted when agents need attention or approvals are pending

### New homepage

We redesigned the Broodnet website from the ground up — cleaner layout, better messaging, and a lot more personality.

---

## v0.1.2 — Blog launch and app UI improvements

_2026-04-13 · We launched a blog, and shipped a round of UI/UX improvements across the app dashboard — cleaner navigation, better spacing, and a more consistent layout throughout._
## What's New

### App UI/UX improvements

A round of polish across the logged-in app experience:

- Cleaner navigation and layout consistency throughout the dashboard
- Improved spacing and visual hierarchy across all app sections
- Better responsive behaviour on smaller viewports
- Various small interaction fixes and accessibility improvements

### Blog

The [Broodnet Blog](https://broodnet.com/blog) is live. Expect updates, tutorials, and research on email infrastructure for AI agents.

---

## v0.1.1 — Custom Domains and CLI Improvements

_2026-03-30 · Broodnet now supports custom domains for email sending and receiving, along with powerful new CLI commands for mailbox management._
## What's New

We keep improving the Broodnet experience with new features, improvements, and bug fixes. Here's what's new in this release:

### Highlights

- **Custom domains**: Add your own domain for sending and receiving email (Paid plan only)
- **CLI Improvements**:
  - New `broodnet mail status` command shows live storage usage and mailbox status
  - `broodnet mail config` allows setting per-mailbox defaults like the default sender address
  - Improved email parsing and error handling across all mail commands

---

## v0.1.0 — Initial Release

_2026-03-16 · Broodnet is live. Provision real email inboxes for your AI agents in seconds._
## What's New

Welcome to Broodnet — email infrastructure built for AI agents. This initial release ships the core provisioning API, a basic dashboard, and IMAP-ready mailboxes.

### Highlights

- **Mailbox provisioning**: Create and manage real email inboxes via REST API
- **IMAP access**: Each mailbox comes with token-based IMAP credentials for reading email
- **Dashboard**: Manage all your mailboxes from a single view
- **Auth**: Email and password authentication with secure session management
- **NO SPAM**: Outbound email is only allowed between you and your agents, ensuring a safe environment.

### Known Limitations

- Single-organisation per account in this release

---

## v0.0.0 — Hello World!

_2026-02-10 · Hello World!_
## Hello World!

This is the first post in the Broodnet changelog. Here, we'll share updates on new features, improvements, and bug fixes as we continue to build and refine our email infrastructure for AI agents.