ui-convert-scanner
Installation
SKILL.md
Artifact Scanner
Enumerates all source files in the project, classifies them by visual role, computes content hashes,
and detects inter-artifact dependencies. Produces index.json.
Non-negotiable Rules
- Respect exclude paths — never scan
node_modules,.git,dist,build, or user-configured excludes. - Hash every artifact — SHA-256 of file content for change detection and idempotency.
- Classify conservatively — if unsure, mark as
unknown(notirrelevant). Let the ambiguity resolver decide. - Detect dependencies — note which artifacts import/reference other artifacts.
Scanning Process
Step 1: Read Configuration
Load from .ui-convert/project.json:
Related skills