Website change verifier
Skill jqaisystems/jqai-ai-skills/skills/website-change-verifier
Verify website changes across source, routes, rendering, metadata, discovery surfaces, and deployment state. Use when a user asks to check a new or edited page, confirm an exact replacement, validate a route, inspect responsive behavior, verify metadata or sitemap changes, compare localhost with production, or determine whether a website change is fully working.From its SKILL.md
npx -y skills add jqaisystems/jqai-ai-skills --skill website-change-verifierAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
3.5 KB, 656 tokens by cl100k_base, as published. Nobody here has run it
Website Change Verifier
Verify the complete user-visible result of a website change. Default to read-only checks and report the highest completion state supported by evidence.
1. Identify the change and platform
- Confirm the project root, target route, requested outcome, source of truth, and expected visibility.
- Inspect project instructions, manifests, entrypoints, routing, and nearby implementation patterns.
- Read references/framework-checks.md for the detected stack.
- Preserve existing public URLs and unrelated behavior unless the request explicitly changes them.
2. Map affected surfaces
Check which parts of this chain apply:
- content or data source
- route or page rendering
- navigation, listings, related content, and internal links
- title, description, canonical, Open Graph, structured data, and accessibility text
- sitemap, robots rules,
llms.txt, feeds, search indexes, or static export - images, video, downloads, and responsive variants
- local server, deployment, cache, and live state
For hidden content, distinguish navigation removal from direct access, sitemap presence, and search visibility.
3. Verify in layers
- Read references/verification-matrix.md and select checks proportional to the change.
- Run syntax, type, lint, test, or production-build checks supported by the project.
- Confirm the correct listener and make a real request to each affected route.
- Use
scripts/verify_routes.pyfor deterministic status and response-text checks. - Inspect rendered desktop and mobile behavior when layout, interaction, forms, or media changed.
- Confirm required text is present and replaced text is absent.
- Check discovery surfaces only when the content is intended to appear there.
Example:
python scripts/verify_routes.py `
--url http://127.0.0.1:8766/example `
--contains "http://127.0.0.1:8766/example::Expected heading" `
--not-contains "http://127.0.0.1:8766/example::Old wording"
Use --expect-status "URL::404" for an intentionally missing route and --json for machine-readable output.
4. Respect authority boundaries
- Access only the project and URLs placed in scope.
- Do not include authentication values in URLs, commands, logs, or reports.
- Do not deploy, publish, submit indexing requests, change DNS, purge caches, or modify external services unless explicitly authorized.
- After an authorized deployment, repeat the relevant checks against the final public URL.
5. Report the supported completion state
Use one of these states:
implemented: source changes exist but user-visible verification is incompleteverified locally: build and local route or browser checks passdeployed: an authorized deployment completed but live verification remainsverified live: the production URL and intended behavior were checked after deployment
Return the checked routes, expected and observed results, build or syntax results, browser coverage, discovery-surface status, highest completion state, and exact remaining blocker.
What ships with it: 4 files
9.9 KB alongside SKILL.md, 1 of them executable
agents/
- openai.yaml235 B
references/
- framework-checks.md1.9 KB
- verification-matrix.md2.3 KB
scripts/
- verify_routes.pyruns5.6 KB