@zhuxixi/pi-agent-board 0.3.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -14,7 +14,7 @@ Pi Agent Board is a full-screen TUI dashboard for [Pi](https://github.com/earend
14
14
 
15
15
  ## Problems It Solves
16
16
 
17
- - Run several Pi tasks at once without losing track of which are queued, running, waiting for input, in progress, done, failed, or stopped.
17
+ - Run several Pi tasks at once without losing track of which are queued, running, needs answer, needs instructions, done, failed, or stopped.
18
18
  - Keep real Pi sessions durable and resumable after `/reload`, closing Pi, or restarting the terminal.
19
19
  - Check the latest output and answer follow-up questions without interrupting a running session.
20
20
  - Attach to the full interactive Pi session only when hands-on work is needed.
@@ -62,7 +62,7 @@ Open the board with `pi /agent-board` or `/agent-board` inside Pi.
62
62
 
63
63
  - Type a task in the bottom input, then press `enter`.
64
64
  - Confirm **Start session**, or adjust `cwd`, model, and thinking level first.
65
- - Watch rows move through `Queued`, `Running`, `Needs input`, `In Progress`, `Done`, `Failed`, and `Stopped`.
65
+ - Watch rows move through `Queued`, `Running`, `Needs answer`, `Needs instructions`, `Done`, `Failed`, and `Stopped`.
66
66
  - Press `space` to peek at the selected row's summary, blocker, and latest output.
67
67
  - Press `r` to reply inline without attaching.
68
68
  - Press `enter`, `right`, or `>` to attach to the real Pi session.
@@ -81,6 +81,7 @@ Useful environment variables:
81
81
  | `AGENT_BOARD_ROOT` | Store location. Defaults to `~/.pi/agent/agent-board/`. |
82
82
  | `AGENT_BOARD_AUTO_STATE=off` | Disable automatic terminal-state moves. |
83
83
  | `AGENT_BOARD_AUTO_STATE_MODEL=<model>` | Model for classifying finished turns. Defaults to `gpt-4o`; use `off` for heuristic-only. |
84
+ | `AGENT_BOARD_AUTO_STATE_NO_DONE` | Disables automatic `completed` classification (default: enabled). Set to `0`/`false`/`off`/`no` to restore auto-done. |
84
85
  | `AGENT_BOARD_SUMMARY_MODEL=<model>` | Model for short row summaries. Defaults to `gpt-4o`; use `off` to disable. |
85
86
  | `AGENT_BOARD_TITLE_MODEL=<model>` | Model for generated session titles. Defaults to `openai-codex/gpt-5.5`; use `off` to disable. |
86
87
  | `AGENT_BOARD_TITLE_THINKING_LEVEL=<level>` | Thinking level for title generation. Defaults to `low`; use `off` to omit it. |