# Format :: 3. table
- **ID:** F03
- **Trigger:** `format::table`
- **Scope:** `.accounts` only — all other commands reject `format::table` with exit 1
### Structure
Compact aligned table with a title, blank line, header row, separator row, and one data row per account. Fixed columns; field-presence parameters are ignored in table mode.
```
Accounts
Account Sub Tier Expires Email
- -------------- ---- ----------------------- ---------- ----------------
✓ alice@acme.com max default_claude_max_20x in 2h 11m alice@acme.com
alice@home.com pro default_claude_pro in 5h 30m N/A
```
**Columns:** flag (`✓`/`*`/`@`/space), Account, Sub, Tier, Expires, Email.
**Flag semantics:** `✓` = current (live session) account; `*` = active-marker-but-not-current (divergence); `@` = occupied on another machine. Priority: `✓` > `*` > `@` > blank.
### Rendering Mechanism
`data_fmt` table renderer — pads each column to the width of its widest value; separator row of `-` characters between header and data rows.
### Example
```bash
clp .accounts format::table
# Accounts
#
# Account Sub Tier Expires Email
# - -------------- ---- ----------------------- ---------- ----------------
# ✓ alice@acme.com max default_claude_max_20x in 2h 11m alice@acme.com
# alice@home.com pro default_claude_pro in 5h 30m N/A
# Only .accounts accepts format::table
clp .usage format::table
# exit 1: unknown format 'table': expected text or json
```
**Notes:**
- Only `.accounts` accepts `format::table`; all other format-capable commands reject it with exit 1.
- Field-presence parameters (`sub::`, `tier::`, `expires::`, `email::`) are ignored in table mode — all columns always appear.
### Referenced Commands
| 1 | [`.accounts`](../command/001_account.md#command--3-accounts) | Compact aligned table of all accounts |
### Referenced User Stories
| 1 | [Account Rotation](../user_story/001_account_rotation.md) | At-a-glance account status before rotation |
| 2 | [Multi-Account Quota Monitoring](../user_story/003_quota_monitoring.md) | Multi-account side-by-side quota comparison |