From 500fec175dd1859ce2e13e84e09ba440244ad655 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arnaud=20H=C3=A9ritier?= Date: Wed, 8 Jul 2026 04:05:09 +0000 Subject: [PATCH 1/3] docs: update for changes from PR #3509 (add /custom to slash commands table) --- docs/features/tui/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/features/tui/index.md b/docs/features/tui/index.md index c939f1e234..61be680617 100644 --- a/docs/features/tui/index.md +++ b/docs/features/tui/index.md @@ -77,6 +77,7 @@ Type `/` during a session to see available commands, or press Ctrl+`, or `/effort` alone to pick from the supported levels; reasoning models only) | +| `/custom` | Customize the TUI layout: sidebar position and visible sidebar sections | | `/theme` | Change the color theme | | `/yolo` | Toggle automatic tool call approval | | `/title` | Set or regenerate session title | From 4ae6ed3e1951598f1943f832b6e3a962e8cf10e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arnaud=20H=C3=A9ritier?= Date: Wed, 8 Jul 2026 04:05:13 +0000 Subject: [PATCH 2/3] docs: update for changes from PR #3516 (document intermediate card startup statuses) --- docs/features/board/index.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/features/board/index.md b/docs/features/board/index.md index 1595f354f3..3012c22c63 100644 --- a/docs/features/board/index.md +++ b/docs/features/board/index.md @@ -25,6 +25,11 @@ Requirements: `tmux` and `git` must be installed. a dedicated tmux session, working in a fresh git worktree branched from the project's upstream default branch. The card's title, running/idle status, and failures are mirrored live from the agent's control plane. +- **Startup phases.** While an agent is coming up its card moves through three + intermediate statuses before reaching **running**: `starting` (tmux session + created, process booting, no worktree yet) → `loading` (worktree present; + agent loading config, models, and tools) → `attaching` (control-plane socket + bound; board waiting for the first snapshot). - **Columns are a pipeline.** The default pipeline is Dev → Review → Push → Done. Moving a card forward (`]`) sends the destination column's prompt to the card's agent; moving it back From 887d9dc5ae7c6c6bab57bc67eb3d77d4da9153a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arnaud=20H=C3=A9ritier?= Date: Wed, 8 Jul 2026 04:05:17 +0000 Subject: [PATCH 3/3] docs: update for changes from PR #3503 (add --session-db to serve a2a flags) --- docs/features/a2a/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/features/a2a/index.md b/docs/features/a2a/index.md index 886619afd4..d381db7849 100644 --- a/docs/features/a2a/index.md +++ b/docs/features/a2a/index.md @@ -38,6 +38,7 @@ $ docker agent serve a2a agentcatalog/pirate | --------------------------------- | ---------------- | -------------------------------------------------------------------------------------------------------------------- | | `-l, --listen ` | `127.0.0.1:8082` | Address to listen on. | | `-a, --agent ` | (first agent) | Name of the agent to expose when the config contains multiple agents. Defaults to the team's first agent. | +| `-s, --session-db ` | `/session.db` | Path to the SQLite session database. | | `--working-dir ` | current dir | Working directory the agent runs in. | | `--env-from-file ` | (none) | Load additional environment variables from a `.env` file (repeatable). | | `--models-gateway ` | (none) | Route all provider traffic through a models gateway URL. |