agent-native-reviewer
Review agent-native parity for skills, prompts, tools, commands, generated mirrors, repo workflows, and user-facing actions.
Create a short annotated visual walkthrough from real final-state screenshots or rendered artifacts. Use when a user asks for demo screenshots or a caller requires visual evidence after UI or rendered-output changes.
$ npx -y skills add udecode/dotai --skill walkthrough --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/walkthroughContext preview
The summary Claude sees to decide when to auto-load this skill.
Create a short annotated visual walkthrough from real final-state screenshots or rendered artifacts. Use when a user asks for demo screenshots or a caller requires visual evidence after UI or rendered-output changes.
name: walkthrough description: Create a short annotated visual walkthrough from real final-state screenshots or rendered artifacts. Use when a user asks for demo screenshots or a caller requires visual evidence after UI or rendered-output changes.
Explain a completed change with a few annotated visuals. Run this after final verification. A walkthrough explains proof; it does not replace proof.
The caller decides whether the walkthrough is required. Follow the stricter repo rule when one exists.
For UI-gated workflows, treat app pages, websites, components, styles, visual content, and generated or rendered output as UI changes. If the packet changed one of those surfaces, run the walkthrough in the final handoff.
When the caller requires a walkthrough and it cannot be produced, block closeout with the exact missing tool, access, or artifact. Do not waive it silently.
When the caller requires a diff check and no relevant UI or rendered-output change exists, record:
Walkthrough: N/A — no UI or rendered-output change in this packet.
For a diff-gated workflow, capture the baseline before the first file mutation, including plan creation:
node .agents/skills/walkthrough/scripts/diff-baseline.mjs capture \ --output tmp/walkthrough/<slug>/baseline.json
At closeout, compare the final checkout with that baseline:
node .agents/skills/walkthrough/scripts/diff-baseline.mjs compare \ --baseline tmp/walkthrough/<slug>/baseline.json \ --output tmp/walkthrough/<slug>/diff-receipt.json
Use `producedFileDiff` for the file-diff gate. Use `changedPaths` and the final diff to decide whether UI or rendered output changed. The receipt detects committed clean-tree changes, tracked working changes, executable-bit changes, symlink changes, and untracked files without `git status`.
Keep receipts local. Do not publish file hashes. If an older packet has no baseline, reconstruct it from the recorded starting commit or base ref and the packet's changed-file ledger. Mark the receipt as reconstructed. New packets must capture the baseline before mutation. The helper excludes its own baseline and receipt paths from the comparison, but the output directory should still be ignored by the repo.
Read only what explains the completed result:
Reuse valid final-state screenshots. Do not rerun an expensive flow only to capture the same state.
Do not stop at a link or button that promises a result. Open the result and show the saved record, receipt, message, packet, or other final artifact. When a preview and its downloadable or readable artifact both exist, inspect both and fail the walkthrough if their material claims disagree. Report the contradiction instead of choosing the friendlier surface.
Use one to four frames. Each frame should explain one point:
1. where the user acts; 2. what changed or became possible; 3. what consequence appears; 4. what proves the result.
Prefer the shortest sequence a non-developer can understand in under one minute. Do not turn every field or test into a callout.
For QA, product-owner, or end-to-end walkthroughs, keep one subject, one user goal, one decision scope, and one time context across the whole sequence. If a frame changes any of them, label it as a separate example instead of implying causality. A screen captured after an action is not proof that the action caused that state unless the identity and time boundary match.
For UI or rendered-output changes:
For an explicit walkthrough of non-UI work, render the real final source, diff, report, document, CLI result, or provider read-back. Never invent a product screen to make backend or workflow work look visual.
Prefer light mode when both themes are equally truthful. Keep the verified theme when the change concerns dark mode or switching would misrepresent the result.
Save originals and annotated copies under a repo-approved ignored directory. Default to:
tmp/walkthrough/<slug>/
Use paired names:
01-<step>-original.png 01-<step>-annotated.png
Inspect each source image first. Use a deterministic local image editor, such as Sharp with SVG overlays, to add only:
Keep labels to one sentence. Use product language, not implementation terms. Keep the product screenshot untouched except for the thin outlines and number markers. Never place explanation text over the product.
When the walkthrough explains a change inside an existing product, use color alone to distinguish provenance:
work.
not say "already there" or "already existed" in the label.
Use one small two-color legend in the side rail. The legend is the only provenance text; never repeat `NEW / CHANGED`, `existing context`, or equivalent badges in notes. Classify the exact feature, not the whole screen. An existing page with a new row gets gray context and a blue outline on the row. Never mark the whole screen blue merely because the screenshot was
Shared skills for coding agents. Skills are the main routing layer. This repo is the canonical source for reusable udecode workflows; downstream repos should link to these skills instead of copying long SKILL.md files around.
Repo: udecode/dotai
Review agent-native parity for skills, prompts, tools, commands, generated mirrors, repo workflows, and user-facing actions.
Create, verify, repair, and close durable Codex goals with measurable outcomes, evidence gates, plan templates, blocker handling, completion audits, and…
Remove a feature completely with no backward compatibility; delete surfaces, callers, tests, docs, fallbacks, stubs, and dead exports.
Run a scoped Linear backlog autonomously as a sequence of maximal safe parallel batches by composing orchestrator, autogoal, and task. Use when the user wants…
Turn the current Codex thread into a coordination thread that routes implementation work to durable reusable child threads in disposable worktrees with…
Resolve GitHub PR review feedback with source-backed triage, fixes, autogoal plan state, focused proof, replies, and thread resolution.