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
35
.agents/skills/tui-explorer/references/schema-v1.md
Normal file
35
.agents/skills/tui-explorer/references/schema-v1.md
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
# Schema v1
|
||||
|
||||
Acceptance files are markdown with YAML frontmatter.
|
||||
|
||||
## Required frontmatter
|
||||
- `schema_version: "v1"`
|
||||
- `command`
|
||||
- `cols`
|
||||
- `rows`
|
||||
- `default_timeout_ms`
|
||||
- `generated_at`
|
||||
- `generator`
|
||||
|
||||
Optional:
|
||||
- `cwd`
|
||||
|
||||
## Scenario format
|
||||
Scenario header:
|
||||
- `## Scenario: <name>`
|
||||
|
||||
Optional OpenSpec-style expectation narrative (human-readable):
|
||||
- `### Expectation` (or `### Expectations`)
|
||||
- `- **WHEN** ...`
|
||||
- `- **THEN** ...`
|
||||
- `- **AND** ...` (optional)
|
||||
- `- **SHOULD** ...`
|
||||
|
||||
Supported steps:
|
||||
- `- expect: "<text>"`
|
||||
- `- press: "<key>"`
|
||||
- `- type: "<text>"`
|
||||
- `- wait_stable: true`
|
||||
|
||||
OpenSpec narrative lines are ignored by the verifier parser; executable behavior is driven by the supported step lines.
|
||||
Any other non-empty line format is invalid.
|
||||
Loading…
Add table
Add a link
Reference in a new issue