docs: kill "PT" shorthand — say "classic (prompt_toolkit) CLI"

"PT" was internal shorthand for prompt_toolkit that leaked into
AGENTS.md and the TUI post-mortem. Spell it out.

- AGENTS.md: "PT CLI" → "classic (prompt_toolkit) CLI"
- docs/plans/2026-04-01-ink-gateway-tui-migration-plan.md: both hits
This commit is contained in:
Brooklyn Nicholson
2026-04-16 19:39:09 -05:00
parent 7ffefc2d6c
commit 23212d6b40
2 changed files with 3 additions and 3 deletions

View File

@@ -194,7 +194,7 @@ if canonical == "mycommand":
## TUI Architecture (ui-tui + tui_gateway)
The TUI is a full replacement for the PT CLI, activated via `hermes --tui` or `HERMES_TUI=1`.
The TUI is a full replacement for the classic (prompt_toolkit) CLI, activated via `hermes --tui` or `HERMES_TUI=1`.
### Process Model

View File

@@ -1,6 +1,6 @@
# Ink Gateway TUI Migration — Post-mortem
Planned: 2026-04-01 · Delivered: 2026-04 · Status: shipped, PT path still present
Planned: 2026-04-01 · Delivered: 2026-04 · Status: shipped, classic (prompt_toolkit) CLI still present
## What Shipped
@@ -104,5 +104,5 @@ src/
## What's Still Open
- **PT path not deleted.** `cli.py` still has ~80 `prompt_toolkit` references; classic REPL is still the default when `--tui` is absent. The original plan's "Cut 4 · PT path removal later" hasn't happened.
- **Classic CLI not deleted.** `cli.py` still has ~80 `prompt_toolkit` references; classic REPL is still the default when `--tui` is absent. The original plan's "Cut 4 · prompt_toolkit removal later" hasn't happened.
- **No config-file opt-in.** `HERMES_EXPERIMENTAL_TUI` and `display.experimental_tui` were never built; only the CLI flag exists. Fine for now — if we want "default to TUI", a single line in `main.py` flips it.