modelscope.cn

visual-verification

Visually verify implemented features work correctly before marking complete. Use when testing UI changes, verifying web features, or checking user flows work in the browser.

Installation

$ npx skills add https://modelscope.cn

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from modelscope.cn · top by installs.

npx skills add https://modelscope.cn

Browse all from modelscope.cn

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,290 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Visual Verification

Verify implemented features work correctly through actual user interaction, not just automated tests.

When to Use

  • After implementing any UI feature
  • Before marking an issue as complete
  • When acceptance criteria involve user-visible behavior
  • After fixing UI bugs

Approaches

Web Applications: See [browser-verification.md](browser-verification.md) for Playwright MCP workflow.

Mobile Applications: See [mobile-verification.md](mobile-verification.md) (Coming soon)

Verification Checklist

Before marking any UI task complete:

  • Dev server is running and accessible
  • Feature renders without console errors
  • Elements render correctly and do not incorrectly overlap
  • User interactions work as expected
  • Edge cases handled (empty states, loading, errors)
  • Screenshot captured as evidence

What NOT to Do

  • Skip visual verification because "tests pass"
  • Mark issues complete without browser testing
  • Assume dev mode catches all errors (run npm run build too)
  • Test only happy paths