ai-developer-skill-os 7.0.2 → 7.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (206) hide show
  1. package/.agents/AGENTS.md +44 -88
  2. package/.agents/CHANGELOG.md +70 -0
  3. package/.agents/LICENSE +21 -0
  4. package/.agents/README.md +100 -0
  5. package/.agents/docs/CHI_TIET_SKILLS.md +126 -0
  6. package/.agents/docs/GOVERNANCE.md +40 -0
  7. package/.agents/docs/HUONG_DAN_SU_DUNG.md +120 -0
  8. package/.agents/docs/SPEC.md +87 -0
  9. package/.agents/docs/adr/0001-intent-based-architecture.md +19 -0
  10. package/.agents/docs/adr/0002-kernel-freeze.md +21 -0
  11. package/.agents/docs/adr/0003-risk-based-verification.md +20 -0
  12. package/.agents/docs/adr/0004-progressive-evidence.md +19 -0
  13. package/.agents/docs/skill-classification.md +25 -0
  14. package/.agents/skills/qk-access-policy/SKILL.md +179 -0
  15. package/.agents/skills/qk-ai-builder/SKILL.md +215 -0
  16. package/.agents/skills/qk-api-lifecycle/SKILL.md +176 -0
  17. package/.agents/skills/qk-bug-resolution/SKILL.md +307 -0
  18. package/.agents/skills/qk-context-loader/SKILL.md +218 -0
  19. package/.agents/skills/qk-data-lifecycle/SKILL.md +192 -0
  20. package/.agents/skills/qk-db-optimizer/SKILL.md +196 -0
  21. package/.agents/skills/qk-docs/SKILL.md +198 -0
  22. package/.agents/skills/qk-engineering-standard/SKILL.md +351 -0
  23. package/.agents/skills/qk-engineering-standard/rules/backend.md +122 -0
  24. package/.agents/skills/qk-engineering-standard/rules/database.md +3 -0
  25. package/.agents/skills/qk-engineering-standard/rules/frontend.md +152 -0
  26. package/.agents/skills/qk-engineering-standard/rules/security.md +3 -0
  27. package/.agents/skills/qk-engineering-standard/rules/testing.md +3 -0
  28. package/.agents/skills/qk-fe-api-integration/SKILL.md +326 -0
  29. package/.agents/skills/qk-feature-delivery/SKILL.md +305 -0
  30. package/.agents/skills/qk-help/SKILL.md +193 -0
  31. package/.agents/skills/qk-orchestrator/SKILL.md +278 -0
  32. package/.agents/skills/qk-orchestrator/references/routing-table.md +78 -0
  33. package/.agents/skills/qk-production-release/SKILL.md +284 -0
  34. package/.agents/skills/qk-project-bootstrap/SKILL.md +235 -0
  35. package/.agents/skills/qk-project-health/SKILL.md +199 -0
  36. package/.agents/skills/qk-project-memory/SKILL.md +218 -0
  37. package/.agents/skills/qk-system-evolution/SKILL.md +281 -0
  38. package/.agents/skills/qk-ui-audit/SKILL.md +315 -0
  39. package/.agents/skills/qk-ui-audit/references/anti-slop-checklist.md +136 -0
  40. package/.agents/skills/qk-ui-builder/SKILL.md +446 -0
  41. package/.agents/skills/qk-ui-builder/references/anti-patterns.md +295 -0
  42. package/.agents/skills/qk-ui-builder/references/color.md +115 -0
  43. package/.agents/skills/qk-ui-builder/references/component-cookbook.md +1194 -0
  44. package/.agents/skills/qk-ui-builder/references/copy.md +250 -0
  45. package/.agents/skills/qk-ui-builder/references/interaction-and-states.md +115 -0
  46. package/.agents/skills/qk-ui-builder/references/layout-and-space.md +111 -0
  47. package/.agents/skills/qk-ui-builder/references/macrostructures/01-bento-grid.md +48 -0
  48. package/.agents/skills/qk-ui-builder/references/macrostructures/02-long-document.md +50 -0
  49. package/.agents/skills/qk-ui-builder/references/macrostructures/03-marquee-hero.md +51 -0
  50. package/.agents/skills/qk-ui-builder/references/macrostructures/04-stat-led.md +49 -0
  51. package/.agents/skills/qk-ui-builder/references/macrostructures/05-workbench.md +44 -0
  52. package/.agents/skills/qk-ui-builder/references/macrostructures/06-conversational-faq.md +50 -0
  53. package/.agents/skills/qk-ui-builder/references/macrostructures/07-manifesto.md +51 -0
  54. package/.agents/skills/qk-ui-builder/references/macrostructures/08-photographic.md +50 -0
  55. package/.agents/skills/qk-ui-builder/references/macrostructures/09-quote-led.md +50 -0
  56. package/.agents/skills/qk-ui-builder/references/macrostructures/11-catalogue.md +49 -0
  57. package/.agents/skills/qk-ui-builder/references/macrostructures/12-letter.md +49 -0
  58. package/.agents/skills/qk-ui-builder/references/macrostructures/13-index-first.md +49 -0
  59. package/.agents/skills/qk-ui-builder/references/macrostructures/14-narrative-workflow.md +48 -0
  60. package/.agents/skills/qk-ui-builder/references/macrostructures/15-split-studio.md +48 -0
  61. package/.agents/skills/qk-ui-builder/references/macrostructures/16-feature-stack.md +51 -0
  62. package/.agents/skills/qk-ui-builder/references/macrostructures/17-type-specimen.md +48 -0
  63. package/.agents/skills/qk-ui-builder/references/macrostructures/18-portfolio-grid.md +48 -0
  64. package/.agents/skills/qk-ui-builder/references/macrostructures/19-map-diagram.md +50 -0
  65. package/.agents/skills/qk-ui-builder/references/macrostructures/20-ecosystem-index.md +48 -0
  66. package/.agents/skills/qk-ui-builder/references/macrostructures/21-component-playground.md +45 -0
  67. package/.agents/skills/qk-ui-builder/references/macrostructures.md +38 -0
  68. package/.agents/skills/qk-ui-builder/references/motion.md +95 -0
  69. package/.agents/skills/qk-ui-builder/references/responsive.md +115 -0
  70. package/.agents/skills/qk-ui-builder/references/slop-test.md +135 -0
  71. package/.agents/skills/qk-ui-builder/references/structure.md +280 -0
  72. package/.agents/skills/qk-ui-builder/references/themes/atmospheric.md +53 -0
  73. package/.agents/skills/qk-ui-builder/references/themes/carnival.md +52 -0
  74. package/.agents/skills/qk-ui-builder/references/themes/cobalt.md +52 -0
  75. package/.agents/skills/qk-ui-builder/references/themes/editorial.md +52 -0
  76. package/.agents/skills/qk-ui-builder/references/themes/garden.md +52 -0
  77. package/.agents/skills/qk-ui-builder/references/themes/hum.md +52 -0
  78. package/.agents/skills/qk-ui-builder/references/themes/lumen.md +52 -0
  79. package/.agents/skills/qk-ui-builder/references/themes/midnight.md +52 -0
  80. package/.agents/skills/qk-ui-builder/references/themes/modern-minimal.md +52 -0
  81. package/.agents/skills/qk-ui-builder/references/themes/playful.md +52 -0
  82. package/.agents/skills/qk-ui-builder/references/themes/specimen.md +52 -0
  83. package/.agents/skills/qk-ui-builder/references/themes/terminal.md +52 -0
  84. package/.agents/skills/qk-ui-builder/references/typography.md +129 -0
  85. package/.agents/skills/qk-ui-system-builder/SKILL.md +221 -0
  86. package/.agents/skills/qk-validation-gate/SKILL.md +359 -0
  87. package/.agents/skills.json +819 -0
  88. package/.github/workflows/ci.yml +1 -1
  89. package/CHANGELOG.md +2 -1
  90. package/CLAUDE.md +110 -0
  91. package/README.md +52 -10
  92. package/add_lang.js +21 -0
  93. package/add_lang.py +25 -0
  94. package/add_sections.py +53 -0
  95. package/bin/install.js +225 -170
  96. package/bin/lint.js +123 -0
  97. package/docs/CHI_TIET_SKILLS.md +27 -26
  98. package/docs/HUONG_DAN_SU_DUNG.md +3 -3
  99. package/docs/SPEC.md +70 -20
  100. package/framework/decision-primitives.md +2 -1
  101. package/framework/skill-schema.md +310 -0
  102. package/package.json +16 -5
  103. package/patch.js +15 -0
  104. package/patch.py +89 -0
  105. package/patch2.py +83 -0
  106. package/skills/_archive_old_skills/qk-accessibility-audit/SKILL.md +1 -0
  107. package/skills/_archive_old_skills/qk-agent-orchestrator/SKILL.md +1 -0
  108. package/skills/_archive_old_skills/qk-api-integration/SKILL.md +1 -0
  109. package/skills/_archive_old_skills/qk-auth-security/SKILL.md +1 -0
  110. package/skills/_archive_old_skills/qk-backend-architecture/SKILL.md +1 -0
  111. package/skills/_archive_old_skills/qk-bug-fix/SKILL.md +1 -0
  112. package/skills/_archive_old_skills/qk-component-generator/SKILL.md +1 -0
  113. package/skills/_archive_old_skills/qk-context-manager/SKILL.md +1 -0
  114. package/skills/_archive_old_skills/qk-database-engineer/SKILL.md +1 -0
  115. package/skills/_archive_old_skills/qk-deployment/SKILL.md +1 -0
  116. package/skills/_archive_old_skills/qk-design-system/SKILL.md +1 -0
  117. package/skills/_archive_old_skills/qk-form-builder/SKILL.md +1 -0
  118. package/skills/_archive_old_skills/qk-frontend-architecture/SKILL.md +1 -0
  119. package/skills/_archive_old_skills/qk-frontend-debug/SKILL.md +1 -0
  120. package/skills/_archive_old_skills/qk-frontend-performance/SKILL.md +1 -0
  121. package/skills/_archive_old_skills/qk-frontend-testing/SKILL.md +1 -0
  122. package/skills/_archive_old_skills/qk-git-engineer/SKILL.md +1 -0
  123. package/skills/_archive_old_skills/qk-help/SKILL.md +1 -0
  124. package/skills/_archive_old_skills/qk-migration/SKILL.md +1 -0
  125. package/skills/_archive_old_skills/qk-project-audit/SKILL.md +1 -0
  126. package/skills/_archive_old_skills/qk-refactor/SKILL.md +1 -0
  127. package/skills/_archive_old_skills/qk-state-management/SKILL.md +1 -0
  128. package/skills/_archive_old_skills/qk-table-crud-generator/SKILL.md +1 -0
  129. package/skills/_archive_old_skills/qk-ui-builder/SKILL.md +1 -0
  130. package/skills/_template/SKILL.md +239 -0
  131. package/skills/qk-access-policy/SKILL.md +180 -39
  132. package/skills/qk-ai-builder/SKILL.md +216 -40
  133. package/skills/qk-api-lifecycle/SKILL.md +177 -46
  134. package/skills/qk-bug-resolution/SKILL.md +308 -46
  135. package/skills/qk-context-loader/SKILL.md +219 -43
  136. package/skills/qk-data-lifecycle/SKILL.md +193 -44
  137. package/skills/qk-db-optimizer/SKILL.md +197 -41
  138. package/skills/qk-docs/SKILL.md +199 -40
  139. package/skills/qk-engineering-standard/SKILL.md +352 -42
  140. package/skills/qk-fe-api-integration/SKILL.md +327 -55
  141. package/skills/qk-feature-delivery/SKILL.md +306 -48
  142. package/skills/qk-help/SKILL.md +179 -23
  143. package/skills/qk-orchestrator/SKILL.md +279 -42
  144. package/skills/qk-orchestrator/references/routing-table.md +78 -0
  145. package/skills/qk-production-release/SKILL.md +285 -41
  146. package/skills/qk-project-bootstrap/SKILL.md +236 -38
  147. package/skills/qk-project-health/SKILL.md +200 -40
  148. package/skills/qk-project-memory/SKILL.md +219 -40
  149. package/skills/qk-system-evolution/SKILL.md +282 -40
  150. package/skills/qk-ui-audit/SKILL.md +316 -42
  151. package/skills/qk-ui-audit/references/anti-slop-checklist.md +136 -0
  152. package/skills/qk-ui-builder/SKILL.md +447 -0
  153. package/skills/qk-ui-builder/references/anti-patterns.md +295 -0
  154. package/skills/qk-ui-builder/references/color.md +115 -0
  155. package/skills/qk-ui-builder/references/component-cookbook.md +1194 -0
  156. package/skills/qk-ui-builder/references/copy.md +250 -0
  157. package/skills/qk-ui-builder/references/interaction-and-states.md +115 -0
  158. package/skills/qk-ui-builder/references/layout-and-space.md +111 -0
  159. package/skills/qk-ui-builder/references/macrostructures/01-bento-grid.md +48 -0
  160. package/skills/qk-ui-builder/references/macrostructures/02-long-document.md +50 -0
  161. package/skills/qk-ui-builder/references/macrostructures/03-marquee-hero.md +51 -0
  162. package/skills/qk-ui-builder/references/macrostructures/04-stat-led.md +49 -0
  163. package/skills/qk-ui-builder/references/macrostructures/05-workbench.md +44 -0
  164. package/skills/qk-ui-builder/references/macrostructures/06-conversational-faq.md +50 -0
  165. package/skills/qk-ui-builder/references/macrostructures/07-manifesto.md +51 -0
  166. package/skills/qk-ui-builder/references/macrostructures/08-photographic.md +50 -0
  167. package/skills/qk-ui-builder/references/macrostructures/09-quote-led.md +50 -0
  168. package/skills/qk-ui-builder/references/macrostructures/11-catalogue.md +49 -0
  169. package/skills/qk-ui-builder/references/macrostructures/12-letter.md +49 -0
  170. package/skills/qk-ui-builder/references/macrostructures/13-index-first.md +49 -0
  171. package/skills/qk-ui-builder/references/macrostructures/14-narrative-workflow.md +48 -0
  172. package/skills/qk-ui-builder/references/macrostructures/15-split-studio.md +48 -0
  173. package/skills/qk-ui-builder/references/macrostructures/16-feature-stack.md +51 -0
  174. package/skills/qk-ui-builder/references/macrostructures/17-type-specimen.md +48 -0
  175. package/skills/qk-ui-builder/references/macrostructures/18-portfolio-grid.md +48 -0
  176. package/skills/qk-ui-builder/references/macrostructures/19-map-diagram.md +50 -0
  177. package/skills/qk-ui-builder/references/macrostructures/20-ecosystem-index.md +48 -0
  178. package/skills/qk-ui-builder/references/macrostructures/21-component-playground.md +45 -0
  179. package/skills/qk-ui-builder/references/macrostructures.md +38 -0
  180. package/skills/qk-ui-builder/references/motion.md +95 -0
  181. package/skills/qk-ui-builder/references/responsive.md +115 -0
  182. package/skills/qk-ui-builder/references/slop-test.md +135 -0
  183. package/skills/qk-ui-builder/references/structure.md +280 -0
  184. package/skills/qk-ui-builder/references/themes/atmospheric.md +53 -0
  185. package/skills/qk-ui-builder/references/themes/carnival.md +52 -0
  186. package/skills/qk-ui-builder/references/themes/cobalt.md +52 -0
  187. package/skills/qk-ui-builder/references/themes/editorial.md +52 -0
  188. package/skills/qk-ui-builder/references/themes/garden.md +52 -0
  189. package/skills/qk-ui-builder/references/themes/hum.md +52 -0
  190. package/skills/qk-ui-builder/references/themes/lumen.md +52 -0
  191. package/skills/qk-ui-builder/references/themes/midnight.md +52 -0
  192. package/skills/qk-ui-builder/references/themes/modern-minimal.md +52 -0
  193. package/skills/qk-ui-builder/references/themes/playful.md +52 -0
  194. package/skills/qk-ui-builder/references/themes/specimen.md +52 -0
  195. package/skills/qk-ui-builder/references/themes/terminal.md +52 -0
  196. package/skills/qk-ui-builder/references/typography.md +129 -0
  197. package/skills/qk-ui-system-builder/SKILL.md +222 -43
  198. package/skills/qk-validation-gate/SKILL.md +360 -40
  199. package/skills.json +815 -825
  200. package/specs/fixtures/user-payload.json +12 -0
  201. package/specs/regressions/api-integration-null-fields.yaml +19 -0
  202. package/temp_fix.js +61 -0
  203. package/tests/registry.test.js +1 -1
  204. package/update_template.js +28 -0
  205. package/skills/qk-design-to-code/SKILL.md +0 -46
  206. package/skills/qk-policy-engine/SKILL.md +0 -39
