feat: Add agent-tui and tui-explorer skills with comprehensive documentation and scripts

This commit is contained in:
Philip Henning 2026-09-04 20:03:30 +02:00
parent d5a143ee36
commit 6a3e1e0d5a
24 changed files with 708 additions and 0 deletions

View file

@ -0,0 +1,28 @@
# Prompt Templates
Use these verbatim when you need to ask the user for missing details.
## Minimum Info Request
- "Please share: (1) command + args to run, (2) expected UI text/state to assert, (3) inputs/steps, (4) any env vars, and (5) whether you want live preview while I run it."
## Live Preview
- "Do you want a live preview while I run the test? If yes, I'll start `agent-tui live start --open` before running the app."
## Safety / Environment
- "Is this a test environment, and is it safe to submit or modify data during this run?"
## Credentials
- "Does the flow require login? If so, please provide test credentials or a fixture account."
## Clarify Assertions
- "What exact text or UI state should I treat as success?"
- "Are there any error states I should explicitly check for?"
## Timeouts and Stability
- "Should I use a longer timeout or wait for stability (`wait --stable`) before actions?"
## Completion Check
- "What should indicate the test is finished (specific screen, message, or exit state)?"
## Results Summary Template
- "I ran the flow, executed these actions: <actions>, and asserted: <assertions>. The last snapshot shows: <evidence>. Want me to extend coverage or add more assertions?"