qualia-framework 2.1.0

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 (261) hide show
  1. package/README.md +50 -0
  2. package/bin/cli.js +519 -0
  3. package/framework/agents/architecture-strategist.md +53 -0
  4. package/framework/agents/backend-agent.md +150 -0
  5. package/framework/agents/code-simplicity-reviewer.md +86 -0
  6. package/framework/agents/frontend-agent.md +111 -0
  7. package/framework/agents/kieran-typescript-reviewer.md +96 -0
  8. package/framework/agents/performance-oracle.md +111 -0
  9. package/framework/agents/qualia-codebase-mapper.md +760 -0
  10. package/framework/agents/qualia-debugger.md +1203 -0
  11. package/framework/agents/qualia-executor.md +881 -0
  12. package/framework/agents/qualia-integration-checker.md +423 -0
  13. package/framework/agents/qualia-phase-researcher.md +453 -0
  14. package/framework/agents/qualia-plan-checker.md +699 -0
  15. package/framework/agents/qualia-planner.md +1241 -0
  16. package/framework/agents/qualia-project-researcher.md +602 -0
  17. package/framework/agents/qualia-research-synthesizer.md +236 -0
  18. package/framework/agents/qualia-roadmapper.md +605 -0
  19. package/framework/agents/qualia-verifier.md +685 -0
  20. package/framework/agents/team-orchestrator.md +228 -0
  21. package/framework/agents/teams/full-stack-team.md +48 -0
  22. package/framework/agents/teams/optimize-team.md +53 -0
  23. package/framework/agents/teams/review-team.md +62 -0
  24. package/framework/agents/teams/ship-team.md +86 -0
  25. package/framework/agents/test-agent.md +182 -0
  26. package/framework/askpass.sh +2 -0
  27. package/framework/commands/design.md +53 -0
  28. package/framework/commands/quick-db.md +22 -0
  29. package/framework/config/retention.json +35 -0
  30. package/framework/core/PRINCIPLES.md +77 -0
  31. package/framework/hooks/auto-format.sh +45 -0
  32. package/framework/hooks/block-env-edit.sh +42 -0
  33. package/framework/hooks/branch-guard.sh +46 -0
  34. package/framework/hooks/confirm-delete.sh +56 -0
  35. package/framework/hooks/migration-validate.sh +68 -0
  36. package/framework/hooks/notification-speak.sh +15 -0
  37. package/framework/hooks/pre-commit.sh +80 -0
  38. package/framework/hooks/pre-compact.sh +55 -0
  39. package/framework/hooks/pre-deploy-gate.sh +151 -0
  40. package/framework/hooks/qualia-colors.sh +32 -0
  41. package/framework/hooks/retention-cleanup.sh +43 -0
  42. package/framework/hooks/save-session-state.sh +153 -0
  43. package/framework/hooks/session-context-loader.sh +28 -0
  44. package/framework/hooks/session-learn.sh +30 -0
  45. package/framework/knowledge/claudecode-bible.md +1384 -0
  46. package/framework/knowledge/client-prefs.md +22 -0
  47. package/framework/knowledge/common-fixes.md +25 -0
  48. package/framework/knowledge/deployment-map.md +35 -0
  49. package/framework/knowledge/email-signature.html +1 -0
  50. package/framework/knowledge/employees.md +8 -0
  51. package/framework/knowledge/learned-patterns.md +51 -0
  52. package/framework/knowledge/optimization-research-2026.md +137 -0
  53. package/framework/knowledge/qualia-context.md +67 -0
  54. package/framework/knowledge/supabase-patterns.md +50 -0
  55. package/framework/knowledge/voice-agent-patterns.md +46 -0
  56. package/framework/qualia-engine/VERSION +1 -0
  57. package/framework/qualia-engine/bin/qualia-tools.js +2160 -0
  58. package/framework/qualia-engine/bin/qualia-tools.test.js +1054 -0
  59. package/framework/qualia-engine/references/checkpoints.md +775 -0
  60. package/framework/qualia-engine/references/continuation-format.md +249 -0
  61. package/framework/qualia-engine/references/decimal-phase-calculation.md +65 -0
  62. package/framework/qualia-engine/references/design-quality.md +56 -0
  63. package/framework/qualia-engine/references/git-integration.md +254 -0
  64. package/framework/qualia-engine/references/git-planning-commit.md +50 -0
  65. package/framework/qualia-engine/references/model-profile-resolution.md +32 -0
  66. package/framework/qualia-engine/references/model-profiles.md +73 -0
  67. package/framework/qualia-engine/references/phase-argument-parsing.md +61 -0
  68. package/framework/qualia-engine/references/planning-config.md +195 -0
  69. package/framework/qualia-engine/references/questioning.md +141 -0
  70. package/framework/qualia-engine/references/tdd.md +263 -0
  71. package/framework/qualia-engine/references/ui-brand.md +160 -0
  72. package/framework/qualia-engine/references/verification-patterns.md +612 -0
  73. package/framework/qualia-engine/templates/DEBUG.md +159 -0
  74. package/framework/qualia-engine/templates/DESIGN.md +81 -0
  75. package/framework/qualia-engine/templates/UAT.md +247 -0
  76. package/framework/qualia-engine/templates/codebase/architecture.md +255 -0
  77. package/framework/qualia-engine/templates/codebase/concerns.md +310 -0
  78. package/framework/qualia-engine/templates/codebase/conventions.md +307 -0
  79. package/framework/qualia-engine/templates/codebase/integrations.md +280 -0
  80. package/framework/qualia-engine/templates/codebase/stack.md +186 -0
  81. package/framework/qualia-engine/templates/codebase/structure.md +285 -0
  82. package/framework/qualia-engine/templates/codebase/testing.md +480 -0
  83. package/framework/qualia-engine/templates/config.json +35 -0
  84. package/framework/qualia-engine/templates/context.md +283 -0
  85. package/framework/qualia-engine/templates/continue-here.md +78 -0
  86. package/framework/qualia-engine/templates/debug-subagent-prompt.md +91 -0
  87. package/framework/qualia-engine/templates/discovery.md +146 -0
  88. package/framework/qualia-engine/templates/milestone-archive.md +123 -0
  89. package/framework/qualia-engine/templates/milestone.md +115 -0
  90. package/framework/qualia-engine/templates/phase-prompt.md +567 -0
  91. package/framework/qualia-engine/templates/planner-subagent-prompt.md +117 -0
  92. package/framework/qualia-engine/templates/project.md +184 -0
  93. package/framework/qualia-engine/templates/projects/ai-agent.md +156 -0
  94. package/framework/qualia-engine/templates/projects/mobile-app.md +181 -0
  95. package/framework/qualia-engine/templates/projects/voice-agent.md +134 -0
  96. package/framework/qualia-engine/templates/projects/website.md +137 -0
  97. package/framework/qualia-engine/templates/requirements.md +231 -0
  98. package/framework/qualia-engine/templates/research-project/ARCHITECTURE.md +204 -0
  99. package/framework/qualia-engine/templates/research-project/FEATURES.md +147 -0
  100. package/framework/qualia-engine/templates/research-project/PITFALLS.md +200 -0
  101. package/framework/qualia-engine/templates/research-project/STACK.md +120 -0
  102. package/framework/qualia-engine/templates/research-project/SUMMARY.md +170 -0
  103. package/framework/qualia-engine/templates/research.md +552 -0
  104. package/framework/qualia-engine/templates/roadmap.md +202 -0
  105. package/framework/qualia-engine/templates/state.md +176 -0
  106. package/framework/qualia-engine/templates/summary-complex.md +59 -0
  107. package/framework/qualia-engine/templates/summary-minimal.md +41 -0
  108. package/framework/qualia-engine/templates/summary-standard.md +48 -0
  109. package/framework/qualia-engine/templates/summary.md +246 -0
  110. package/framework/qualia-engine/templates/user-setup.md +311 -0
  111. package/framework/qualia-engine/templates/verification-report.md +322 -0
  112. package/framework/qualia-engine/workflows/add-phase.md +179 -0
  113. package/framework/qualia-engine/workflows/add-todo.md +157 -0
  114. package/framework/qualia-engine/workflows/audit-milestone.md +241 -0
  115. package/framework/qualia-engine/workflows/check-todos.md +176 -0
  116. package/framework/qualia-engine/workflows/complete-milestone.md +858 -0
  117. package/framework/qualia-engine/workflows/diagnose-issues.md +219 -0
  118. package/framework/qualia-engine/workflows/discovery-phase.md +289 -0
  119. package/framework/qualia-engine/workflows/discuss-phase.md +534 -0
  120. package/framework/qualia-engine/workflows/execute-phase.md +559 -0
  121. package/framework/qualia-engine/workflows/execute-plan.md +438 -0
  122. package/framework/qualia-engine/workflows/help.md +470 -0
  123. package/framework/qualia-engine/workflows/insert-phase.md +220 -0
  124. package/framework/qualia-engine/workflows/list-phase-assumptions.md +178 -0
  125. package/framework/qualia-engine/workflows/map-codebase.md +327 -0
  126. package/framework/qualia-engine/workflows/new-milestone.md +363 -0
  127. package/framework/qualia-engine/workflows/new-project.md +1037 -0
  128. package/framework/qualia-engine/workflows/pause-work.md +122 -0
  129. package/framework/qualia-engine/workflows/plan-milestone-gaps.md +256 -0
  130. package/framework/qualia-engine/workflows/plan-phase.md +422 -0
  131. package/framework/qualia-engine/workflows/progress.md +354 -0
  132. package/framework/qualia-engine/workflows/quick.md +252 -0
  133. package/framework/qualia-engine/workflows/remove-phase.md +326 -0
  134. package/framework/qualia-engine/workflows/research-phase.md +74 -0
  135. package/framework/qualia-engine/workflows/resume-project.md +306 -0
  136. package/framework/qualia-engine/workflows/set-profile.md +80 -0
  137. package/framework/qualia-engine/workflows/settings.md +145 -0
  138. package/framework/qualia-engine/workflows/transition.md +556 -0
  139. package/framework/qualia-engine/workflows/update.md +197 -0
  140. package/framework/qualia-engine/workflows/verify-phase.md +195 -0
  141. package/framework/qualia-engine/workflows/verify-work.md +625 -0
  142. package/framework/rules/context7.md +11 -0
  143. package/framework/rules/deployment.md +29 -0
  144. package/framework/rules/frontend.md +33 -0
  145. package/framework/rules/security.md +12 -0
  146. package/framework/rules/speed.md +20 -0
  147. package/framework/scripts/__pycache__/say.cpython-314.pyc +0 -0
  148. package/framework/scripts/apply-retention.sh +120 -0
  149. package/framework/scripts/bootstrap-pop-os.sh +354 -0
  150. package/framework/scripts/claude-voice +13 -0
  151. package/framework/scripts/cleanup.sh +131 -0
  152. package/framework/scripts/cowork-mode.sh +141 -0
  153. package/framework/scripts/generate-project-claude-md.sh +153 -0
  154. package/framework/scripts/load-test-webhook.js +172 -0
  155. package/framework/scripts/say.py +236 -0
  156. package/framework/scripts/showcase-video-recorder/ffmpeg-builder.js +167 -0
  157. package/framework/scripts/showcase-video-recorder/playwright-helpers.js +216 -0
  158. package/framework/scripts/speak.py +55 -0
  159. package/framework/scripts/speak.sh +18 -0
  160. package/framework/scripts/status.sh +138 -0
  161. package/framework/scripts/sync-to-framework.sh +65 -0
  162. package/framework/scripts/voice-hotkey.py +227 -0
  163. package/framework/scripts/voice-input.sh +51 -0
  164. package/framework/skills/animate/SKILL.md +202 -0
  165. package/framework/skills/bolder/SKILL.md +144 -0
  166. package/framework/skills/browser-qa/SKILL.md +536 -0
  167. package/framework/skills/clarify/SKILL.md +179 -0
  168. package/framework/skills/colorize/SKILL.md +170 -0
  169. package/framework/skills/critique/SKILL.md +126 -0
  170. package/framework/skills/deep-research/SKILL.md +271 -0
  171. package/framework/skills/delight/SKILL.md +329 -0
  172. package/framework/skills/deploy/SKILL.md +261 -0
  173. package/framework/skills/deploy-verify/SKILL.md +377 -0
  174. package/framework/skills/deploy-verify/scripts/canary-check.sh +206 -0
  175. package/framework/skills/deploy-verify/scripts/check-console-errors.js +147 -0
  176. package/framework/skills/deploy-verify/scripts/check-cwv.js +139 -0
  177. package/framework/skills/deploy-verify/scripts/project-detect.sh +84 -0
  178. package/framework/skills/deploy-verify/scripts/verify.sh +548 -0
  179. package/framework/skills/design-quieter/SKILL.md +130 -0
  180. package/framework/skills/distill/SKILL.md +149 -0
  181. package/framework/skills/docs-lookup/SKILL.md +78 -0
  182. package/framework/skills/fcm-notifications/SKILL.md +125 -0
  183. package/framework/skills/financial-ledger/SKILL.md +1039 -0
  184. package/framework/skills/frontend-master/NOTICE.md +4 -0
  185. package/framework/skills/frontend-master/SKILL.md +127 -0
  186. package/framework/skills/frontend-master/reference/color-and-contrast.md +132 -0
  187. package/framework/skills/frontend-master/reference/interaction-design.md +123 -0
  188. package/framework/skills/frontend-master/reference/motion-design.md +99 -0
  189. package/framework/skills/frontend-master/reference/responsive-design.md +114 -0
  190. package/framework/skills/frontend-master/reference/spatial-design.md +100 -0
  191. package/framework/skills/frontend-master/reference/typography.md +131 -0
  192. package/framework/skills/frontend-master/reference/ux-writing.md +107 -0
  193. package/framework/skills/harden/SKILL.md +357 -0
  194. package/framework/skills/i18n-rtl/SKILL.md +752 -0
  195. package/framework/skills/learn/SKILL.md +71 -0
  196. package/framework/skills/memory/SKILL.md +50 -0
  197. package/framework/skills/mobile-expo/SKILL.md +864 -0
  198. package/framework/skills/mobile-expo/references/store-checklist.md +550 -0
  199. package/framework/skills/nestjs-backend/README.md +73 -0
  200. package/framework/skills/nestjs-backend/SKILL.md +446 -0
  201. package/framework/skills/nestjs-backend/references/templates.md +1173 -0
  202. package/framework/skills/normalize/SKILL.md +79 -0
  203. package/framework/skills/onboard/SKILL.md +242 -0
  204. package/framework/skills/polish/SKILL.md +209 -0
  205. package/framework/skills/pr/SKILL.md +66 -0
  206. package/framework/skills/qualia/SKILL.md +153 -0
  207. package/framework/skills/qualia-add-todo/SKILL.md +68 -0
  208. package/framework/skills/qualia-audit-milestone/SKILL.md +92 -0
  209. package/framework/skills/qualia-check-todos/SKILL.md +55 -0
  210. package/framework/skills/qualia-complete-milestone/SKILL.md +108 -0
  211. package/framework/skills/qualia-debug/SKILL.md +149 -0
  212. package/framework/skills/qualia-design/SKILL.md +203 -0
  213. package/framework/skills/qualia-discuss-phase/SKILL.md +72 -0
  214. package/framework/skills/qualia-execute-phase/SKILL.md +86 -0
  215. package/framework/skills/qualia-help/SKILL.md +67 -0
  216. package/framework/skills/qualia-idk/SKILL.md +352 -0
  217. package/framework/skills/qualia-list-phase-assumptions/SKILL.md +67 -0
  218. package/framework/skills/qualia-new-milestone/SKILL.md +72 -0
  219. package/framework/skills/qualia-new-project/SKILL.md +92 -0
  220. package/framework/skills/qualia-optimize/SKILL.md +417 -0
  221. package/framework/skills/qualia-pause-work/SKILL.md +96 -0
  222. package/framework/skills/qualia-plan-milestone-gaps/SKILL.md +57 -0
  223. package/framework/skills/qualia-plan-phase/SKILL.md +101 -0
  224. package/framework/skills/qualia-progress/SKILL.md +53 -0
  225. package/framework/skills/qualia-quick/SKILL.md +89 -0
  226. package/framework/skills/qualia-research-phase/SKILL.md +88 -0
  227. package/framework/skills/qualia-resume-work/SKILL.md +62 -0
  228. package/framework/skills/qualia-review/SKILL.md +263 -0
  229. package/framework/skills/qualia-start/SKILL.md +182 -0
  230. package/framework/skills/qualia-verify-work/SKILL.md +105 -0
  231. package/framework/skills/qualia-workflow/SKILL.md +130 -0
  232. package/framework/skills/rag/SKILL.md +750 -0
  233. package/framework/skills/responsive/SKILL.md +231 -0
  234. package/framework/skills/retro/SKILL.md +284 -0
  235. package/framework/skills/sakani-conventions/SKILL.md +136 -0
  236. package/framework/skills/sakani-conventions/evals/evals.json +23 -0
  237. package/framework/skills/sakani-conventions/references/entities.md +365 -0
  238. package/framework/skills/sakani-conventions/references/error-codes.md +95 -0
  239. package/framework/skills/seo-master/SKILL.md +490 -0
  240. package/framework/skills/seo-master/references/checklist.md +199 -0
  241. package/framework/skills/seo-master/references/structured-data.md +609 -0
  242. package/framework/skills/ship/SKILL.md +202 -0
  243. package/framework/skills/stack-researcher/SKILL.md +215 -0
  244. package/framework/skills/status/SKILL.md +154 -0
  245. package/framework/skills/status/scripts/health-check.sh +562 -0
  246. package/framework/skills/subscription-payments/SKILL.md +250 -0
  247. package/framework/skills/supabase/SKILL.md +973 -0
  248. package/framework/skills/supabase/references/templates.md +159 -0
  249. package/framework/skills/team/SKILL.md +67 -0
  250. package/framework/skills/test-runner/SKILL.md +202 -0
  251. package/framework/skills/voice-agent/SKILL.md +407 -0
  252. package/framework/skills/zoho-workflow/SKILL.md +51 -0
  253. package/framework/statusline-command.sh +117 -0
  254. package/package.json +24 -0
  255. package/profiles/fawzi.json +16 -0
  256. package/profiles/hasan.json +16 -0
  257. package/profiles/moayad.json +16 -0
  258. package/templates/CLAUDE-owner.md +52 -0
  259. package/templates/CLAUDE.md.hbs +58 -0
  260. package/templates/env.claude.template +12 -0
  261. package/templates/settings.json +141 -0