@@ -0,0 +1,44 @@
1
+ # 05 — Workbench
2
+
3
+ **Fingerprint:** sidebar + main content, tool-first, dense information, keyboard-centric.
4
+
5
+ ## Structure
6
+
7
+ ```
8
+ +---------+------------------+
9
+ | Sidebar | Main Content |
10
+ | Nav | |
11
+ | Tools | Editor/Canvas |
12
+ | Status | |
13
+ +---------+------------------+
14
+ ```
15
+
16
+ ## Rules
17
+
18
+ - Sidebar width: 260px fixed on desktop, collapsible on mobile
19
+ - Main content: fluid, max-width 1200px
20
+ - Toolbar: sticky top of main content
21
+ - Status bar: sticky bottom of main content
22
+
23
+ ## Typography
24
+
25
+ - Heading: mono (Lumen) or geometric-sans (Cobalt)
26
+ - Body: body font, 14px base
27
+ - Code: mono, 13px
28
+
29
+ ## Spacing
30
+
31
+ - Sidebar padding: `--space-4`
32
+ - Main padding: `--space-6`
33
+ - Toolbar height: 48px
34
+
35
+ ## Anti-Patterns
36
+
37
+ - ❌ Centered hero in workbench
38
+ - ❌ Large decorative images
39
+ - ❌ Excessive whitespace
40
+
41
+ ## Theme Affinity
42
+
43
+ - ✅ Lumen, Cobalt
44
+ - ❌ Carnival (too playful)
@@ -0,0 +1,50 @@
1
+ # 06 — Conversational FAQ
2
+
3
+ **Fingerprint:** chat-like Q&A, message bubbles, support docs, expandable answers.
4
+
5
+ ## Structure
6
+
7
+ ```
8
+ +---------------------------+
9
+ | Search / Ask box |
10
+ +------+--------------------+
11
+ | Q | |
12
+ | [bubble] A (expand) |
13
+ | | ---- |
14
+ | Q | A |
15
+ | [bubble] |
16
+ +------+--------------------+
17
+ | Contact / escalate |
18
+ +---------------------------+
19
+ ```
20
+
21
+ ## Rules
22
+
23
+ - Questions: left-aligned or avatar-led bubbles
24
+ - Answers: expandable accordion or inline below question
25
+ - Search: filters questions live as user types
26
+ - Support escalation: visible link when answer insufficient
27
+ - Grouped by topic/category when many questions
28
+
29
+ ## Typography
30
+
31
+ - Heading: display for section title
32
+ - Question: medium weight, 15px
33
+ - Answer: body font, 14px, muted
34
+
35
+ ## Spacing
36
+
37
+ - Bubble padding: `--space-4` (16px)
38
+ - Bubble gap: `--space-3` (12px)
39
+ - Search margin-bottom: `--space-6` (24px)
40
+
41
+ ## Anti-Patterns
42
+
43
+ - ❌ Walls of ungrouped questions
44
+ - ❌ Answers that don't match the question
45
+ - ❌ No search on large FAQ sets
46
+
47
+ ## Theme Affinity
48
+
49
+ - ✅ Hum, Lumen
50
+ - ⚠️ Carnival (keep bubble decoration minimal)
@@ -0,0 +1,51 @@
1
+ # 07 — Manifesto
2
+
3
+ **Fingerprint:** brand statement, large editorial type, about pages, bold declarative copy.
4
+
5
+ ## Structure
6
+
7
+ ```
8
+ +---------------------------+
9
+ | |
10
+ | BIG STATEMENT |
11
+ | (one sentence, huge) |
12
+ | |
13
+ +------+--------------------+
14
+ | Lead | Supporting |
15
+ | para | paragraphs, |
16
+ | | values list |
17
+ +---------------------------+
18
+ | Sign-off / signature |
19
+ +---------------------------+
20
+ ```
21
+
22
+ ## Rules
23
+
24
+ - Opening statement: single declarative sentence, largest type scale
25
+ - Body: 1 lead paragraph + supporting points
26
+ - Values: short bullet or numbered list, not a table
27
+ - Generous negative space around the statement
28
+ - One signature/sign-off at the end
29
+
30
+ ## Typography
31
+
32
+ - Heading: editorial display or serif, very large
33
+ - Lead: body font, 20px, slightly muted
34
+ - Values: medium weight list items
35
+
36
+ ## Spacing
37
+
38
+ - Statement padding: `--space-12` (48px)
39
+ - Lead margin: `--space-8` (32px)
40
+ - Values gap: `--space-4` (16px)
41
+
42
+ ## Anti-Patterns
43
+
44
+ - ❌ Multiple equal-weight statements
45
+ - ❌ Cluttered hero with images
46
+ - ❌ Corporate buzzword soup without a point
47
+
48
+ ## Theme Affinity
49
+
50
+ - ✅ Hum, Carnival
51
+ - ⚠️ Lumen (can feel too technical)
@@ -0,0 +1,50 @@
1
+ # 08 — Photographic
2
+
3
+ **Fingerprint:** image-heavy, full-bleed photos, portfolios, travel, minimal chrome.
4
+
5
+ ## Structure
6
+
7
+ ```
8
+ +---------------------------+
9
+ | Minimal Nav (overlay) |
10
+ +---------------------------+
11
+ | |
12
+ | [ FULL-BLEED IMAGE ] |
13
+ | |
14
+ +------+------+-------------+
15
+ | img | img | img |
16
+ +------+------+-------------+
17
+ | Caption / story text |
18
+ +---------------------------+
19
+ ```
20
+
21
+ ## Rules
22
+
23
+ - Images: full-bleed or near-full-bleed, high resolution
24
+ - Nav: transparent overlay, becomes solid on scroll
25
+ - Captions: small, muted, placed under or beside image
26
+ - Limit text; let images carry the narrative
27
+ - Lazy-load below-fold images
28
+
29
+ ## Typography
30
+
31
+ - Heading: display or editorial, often white over image
32
+ - Caption: 13px muted, body font
33
+ - Body: minimal, max-width 60ch
34
+
35
+ ## Spacing
36
+
37
+ - Image gap: `--space-2` (8px) or 0 for bleed
38
+ - Caption margin-top: `--space-3` (12px)
39
+ - Section gap: `--space-10` (40px)
40
+
41
+ ## Anti-Patterns
42
+
43
+ - ❌ Heavy UI chrome over photos
44
+ - ❌ Low-res stretched images
45
+ - ❌ Text that competes with imagery
46
+
47
+ ## Theme Affinity
48
+
49
+ - ✅ Carnival, Hum
50
+ - ❌ Cobalt (too utilitarian)
@@ -0,0 +1,50 @@
1
+ # 09 — Quote-Led
2
+
3
+ **Fingerprint:** testimonial-first, large pull quotes, editorial, social proof.
4
+
5
+ ## Structure
6
+
7
+ ```
8
+ +---------------------------+
9
+ | |
10
+ | "BIG PULL QUOTE" |
11
+ | — attribution |
12
+ | |
13
+ +------+--------------------+
14
+ | small | supporting |
15
+ | quote | context / logo |
16
+ +------+--------------------+
17
+ | CTA / next quote |
18
+ +---------------------------+
19
+ ```
20
+
21
+ ## Rules
22
+
23
+ - Lead quote: largest type, occupies hero space
24
+ - Attribution: name, role, company, muted
25
+ - Secondary quotes: smaller, in a row or grid
26
+ - One dominant quote per screen, no crowding
27
+ - Optional logo lockup beside attribution
28
+
29
+ ## Typography
30
+
31
+ - Quote: editorial serif or display, italic optional
32
+ - Attribution: 14px medium, muted
33
+ - Body: body font, minimal
34
+
35
+ ## Spacing
36
+
37
+ - Quote padding: `--space-10` (40px)
38
+ - Attribution margin-top: `--space-4` (16px)
39
+ - Quote gap: `--space-6` (24px)
40
+
41
+ ## Anti-Patterns
42
+
43
+ - ❌ Multiple equal quotes fighting for attention
44
+ - ❌ Fake-looking testimonials without attribution
45
+ - ❌ Quote text too small to read
46
+
47
+ ## Theme Affinity
48
+
49
+ - ✅ Hum, Carnival
50
+ - ⚠️ Lumen (needs warmer tone)
@@ -0,0 +1,49 @@
1
+ # 11 — Catalogue
2
+
3
+ **Fingerprint:** product listings, e-commerce grid, filterable cards, scannable.
4
+
5
+ ## Structure
6
+
7
+ ```
8
+ +---------------------------+
9
+ | Search + Filters |
10
+ +------+--------------------+
11
+ | Facet| [card][card] |
12
+ | Nav | [card][card] |
13
+ | | [card][card] |
14
+ | | |
15
+ +------+--------------------+
16
+ | Pagination / Load more |
17
+ +---------------------------+
18
+ ```
19
+
20
+ ## Rules
21
+
22
+ - Grid: 3–4 columns desktop, 2 tablet, 1 mobile
23
+ - Card: image, title, price, rating, quick-add
24
+ - Facets: sticky filter sidebar, collapsible on mobile
25
+ - Pagination: numbered or infinite scroll, state preserved
26
+ - Sorting: visible control (price, popularity)
27
+
28
+ ## Typography
29
+
30
+ - Heading: display for page title
31
+ - Price: tabular-nums, medium weight
32
+ - Title: 14px body, truncated to 2 lines
33
+
34
+ ## Spacing
35
+
36
+ - Grid gap: `--space-4` (16px)
37
+ - Card padding: `--space-3` (12px)
38
+ - Filter width: 240px
39
+
40
+ ## Anti-Patterns
41
+
42
+ - ❌ Cards with inconsistent heights breaking grid
43
+ - ❌ Hidden or unclear pricing
44
+ - ❌ Filters that require page reload
45
+
46
+ ## Theme Affinity
47
+
48
+ - ✅ Carnival, Cobalt
49
+ - ❌ Hum (needs more product pop)
@@ -0,0 +1,49 @@
1
+ # 12 — Letter
2
+
3
+ **Fingerprint:** personal, newsletters, 1-on-1 communication, single readable column.
4
+
5
+ ## Structure
6
+
7
+ ```
8
+ +---------------------------+
9
+ | Salutation (Dear ...) |
10
+ +---------------------------+
11
+ | Body paragraphs |
12
+ | (personal, signed) |
13
+ | |
14
+ | Signature |
15
+ +---------------------------+
16
+ | PS / footnotes |
17
+ +---------------------------+
18
+ ```
19
+
20
+ ## Rules
21
+
22
+ - Single column, intimate width (max 60ch)
23
+ - Tone: first-person, conversational
24
+ - Salutation and signature frame the content
25
+ - Optional PS line for emphasis
26
+ - Minimal decoration; focus on the words
27
+
28
+ ## Typography
29
+
30
+ - Heading: display or editorial for subject
31
+ - Body: body font, 17px, comfortable line-height
32
+ - Signature: italic or handwritten-style if theme allows
33
+
34
+ ## Spacing
35
+
36
+ - Body padding: `--space-8` (32px)
37
+ - Paragraph gap: `--space-4` (16px)
38
+ - Signature margin-top: `--space-6` (24px)
39
+
40
+ ## Anti-Patterns
41
+
42
+ - ❌ Corporate marketing tone
43
+ - ❌ Multi-column newsletter chaos
44
+ - ❌ Missing personal sign-off
45
+
46
+ ## Theme Affinity
47
+
48
+ - ✅ Hum, Lumen
49
+ - ⚠️ Carnival (tone may clash)
@@ -0,0 +1,49 @@
1
+ # 13 — Index-First
2
+
3
+ **Fingerprint:** wiki-style, knowledge base, docs hub, alphabetical/topic index upfront.
4
+
5
+ ## Structure
6
+
7
+ ```
8
+ +---------------------------+
9
+ | Search + A-Z / Topics |
10
+ +------+--------------------+
11
+ | Index| Entry content |
12
+ | list | (when selected) |
13
+ | A B | |
14
+ | C D | headings, links |
15
+ +------+--------------------+
16
+ | Breadcrumb |
17
+ +---------------------------+
18
+ ```
19
+
20
+ ## Rules
21
+
22
+ - Index: alphabetical or categorical list, always visible
23
+ - Search: primary entry point, live filter
24
+ - Entries: cross-linked, consistent heading structure
25
+ - Breadcrumb: shows location in hierarchy
26
+ - Last-updated timestamp per entry
27
+
28
+ ## Typography
29
+
30
+ - Heading: display for hub title
31
+ - Index items: 14px, hover underline
32
+ - Entry body: body font, 16px
33
+
34
+ ## Spacing
35
+
36
+ - Index width: 220px
37
+ - Entry padding: `--space-6` (24px)
38
+ - Item gap: `--space-2` (8px)
39
+
40
+ ## Anti-Patterns
41
+
42
+ - ❌ Deep nesting with no index
43
+ - ❌ Orphan pages without back-links
44
+ - ❌ Stale "last updated" dates
45
+
46
+ ## Theme Affinity
47
+
48
+ - ✅ Lumen, Cobalt
49
+ - ❌ Carnival (too playful for reference)
@@ -0,0 +1,48 @@
1
+ # 14 — Narrative Workflow
2
+
3
+ **Fingerprint:** vertical scroll, step-by-step progression, progress indicator, one primary action per screen.
4
+
5
+ ## Structure
6
+
7
+ ```
8
+ +---------------------+
9
+ | Progress Bar |
10
+ +---------------------+
11
+ | |
12
+ | Step Content |
13
+ | (text + media) |
14
+ | [Primary Action] |
15
+ +---------------------+
16
+ | Skip / Back |
17
+ +---------------------+
18
+ ```
19
+
20
+ ## Rules
21
+
22
+ - Max 1 primary action per step
23
+ - Progress bar always visible
24
+ - Steps must have clear entry/exit criteria
25
+ - Support keyboard navigation (Enter = next, Backspace = back)
26
+
27
+ ## Typography
28
+
29
+ - Heading: display style, 1 per step
30
+ - Body: body font, max-width 65ch
31
+ - Helper text: muted color, 14px
32
+
33
+ ## Spacing
34
+
35
+ - Step padding: `--space-8` (32px)
36
+ - Action margin-top: `--space-6` (24px)
37
+ - Progress bar height: 4px
38
+
39
+ ## Anti-Patterns
40
+
41
+ - ❌ Multiple CTAs per step
42
+ - ❌ Progress bar that doesn't reflect actual state
43
+ - ❌ Steps that require going back to change data
44
+
45
+ ## Theme Affinity
46
+
47
+ - ✅ Hum, Cobalt
48
+ - ⚠️ Carnival (can work but needs restraint)
@@ -0,0 +1,48 @@
1
+ # 15 — Split Studio
2
+
3
+ **Fingerprint:** before/after, comparison layouts, side-by-side, A/B showcase.
4
+
5
+ ## Structure
6
+
7
+ ```
8
+ +---------------------------+
9
+ | Title + toggle (vs) |
10
+ +-------------+-------------+
11
+ | BEFORE | AFTER |
12
+ | (media) | (media) |
13
+ | caption | caption |
14
+ +-------------+-------------+
15
+ | Diff / notes row |
16
+ +---------------------------+
17
+ ```
18
+
19
+ ## Rules
20
+
21
+ - Two equal panes, clear "vs" divider or toggle
22
+ - Sync scroll when comparing scrollable content
23
+ - Optional slider for wipe comparison
24
+ - Captions: label each side unambiguously
25
+ - Notes: explain the difference below
26
+
27
+ ## Typography
28
+
29
+ - Heading: display for comparison title
30
+ - Pane labels: uppercase, 13px muted
31
+ - Notes: body font, 15px
32
+
33
+ ## Spacing
34
+
35
+ - Pane gap: `--space-2` (8px) or divider line
36
+ - Pane padding: `--space-4` (16px)
37
+ - Notes margin-top: `--space-6` (24px)
38
+
39
+ ## Anti-Patterns
40
+
41
+ - ❌ Asymmetric panes implying bias
42
+ - ❌ No labels on before/after
43
+ - ❌ Wipe slider that lags input
44
+
45
+ ## Theme Affinity
46
+
47
+ - ✅ Cobalt, Lumen
48
+ - ⚠️ Carnival (keep divider clean)
@@ -0,0 +1,51 @@
1
+ # 16 — Feature Stack
2
+
3
+ **Fingerprint:** stacked feature highlights, SaaS product pages, alternating sections.
4
+
5
+ ## Structure
6
+
7
+ ```
8
+ +---------------------------+
9
+ | Hero (value prop) |
10
+ +------+--------------------+
11
+ | img | Feature 1 |
12
+ | | (title + desc) |
13
+ +------+--------------------+
14
+ | Feature 2 | img |
15
+ +------+--------------------+
16
+ | ... repeated N times |
17
+ +---------------------------+
18
+ | Final CTA |
19
+ +---------------------------+
20
+ ```
21
+
22
+ ## Rules
23
+
24
+ - Alternating image/text rows, consistent rhythm
25
+ - Each feature: one headline, 1–2 sentence desc, optional icon
26
+ - Max 5–6 features before fatigue
27
+ - Sticky or scroll-reveal for emphasis
28
+ - Final CTA after the stack
29
+
30
+ ## Typography
31
+
32
+ - Heading: display for hero and feature titles
33
+ - Desc: body font, 16px, max-width 50ch
34
+ - Icon labels: 13px muted
35
+
36
+ ## Spacing
37
+
38
+ - Row padding: `--space-10` (40px)
39
+ - Row gap: `--space-8` (32px)
40
+ - Media min-height: 320px
41
+
42
+ ## Anti-Patterns
43
+
44
+ - ❌ More than 6 stacked features
45
+ - ❌ Inconsistent alternation direction
46
+ - ❌ Features without a clear benefit
47
+
48
+ ## Theme Affinity
49
+
50
+ - ✅ Cobalt, Hum
51
+ - ⚠️ Carnival (restraint needed)
@@ -0,0 +1,48 @@
1
+ # 17 — Type Specimen
2
+
3
+ **Fingerprint:** typography showcase, design system docs, font scales on display.
4
+
5
+ ## Structure
6
+
7
+ ```
8
+ +---------------------------+
9
+ | Typeface name + meta |
10
+ +------+--------------------+
11
+ | Spec | Glyph / alphabet |
12
+ | nav | Aa Bb Cc ... |
13
+ | | Weight row |
14
+ +------+--------------------+
15
+ | Scale / line-height |
16
+ +---------------------------+
17
+ ```
18
+
19
+ ## Rules
20
+
21
+ - Show full character set and key glyphs
22
+ - Display each weight (light → black) with label
23
+ - Type scale: list sizes with px/rem and usage
24
+ - Sample text: pangram + real paragraph
25
+ - Nav: jump to typeface sections
26
+
27
+ ## Typography
28
+
29
+ - Specimen: the typeface itself, all sizes
30
+ - Labels: mono, 12px muted for metadata
31
+ - Sample: body font fallback noted
32
+
33
+ ## Spacing
34
+
35
+ - Specimen padding: `--space-8` (32px)
36
+ - Weight row gap: `--space-4` (16px)
37
+ - Nav width: 200px
38
+
39
+ ## Anti-Patterns
40
+
41
+ - ❌ Showing only one weight
42
+ - ❌ No scale reference
43
+ - ❌ Illegible specimen background
44
+
45
+ ## Theme Affinity
46
+
47
+ - ✅ Lumen, Cobalt
48
+ - ❌ Hum (too quiet for showcase)
@@ -0,0 +1,48 @@
1
+ # 18 — Portfolio Grid
2
+
3
+ **Fingerprint:** creative portfolio, masonry grid, varied tile sizes, visual-first.
4
+
5
+ ## Structure
6
+
7
+ ```
8
+ +---------------------------+
9
+ | Name + filter (tags) |
10
+ +---------------------------+
11
+ | [big][sm][sm] |
12
+ | [sm ][med ] |
13
+ | [med ][sm][big] |
14
+ +---------------------------+
15
+ | Hover = reveal meta |
16
+ +---------------------------+
17
+ ```
18
+
19
+ ## Rules
20
+
21
+ - Masonry or bento-style varied tile sizes
22
+ - Hover/focus: reveal title, category, year
23
+ - Filter: by tag/category, animates layout
24
+ - Click: opens project detail
25
+ - No fixed equal rows; embrace asymmetry
26
+
27
+ ## Typography
28
+
29
+ - Heading: display for name/title
30
+ - Tile meta: 13px muted, revealed on hover
31
+ - Tags: 12px uppercase labels
32
+
33
+ ## Spacing
34
+
35
+ - Grid gap: `--space-3` (12px)
36
+ - Tile min-height: 200px
37
+ - Filter margin-bottom: `--space-6` (24px)
38
+
39
+ ## Anti-Patterns
40
+
41
+ - ❌ Rigid equal grid hiding creativity
42
+ - ❌ No hover state on tiles
43
+ - ❌ Missing project metadata
44
+
45
+ ## Theme Affinity
46
+
47
+ - ✅ Carnival, Hum
48
+ - ❌ Cobalt (too rigid)
@@ -0,0 +1,50 @@
1
+ # 19 — Map / Diagram
2
+
3
+ **Fingerprint:** architecture diagrams, org charts, flows, node-and-edge layouts.
4
+
5
+ ## Structure
6
+
7
+ ```
8
+ +---------------------------+
9
+ | Legend + zoom controls |
10
+ +---------------------------+
11
+ | |
12
+ | [ node ] -- [ node ] |
13
+ | \ / |
14
+ | [ node ] |
15
+ | |
16
+ +---------------------------+
17
+ | Side panel (node info) |
18
+ +---------------------------+
19
+ ```
20
+
21
+ ## Rules
22
+
23
+ - Nodes: clear shapes with labels, consistent styling
24
+ - Edges: directional arrows, avoid crossing when possible
25
+ - Legend: explains node/edge types
26
+ - Zoom/pan: required for complex diagrams
27
+ - Side panel: details on node select
28
+
29
+ ## Typography
30
+
31
+ - Heading: display for diagram title
32
+ - Node label: 13px medium, legible on node bg
33
+ - Legend: 12px muted
34
+
35
+ ## Spacing
36
+
37
+ - Node padding: `--space-3` (12px)
38
+ - Edge spacing: auto-layout with min gap
39
+ - Panel width: 280px
40
+
41
+ ## Anti-Patterns
42
+
43
+ - ❌ Overlapping nodes/edges
44
+ - ❌ Unlabeled connections
45
+ - ❌ No zoom on large diagrams
46
+
47
+ ## Theme Affinity
48
+
49
+ - ✅ Lumen, Cobalt
50
+ - ❌ Carnival (distracts from structure)