Add plain text (txt) export format to the TUI /session:export command.
- Add Session.as_export_plain_text() domain method that produces a
human-readable plain text transcript without Markdown formatting
- Update TuiCommandRouter._session_export() to accept 'txt' as a valid
format, building the plain text content via as_export_plain_text()
- Update the invalid-format error message to include 'txt' as a valid
option alongside 'json' and 'md'
- Add BDD scenarios covering plain text export via TUI command and
domain model, including with-messages and no-messages cases
- Add corresponding step definitions for the new BDD scenarios
The plain text format uses a simple separator-based layout:
Session: <id>
Actor: <actor>
...
----------------------------------------
[0] USER (timestamp):
message content
----------------------------------------
ISSUES CLOSED: #3036
Add Markdown export format for sessions alongside the existing JSON export.
Implement TUI slash command routing for /session:export and /session:import.
- Add Session.as_export_markdown() domain method producing a human-readable
Markdown transcript (lossy, not importable — for sharing/documentation)
- Extend CLI 'agents session export' with --format flag (json|md)
- Extend TuiCommandRouter._session_command() to handle 'export' and 'import'
subcommands, delegating to the session service via the DI container
- Add 16 Behave scenarios covering domain model, CLI, and TUI command paths
Closes#1004