@@ -0,0 +1,203 @@
1
+ ---
2
+ name: qualia-design
3
+ description: "One-command design transformation — critiques, fixes, polishes, hardens, and makes responsive in one shot. No reports, no choices, just makes it look professional. Use this skill whenever the user says 'fix the design', 'make it look better', 'redesign', 'make it modern', 'make it professional', 'qualia-design', 'design pass', 'it looks ugly', 'fix the UI', 'make it pretty', 'design overhaul', or wants their frontend to look great without running multiple commands."
4
+ ---
5
+
6
+ # Qualia Design — One-Shot Design Transformation
7
+
8
+ Make it look great. No reports, no choices, no back-and-forth. Read the code, understand what's wrong, fix everything, move on.
9
+
10
+ This orchestrates critique → fix → responsive → polish → harden in one pass.
11
+
12
+ ## Usage
13
+
14
+ - `/qualia-design` — Full design transformation on all frontend files
15
+ - `/qualia-design app/page.tsx` — Transform specific file(s)
16
+ - `/qualia-design --scope=dashboard` — Transform a section (greps for matching files)
17
+
18
+ ## Process
19
+
20
+ ### Step 1: Understand the Brand
21
+
22
+ Read design context BEFORE touching anything:
23
+
24
+ ```bash
25
+ cat .planning/DESIGN.md 2>/dev/null || echo "NO_DESIGN"
26
+ ```
27
+
28
+ ```bash
29
+ cat ~/.claude/rules/frontend.md 2>/dev/null
30
+ ```
31
+
32
+ ```bash
33
+ # Find all frontend files changed recently or specified
34
+ git diff --name-only HEAD~10..HEAD 2>/dev/null | grep -E '\.(tsx|jsx|css|scss)$' | head -30
35
+ ```
36
+
37
+ If DESIGN.md exists → use it as the source of truth for colors, typography, spacing, brand personality.
38
+
39
+ If NO DESIGN.md → use `rules/frontend.md` defaults: distinctive fonts, sharp accents, layered backgrounds, no card grids, no blue-purple gradients, full-width layouts.
40
+
41
+ Read the `frontend-master` skill for the full design system:
42
+ ```bash
43
+ cat ~/.claude/skills/frontend-master/SKILL.md
44
+ ```
45
+
46
+ ### Step 2: Identify Target Files
47
+
48
+ **If specific files provided** ($ARGUMENTS): use those.
49
+
50
+ **If --scope provided**: find matching files:
51
+ ```bash
52
+ find app components -name "*.tsx" -o -name "*.jsx" | xargs grep -l "$SCOPE" 2>/dev/null
53
+ ```
54
+
55
+ **If no arguments**: find all user-facing frontend files:
56
+ ```bash
57
+ find app -name "page.tsx" -o -name "layout.tsx" 2>/dev/null
58
+ find components -name "*.tsx" -type f 2>/dev/null | head -20
59
+ ```
60
+
61
+ Read EVERY target file before modifying. Understand the current state.
62
+
63
+ ### Step 3: Critique (internal — don't output report)
64
+
65
+ For each file, mentally evaluate using the critique skill's 10 dimensions:
66
+
67
+ 1. **AI slop detection** — Generic patterns? Looks like every other AI-built site?
68
+ 2. **Visual hierarchy** — Can users scan and find what matters?
69
+ 3. **Information architecture** — Is content grouped logically?
70
+ 4. **Typography** — Distinctive font? Proper scale? Good line height?
71
+ 5. **Color** — Cohesive palette? Sharp accents? Not bland?
72
+ 6. **States** — Loading, error, empty, hover, focus, active, disabled all handled?
73
+ 7. **Motion** — Meaningful transitions? Staggered animations? Not static?
74
+ 8. **Spacing** — Consistent rhythm? Breathing room? Not cramped?
75
+ 9. **Responsiveness** — Full-width? Proper breakpoints? Touch targets?
76
+ 10. **Microcopy** — Clear labels? Helpful error messages? Good CTAs?
77
+
78
+ Don't output this analysis. Use it to guide fixes.
79
+
80
+ ### Step 4: Fix Everything
81
+
82
+ Apply fixes directly. For each file:
83
+
84
+ **Typography:**
85
+ - Replace generic fonts (Inter, Arial, system-ui as primary) with distinctive choices
86
+ - Ensure proper type scale (not everything the same size)
87
+ - Set comfortable line-height (1.5-1.7 for body, 1.1-1.3 for headings)
88
+ - Limit line length for readability (max-width: 65ch on prose)
89
+
90
+ **Color & Contrast:**
91
+ - Apply cohesive palette from DESIGN.md or create one
92
+ - Add sharp accent color for CTAs and interactive elements
93
+ - Ensure WCAG AA contrast on all text
94
+ - Add subtle gradients or layered backgrounds where flat
95
+
96
+ **Layout:**
97
+ - Full-width containers with fluid padding: `padding-inline: clamp(1rem, 5vw, 4rem)`
98
+ - NO hardcoded max-width caps (no 1200px, no 1280px on main containers)
99
+ - Prose content gets `max-width: 65ch` (readable line length)
100
+ - Break out of card grids — use varied layouts, asymmetry, visual rhythm
101
+
102
+ **Spacing:**
103
+ - Consistent spacing scale (use Tailwind's scale or 8px grid)
104
+ - Generous whitespace between sections
105
+ - Tight grouping within related elements
106
+ - Varied rhythm — not everything equidistant
107
+
108
+ **Motion & Interaction:**
109
+ - Add CSS transitions on hover/focus states (200-300ms ease)
110
+ - Stagger entrance animations on lists/grids
111
+ - Smooth page transitions where applicable
112
+ - `prefers-reduced-motion` respected
113
+
114
+ **States:**
115
+ - Every async operation → loading state (skeleton or spinner)
116
+ - Every data fetch → error state (not just blank)
117
+ - Every list/table → empty state (helpful message, not just "No data")
118
+ - Every interactive element → hover, focus, active, disabled states
119
+
120
+ **Responsive:**
121
+ - Mobile-first breakpoints
122
+ - Touch targets minimum 44x44px
123
+ - Stack layouts on mobile, expand on desktop
124
+ - Test mental model at: 375px, 768px, 1024px, 1440px, 1920px+
125
+ - No horizontal scroll at any breakpoint
126
+
127
+ **Anti-patterns to eliminate:**
128
+ - Card grids with identical cards → use varied layouts
129
+ - Generic hero sections → make distinctive
130
+ - Blue-purple gradients → use brand colors
131
+ - Walls of text → break up with visual elements
132
+ - Static pages → add purposeful motion
133
+ - Fixed pixel widths → fluid/responsive
134
+ - Missing focus indicators → add them
135
+ - Placeholder content → write real copy or flag for user
136
+
137
+ ### Step 5: Polish Pass
138
+
139
+ After all fixes applied, do a final pass on each file:
140
+
141
+ - Pixel-perfect alignment (are things actually aligned?)
142
+ - Consistent border-radius across components
143
+ - Consistent shadow/elevation system
144
+ - Icon sizing consistent
145
+ - Button hierarchy clear (primary > secondary > ghost)
146
+ - Spacing between siblings consistent
147
+ - No orphaned headings (heading without following content)
148
+
149
+ ### Step 6: Verify
150
+
151
+ After all changes:
152
+
153
+ ```bash
154
+ npx tsc --noEmit 2>&1 | head -20
155
+ ```
156
+
157
+ If TypeScript errors → fix them before proceeding.
158
+
159
+ Check that no files were accidentally broken:
160
+ ```bash
161
+ npm run build 2>&1 | tail -10
162
+ ```
163
+
164
+ ### Step 7: Commit and Report
165
+
166
+ Commit all design changes:
167
+ ```bash
168
+ git add -A
169
+ git commit -m "style: design transformation — typography, color, spacing, states, responsive"
170
+ ```
171
+
172
+ Then present a brief summary (NOT a full report — just what changed):
173
+
174
+ ```
175
+ ◆ Design Transformation Complete
176
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
177
+
178
+ Files transformed: {N}
179
+
180
+ What changed:
181
+ - {key change 1, e.g. "Replaced Inter with Space Grotesk"}
182
+ - {key change 2, e.g. "Added loading/error/empty states to 4 components"}
183
+ - {key change 3, e.g. "Full-width layout, removed 1200px cap"}
184
+ - {key change 4, e.g. "Added hover transitions and entrance animations"}
185
+
186
+ Run the dev server to see the changes.
187
+
188
+ Want to fine-tune? Use individual commands:
189
+ - /bolder — make it more striking
190
+ - /design-quieter — tone it down
191
+ - /colorize — adjust colors
192
+ - /animate — add more motion
193
+ ```
194
+
195
+ ## Rules
196
+
197
+ - **Read before write** — understand every file before changing it
198
+ - **Don't ask** — just fix. This is not a review command, it's a fix command.
199
+ - **Respect DESIGN.md** — if brand decisions exist, follow them
200
+ - **Don't break functionality** — only change styling/presentation, never logic
201
+ - **TypeScript must pass** — run tsc after changes
202
+ - **Commit atomically** — one commit for the whole transformation
203
+ - **No partial work** — transform ALL target files, not just the first one
@@ -0,0 +1,72 @@
1
+ ---
2
+ name: qualia-discuss-phase
3
+ description: "Adaptive questioning to clarify phase scope and decisions before planning begins. Use this skill whenever the user says 'discuss phase', 'let's talk about phase', 'clarify phase', 'phase discussion', or wants to think through a phase's gray areas before creating a plan. Also trigger when user mentions 'what should we decide', 'before we plan', or needs to make design decisions for an upcoming phase."
4
+ ---
5
+
6
+ # Qualia Discuss Phase — Pre-Planning Discussion
7
+
8
+ Adaptive questioning to surface decisions and clarify gray areas before phase planning begins.
9
+
10
+ ## Usage
11
+
12
+ `/qualia-discuss-phase 3` — Discuss phase 3 before planning
13
+ `/qualia-discuss-phase` — Auto-detect next phase needing discussion
14
+
15
+ ## Key Principle
16
+
17
+ The phase boundary is FIXED — discussion clarifies HOW to implement, not WHETHER to implement. The scope comes from the roadmap; this skill fills in the design decisions.
18
+
19
+ ## Process
20
+
21
+ ### 1. Load Phase Context
22
+
23
+ Read the phase description from ROADMAP.md and any existing research.
24
+
25
+ Reference: `~/.claude/qualia-engine/workflows/discuss-phase.md`
26
+
27
+ ### 2. Identify Domain Gray Areas
28
+
29
+ Based on the phase's domain, identify the key decision areas:
30
+
31
+ **SEE (UI/Visual phases)** — Layout, component hierarchy, responsive behavior, animation
32
+ **CALL (API/Integration phases)** — Response formats, error handling, retry logic, auth flow
33
+ **RUN (Processing/Logic phases)** — Output format, edge cases, performance constraints
34
+ **READ (Data/Content phases)** — Data structure, relationships, validation rules
35
+ **ORGANIZE (Architecture phases)** — Organization criteria, naming conventions, migration paths
36
+
37
+ ### 3. Adaptive Questioning
38
+
39
+ Ask 4 targeted questions per area. Questions should surface:
40
+ - Ambiguities in the requirements
41
+ - Design choices that could go multiple ways
42
+ - User preferences and priorities
43
+ - Constraints not captured in the roadmap
44
+
45
+ After each set of 4, offer: "Want to go deeper on this area, or move to the next?"
46
+
47
+ ### 4. Create Context Document
48
+
49
+ Write decisions to `.planning/phases/{phase}-{slug}/{phase}-CONTEXT.md`:
50
+
51
+ ```markdown
52
+ # Phase {N}: {Name} — Context & Decisions
53
+
54
+ ## Decisions Made
55
+ - Decision 1: [choice] — Rationale: [why]
56
+ - Decision 2: [choice] — Rationale: [why]
57
+
58
+ ## Open Questions
59
+ - Questions deferred to implementation
60
+
61
+ ## Constraints Identified
62
+ - Constraints that affect planning
63
+
64
+ ## User Preferences
65
+ - Specific preferences expressed
66
+ ```
67
+
68
+ Template: `~/.claude/qualia-engine/templates/context.md`
69
+
70
+ ### 5. Handoff
71
+
72
+ > "Context captured. These decisions will feed into `/qualia-plan-phase {N}`."
@@ -0,0 +1,86 @@
1
+ ---
2
+ name: qualia-execute-phase
3
+ description: "Wave-based parallel execution of phase plans with subagent orchestration. Use this skill whenever the user says 'execute phase', 'run phase', 'build phase', 'start building', 'execute', or wants to implement a planned phase. Also trigger when user mentions 'start implementation', 'begin coding', or has a planned phase ready to execute. Supports gap-closure mode for fixing issues found during verification."
4
+ ---
5
+
6
+ # Qualia Execute Phase — Phase Execution
7
+
8
+ Execute all plans in a phase using wave-based parallel subagent orchestration.
9
+
10
+ ## Usage
11
+
12
+ `/qualia-execute-phase 3` — Execute phase 3
13
+ `/qualia-execute-phase` — Auto-detect next phase ready for execution
14
+ `/qualia-execute-phase 3 --gaps-only` — Execute only gap closure plans (after verify-work found issues)
15
+
16
+ ## Process
17
+
18
+ ### 1. Load Plans
19
+
20
+ Read all PLAN.md files for the target phase from `.planning/phases/{phase}-{slug}/`.
21
+
22
+ For `--gaps-only`, read only the gap-closure plans created by `plan-phase --gaps`.
23
+
24
+ Reference: `~/.claude/qualia-engine/workflows/execute-phase.md`
25
+ UI/brand reference: `~/.claude/qualia-engine/references/ui-brand.md`
26
+
27
+ ### 2. Organize into Waves
28
+
29
+ Group plan steps into execution waves based on dependencies:
30
+ - **Wave 1**: Steps with no dependencies (can run in parallel)
31
+ - **Wave 2**: Steps that depend on Wave 1 outputs
32
+ - **Wave 3**: Steps that depend on Wave 2 outputs
33
+ - etc.
34
+
35
+ ### 3. Execute Waves
36
+
37
+ For each wave, spawn subagents in parallel. The orchestrator uses ~15% of context for coordination; each subagent gets 100% fresh context with:
38
+ - The specific plan step(s) to execute
39
+ - Project context (PROJECT.md, relevant files)
40
+ - UI/brand guidelines
41
+ - Clear acceptance criteria
42
+
43
+ ### 4. Collect Results
44
+
45
+ As subagents complete:
46
+ - Verify each step's acceptance criteria are met
47
+ - Resolve any conflicts between parallel changes
48
+ - Handle failures (retry or escalate to user)
49
+
50
+ ### 5. Create Phase Summary
51
+
52
+ Write `{phase}-SUMMARY.md`:
53
+ ```markdown
54
+ # Phase {N}: {Name} — Execution Summary
55
+
56
+ ## Completed Steps
57
+ - Step 1: [what was done]
58
+ - Step 2: [what was done]
59
+
60
+ ## Files Created/Modified
61
+ - file1.tsx — [description]
62
+ - file2.ts — [description]
63
+
64
+ ## Notes
65
+ - Any deviations from plan
66
+ - Tech debt incurred
67
+ - Things to watch for in verification
68
+ ```
69
+
70
+ ### 6. Update State
71
+
72
+ Update `.planning/STATE.md` phase status to `executed`.
73
+
74
+ ### 7. Next Step
75
+
76
+ > "Phase {N} executed. Run `/qualia-verify-work {N}` to test the results."
77
+
78
+ ### Agents Used
79
+ | Agent | File | Role |
80
+ |-------|------|------|
81
+ | `qualia-executor` | `~/.claude/agents/qualia-executor.md` | Executes each plan's tasks atomically |
82
+ | `qualia-verifier` | `~/.claude/agents/qualia-verifier.md` | Verifies phase goal achievement |
83
+ | `qualia-planner` | `~/.claude/agents/qualia-planner.md` | Creates gap closure plans (if verify fails) |
84
+ | `qualia-plan-checker` | `~/.claude/agents/qualia-plan-checker.md` | Validates gap closure plans |
85
+
86
+ Domain skill context from PLAN.md `@skill` references is automatically resolved and inlined into each executor subagent prompt. Plans referencing skills like `frontend-design`, `supabase`, `financial-ledger`, etc. will have those patterns available to executors.
@@ -0,0 +1,67 @@
1
+ ---
2
+ name: qualia-help
3
+ description: "Display the complete Qualia command reference — all available skills and their usage. Use this skill whenever the user says 'help', 'qualia help', 'what commands', 'what can you do', 'show commands', or wants to see all available Qualia workflow commands. Also trigger when user seems lost or unsure which command to use next."
4
+ ---
5
+
6
+ # Qualia Help — Command Reference
7
+
8
+ Display the complete reference of all available Qualia workflow skills.
9
+
10
+ ## Usage
11
+
12
+ `/qualia-help` — Show all commands
13
+
14
+ ## Output
15
+
16
+ Reference: `~/.claude/qualia-engine/workflows/help.md`
17
+
18
+ Display the command reference. Output only — no analysis, no suggestions, just the reference.
19
+
20
+ ### Project Lifecycle
21
+ | Skill | Description |
22
+ |-------|-------------|
23
+ | `qualia-new-project` | Initialize a new project (questioning → research → requirements → roadmap) |
24
+ | `qualia-new-milestone` | Start a new milestone on existing project |
25
+ | `qualia-complete-milestone` | Archive milestone, tag release, prepare for next |
26
+
27
+ ### Phase Workflow
28
+ | Skill | Description |
29
+ |-------|-------------|
30
+ | `qualia-discuss-phase` | Clarify phase decisions before planning |
31
+ | `qualia-list-phase-assumptions` | Surface assumptions before planning |
32
+ | `qualia-research-phase` | Conduct technical research for a phase |
33
+ | `qualia-plan-phase` | Create detailed execution plans |
34
+ | `qualia-execute-phase` | Wave-based parallel execution of plans |
35
+ | `qualia-verify-work` | Conversational UAT testing |
36
+
37
+ ### Navigation & Status
38
+ | Skill | Description |
39
+ |-------|-------------|
40
+ | `qualia-progress | Quick project status + routing |
41
+ | `qualia-progress` | Progress summary with routing |
42
+ | `qualia-resume-work` | Restore context from previous session |
43
+ | `qualia-pause-work` | Save session context for handoff |
44
+
45
+ ### Quick Actions
46
+ | Skill | Description |
47
+ |-------|-------------|
48
+ | `qualia-quick` | Quick tasks with quality guarantees |
49
+ | `qualia-debug` | Structured debugging |
50
+ | `qualia-add-todo` | Capture ideas and tasks |
51
+ | `qualia-check-todos` | Review and act on todos |
52
+
53
+ ### Intelligence
54
+ | Skill | Description |
55
+ |-------|-------------|
56
+ | `qualia-idk` | "What should I do next?" — smart advisor, reads planning + codebase |
57
+ | `qualia-optimize` | Deep optimization pass — perf, design, UI, backend, alignment |
58
+ | `qualia-design` | One-shot design transformation — critique + fix + responsive + polish + harden |
59
+
60
+ ### Quality & Deployment
61
+ | Skill | Description |
62
+ |-------|-------------|
63
+ | `qualia-audit-milestone` | Verify milestone definition of done |
64
+ | `qualia-plan-milestone-gaps` | Create fix phases from audit gaps |
65
+ | `qualia-review` | Production audit and code review |
66
+ | `ship` | Full production deployment pipeline |
67
+ | `team` | Agent team orchestration |