Our review
This skill builds static assets, starts the server, and requests visual approval before committing observable UI changes.
Strengths
- Integrates visual verification into the commit workflow.
- Automates build and migration steps.
- Reduces risk of deploying unverified UI changes.
- Works with Go projects using Templ and Tailwind CSS.
Limitations
- Requires the server to be accessible locally on port 8080.
- Depends on human approval, which can slow down the process.
- Does not cover automated testing (e.g., UI tests).
Use this skill before every commit that modifies observable UI behavior (components, templates, styles, migrations).
Do not use for purely backend changes or when no visual impact exists, nor when human verification is unavailable (e.g., CI/CD).
Security analysis
SafeThe skill runs local build commands and a local development server; no destructive, exfiltrating, or obfuscated actions. User is prompted before database migrations. It is safe for its intended use.
No concerns found
Examples
I have changes to the homepage template and some CSS. Please verify the UI before I commit.Run the verify-ui workflow for my current changes.name: verify-ui description: Build assets, run server, and get visual approval before committing observable changes.
When to use
- Before committing any changes that affect observable UI behavior
- This includes: templates, components, styles, handlers, models surfaced in UI, migrations
- When CLAUDE.md or
/commitskill directs you here
Prerequisites
- Changes to verify should already be implemented (not staged/committed yet)
Workflow
-
Build static assets:
- Run
templ generateto regenerate templ files - Run
make cssto rebuild Tailwind CSS - Report any errors and stop if build fails
- Run
-
Database migrations (if applicable):
- Check for pending migrations:
make migrate-status - If pending, ask user before running:
make migrate - Skip if no database changes
- Check for pending migrations:
-
Start server:
- Run
go run ./cmd/tfo-webappin background - Wait for server to be ready (check output for listening message)
- Report the URL (typically http://localhost:8080)
- Run
-
Request visual inspection:
- Tell user: "Server running at http://localhost:8080 - please verify the UI"
- Use AskUserQuestion to get approval:
- "Does the UI look correct?"
- Options: "Yes, looks good" / "No, needs changes"
-
Handle response:
- If approved: Stop server, report ready to commit
- If not approved: Stop server, ask what needs to change, do NOT proceed to commit
-
Cleanup:
- Always stop the background server when done
Output
- Commands run and their outcomes
- Server URL for inspection
- User's verification decision
- Clear next step (proceed to commit or fix issues)
TDD Red-Green-Refactor
Testing
Skill that guides Claude through the complete TDD cycle.
Web Accessibility Audit
Testing
Performs a comprehensive web accessibility audit following WCAG standards.
UAT Test Case Generator
Testing
Generates structured and comprehensive user acceptance test cases.