feat: Add agent-tui and tui-explorer skills with comprehensive documentation and scripts
This commit is contained in:
parent
d5a143ee36
commit
6a3e1e0d5a
24 changed files with 708 additions and 0 deletions
21
.agents/skills/agent-tui/references/decision-tree.md
Normal file
21
.agents/skills/agent-tui/references/decision-tree.md
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# Decision Tree
|
||||
|
||||
Use this file when you need a quick command choice based on intent.
|
||||
|
||||
## Snapshot Strategy
|
||||
- Need raw text? Use `screenshot`.
|
||||
- Need machine-readable output? Use `screenshot --json`.
|
||||
|
||||
## Waiting Strategy
|
||||
- Waiting for text to appear: `wait "text" --assert`.
|
||||
- Waiting for text to disappear: `wait "text" --gone --assert`.
|
||||
- Waiting for UI to settle: `wait --stable`.
|
||||
|
||||
## Action Strategy
|
||||
- Navigate/confirm: `press` (keys or sequences).
|
||||
- Enter text: `type "text"`.
|
||||
|
||||
## Reliability
|
||||
- Re-snapshot after any action that could change the UI.
|
||||
- Prefer `wait --stable` before acting on dynamic screens.
|
||||
- Verify outcomes with `wait ... --assert`.
|
||||
Loading…
Add table
Add a link
Reference in a new issue