Annotation + Skills + Terminal Workflow
Annotation + Skills + Terminal Workflow
Section titled “Annotation + Skills + Terminal Workflow”This page walks through one practical loop:
- Capture visual feedback with annotations.
- Use skills to structure what to do next.
- Validate and ship from the built-in terminal workflow.
Step 1: Capture Feedback with Annotations
Section titled “Step 1: Capture Feedback with Annotations”Use draw mode to mark real UI problems directly on the page.
- Start draw mode from the launcher or with
interact({what:'draw_mode_start'}). - Annotate layout, copy, and interaction issues.
- Pull all notes with
analyze({what:'annotations'}). - Drill into one issue with
analyze({what:'annotation_detail', correlation_id:'...'}).
Step 2: Route Work with Skills
Section titled “Step 2: Route Work with Skills”Use Gasoline skill playbooks to avoid guessing.
debug-triagefor broken behaviorux-auditfor clarity and accessibility issuesregression-testwhen a fix needs coverage
The output becomes a concrete fix list instead of vague feedback.
Step 3: Close the Loop with Terminal Tasks
Section titled “Step 3: Close the Loop with Terminal Tasks”Run commands for verification and release readiness in the same workflow.
- Build and type checks
- Focused tests for touched behavior
- Evidence artifacts when needed
Suggested Sequence
Section titled “Suggested Sequence”- Annotate one page.
- Group annotations by severity.
- Run the matching skill for each group.
- Implement the fix.
- Validate with terminal + rerun annotations.
That gives product, design, and engineering one shared trail from observation to shipped fix.