Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Convert Stitch-generated screens into validated React component systems with design token consistency
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
resources/architecture-checklist.md
1# Architecture Quality Gate23### Structural integrity4- [ ] Logic extracted to custom hooks in `src/hooks/`.5- [ ] No monolithic files; strictly Atomic/Composite modularity.6- [ ] All static text/URLs moved to `src/data/mockData.ts`.78### Type safety and syntax9- [ ] Props use `Readonly<T>` interfaces.10- [ ] File is syntactically valid TypeScript (no red squiggles).11- [ ] Placeholders from templates (e.g., `StitchComponent`) have been replaced with actual names.1213### Styling and theming14- [ ] Dark mode (`dark:`) applied to all color classes.15- [ ] No hardcoded hex values; use theme-mapped Tailwind classes.