jumpstart-mode 1.1.11 → 1.1.13

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 (188) hide show
  1. package/.github/agents/jumpstart-adversary.agent.md +2 -1
  2. package/.github/agents/jumpstart-architect.agent.md +6 -7
  3. package/.github/agents/jumpstart-challenger.agent.md +2 -1
  4. package/.github/agents/jumpstart-developer.agent.md +1 -1
  5. package/.github/agents/jumpstart-devops.agent.md +2 -2
  6. package/.github/agents/jumpstart-diagram-verifier.agent.md +2 -1
  7. package/.github/agents/jumpstart-maintenance.agent.md +1 -0
  8. package/.github/agents/jumpstart-performance.agent.md +1 -0
  9. package/.github/agents/jumpstart-pm.agent.md +1 -1
  10. package/.github/agents/jumpstart-refactor.agent.md +1 -0
  11. package/.github/agents/jumpstart-requirements-extractor.agent.md +1 -0
  12. package/.github/agents/jumpstart-researcher.agent.md +1 -0
  13. package/.github/agents/jumpstart-retrospective.agent.md +1 -0
  14. package/.github/agents/jumpstart-reviewer.agent.md +2 -0
  15. package/.github/agents/jumpstart-scout.agent.md +1 -1
  16. package/.github/agents/jumpstart-scrum-master.agent.md +1 -0
  17. package/.github/agents/jumpstart-security.agent.md +2 -1
  18. package/.github/agents/jumpstart-tech-writer.agent.md +1 -0
  19. package/.github/agents/jumpstart-uiux-designer.agent.md +66 -0
  20. package/.github/workflows/quality.yml +19 -2
  21. package/.jumpstart/agents/analyst.md +38 -0
  22. package/.jumpstart/agents/architect.md +39 -1
  23. package/.jumpstart/agents/challenger.md +38 -0
  24. package/.jumpstart/agents/developer.md +41 -0
  25. package/.jumpstart/agents/pm.md +38 -0
  26. package/.jumpstart/agents/scout.md +33 -0
  27. package/.jumpstart/agents/ux-designer.md +29 -9
  28. package/.jumpstart/commands/commands.md +6 -5
  29. package/.jumpstart/config.yaml +25 -1
  30. package/.jumpstart/roadmap.md +1 -1
  31. package/.jumpstart/schemas/timeline.schema.json +1 -0
  32. package/.jumpstart/skills/README.md +1 -0
  33. package/.jumpstart/skills/quality-gates/SKILL.md +126 -0
  34. package/.jumpstart/skills/skill-creator/SKILL.md +485 -357
  35. package/.jumpstart/skills/skill-creator/agents/analyzer.md +274 -0
  36. package/.jumpstart/skills/skill-creator/agents/comparator.md +202 -0
  37. package/.jumpstart/skills/skill-creator/agents/grader.md +223 -0
  38. package/.jumpstart/skills/skill-creator/assets/eval_review.html +146 -0
  39. package/.jumpstart/skills/skill-creator/eval-viewer/generate_review.py +471 -0
  40. package/.jumpstart/skills/skill-creator/eval-viewer/viewer.html +1325 -0
  41. package/.jumpstart/skills/skill-creator/references/schemas.md +430 -0
  42. package/.jumpstart/skills/skill-creator/scripts/__init__.py +0 -0
  43. package/.jumpstart/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
  44. package/.jumpstart/skills/skill-creator/scripts/generate_report.py +326 -0
  45. package/.jumpstart/skills/skill-creator/scripts/improve_description.py +247 -0
  46. package/.jumpstart/skills/skill-creator/scripts/package_skill.py +136 -110
  47. package/.jumpstart/skills/skill-creator/scripts/run_eval.py +310 -0
  48. package/.jumpstart/skills/skill-creator/scripts/run_loop.py +328 -0
  49. package/.jumpstart/skills/skill-creator/scripts/utils.py +47 -0
  50. package/.jumpstart/skills/ui-ux-pro-max/SKILL.md +266 -0
  51. package/.jumpstart/skills/ui-ux-pro-max/data/charts.csv +26 -0
  52. package/.jumpstart/skills/ui-ux-pro-max/data/colors.csv +97 -0
  53. package/.jumpstart/skills/ui-ux-pro-max/data/icons.csv +101 -0
  54. package/.jumpstart/skills/ui-ux-pro-max/data/landing.csv +31 -0
  55. package/.jumpstart/skills/ui-ux-pro-max/data/products.csv +97 -0
  56. package/.jumpstart/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
  57. package/.jumpstart/skills/ui-ux-pro-max/data/stacks/astro.csv +54 -0
  58. package/.jumpstart/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  59. package/.jumpstart/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  60. package/.jumpstart/skills/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
  61. package/.jumpstart/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  62. package/.jumpstart/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  63. package/.jumpstart/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  64. package/.jumpstart/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  65. package/.jumpstart/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
  66. package/.jumpstart/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  67. package/.jumpstart/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  68. package/.jumpstart/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  69. package/.jumpstart/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  70. package/.jumpstart/skills/ui-ux-pro-max/data/styles.csv +68 -0
  71. package/.jumpstart/skills/ui-ux-pro-max/data/typography.csv +58 -0
  72. package/.jumpstart/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  73. package/.jumpstart/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  74. package/.jumpstart/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
  75. package/.jumpstart/skills/ui-ux-pro-max/scripts/core.py +253 -0
  76. package/.jumpstart/skills/ui-ux-pro-max/scripts/design_system.py +1067 -0
  77. package/.jumpstart/skills/ui-ux-pro-max/scripts/search.py +114 -0
  78. package/.jumpstart/state/timeline.json +659 -0
  79. package/.jumpstart/templates/model-map.md +1 -1
  80. package/.jumpstart/templates/ux-design.md +3 -3
  81. package/.jumpstart/usage-log.json +74 -3
  82. package/AGENTS.md +1 -1
  83. package/README.md +64 -3
  84. package/bin/cli.js +3217 -1
  85. package/bin/headless-runner.js +62 -2
  86. package/bin/lib/agent-checkpoint.js +168 -0
  87. package/bin/lib/ai-evaluation.js +104 -0
  88. package/bin/lib/ai-intake.js +152 -0
  89. package/bin/lib/ambiguity-heatmap.js +152 -0
  90. package/bin/lib/artifact-comparison.js +104 -0
  91. package/bin/lib/ast-edit-engine.js +157 -0
  92. package/bin/lib/backlog-sync.js +338 -0
  93. package/bin/lib/bcdr-planning.js +158 -0
  94. package/bin/lib/bidirectional-trace.js +199 -0
  95. package/bin/lib/branch-workflow.js +266 -0
  96. package/bin/lib/cab-output.js +119 -0
  97. package/bin/lib/chat-integration.js +122 -0
  98. package/bin/lib/ci-cd-integration.js +208 -0
  99. package/bin/lib/codebase-retrieval.js +125 -0
  100. package/bin/lib/collaboration.js +168 -0
  101. package/bin/lib/compliance-packs.js +213 -0
  102. package/bin/lib/context-chunker.js +128 -0
  103. package/bin/lib/context-onboarding.js +122 -0
  104. package/bin/lib/contract-first.js +124 -0
  105. package/bin/lib/cost-router.js +148 -0
  106. package/bin/lib/credential-boundary.js +155 -0
  107. package/bin/lib/data-classification.js +180 -0
  108. package/bin/lib/data-contracts.js +129 -0
  109. package/bin/lib/db-evolution.js +158 -0
  110. package/bin/lib/decision-conflicts.js +299 -0
  111. package/bin/lib/delivery-confidence.js +361 -0
  112. package/bin/lib/dependency-upgrade.js +153 -0
  113. package/bin/lib/design-system.js +133 -0
  114. package/bin/lib/deterministic-artifacts.js +151 -0
  115. package/bin/lib/diagram-studio.js +115 -0
  116. package/bin/lib/domain-ontology.js +140 -0
  117. package/bin/lib/ea-review-packet.js +151 -0
  118. package/bin/lib/enterprise-search.js +123 -0
  119. package/bin/lib/enterprise-templates.js +140 -0
  120. package/bin/lib/environment-promotion.js +220 -0
  121. package/bin/lib/estimation-studio.js +130 -0
  122. package/bin/lib/event-modeling.js +133 -0
  123. package/bin/lib/evidence-collector.js +179 -0
  124. package/bin/lib/finops-planner.js +182 -0
  125. package/bin/lib/fitness-functions.js +279 -0
  126. package/bin/lib/focus.js +448 -0
  127. package/bin/lib/governance-dashboard.js +165 -0
  128. package/bin/lib/guided-handoff.js +120 -0
  129. package/bin/lib/impact-analysis.js +190 -0
  130. package/bin/lib/incident-feedback.js +157 -0
  131. package/bin/lib/integrate.js +1 -1
  132. package/bin/lib/knowledge-graph.js +122 -0
  133. package/bin/lib/legacy-modernizer.js +160 -0
  134. package/bin/lib/migration-planner.js +144 -0
  135. package/bin/lib/model-governance.js +185 -0
  136. package/bin/lib/model-router.js +144 -0
  137. package/bin/lib/multi-repo.js +272 -0
  138. package/bin/lib/next-phase.js +53 -8
  139. package/bin/lib/ops-ownership.js +152 -0
  140. package/bin/lib/parallel-agents.js +257 -0
  141. package/bin/lib/pattern-library.js +115 -0
  142. package/bin/lib/persona-packs.js +99 -0
  143. package/bin/lib/plan-executor.js +366 -0
  144. package/bin/lib/platform-engineering.js +119 -0
  145. package/bin/lib/playback-summaries.js +126 -0
  146. package/bin/lib/policy-engine.js +240 -0
  147. package/bin/lib/portfolio-reporting.js +357 -0
  148. package/bin/lib/pr-package.js +197 -0
  149. package/bin/lib/project-memory.js +235 -0
  150. package/bin/lib/prompt-governance.js +130 -0
  151. package/bin/lib/promptless-mode.js +128 -0
  152. package/bin/lib/quality-graph.js +193 -0
  153. package/bin/lib/raci-matrix.js +188 -0
  154. package/bin/lib/refactor-planner.js +167 -0
  155. package/bin/lib/reference-architectures.js +304 -0
  156. package/bin/lib/release-readiness.js +171 -0
  157. package/bin/lib/repo-graph.js +262 -0
  158. package/bin/lib/requirements-baseline.js +358 -0
  159. package/bin/lib/risk-register.js +211 -0
  160. package/bin/lib/role-approval.js +249 -0
  161. package/bin/lib/role-views.js +142 -0
  162. package/bin/lib/root-cause-analysis.js +132 -0
  163. package/bin/lib/runtime-debugger.js +154 -0
  164. package/bin/lib/safe-rename.js +135 -0
  165. package/bin/lib/secret-scanner.js +313 -0
  166. package/bin/lib/semantic-diff.js +335 -0
  167. package/bin/lib/sla-slo.js +210 -0
  168. package/bin/lib/smoke-tester.js +344 -0
  169. package/bin/lib/spec-comments.js +147 -0
  170. package/bin/lib/spec-maturity.js +287 -0
  171. package/bin/lib/sre-integration.js +154 -0
  172. package/bin/lib/structured-elicitation.js +174 -0
  173. package/bin/lib/telemetry-feedback.js +118 -0
  174. package/bin/lib/test-generator.js +146 -0
  175. package/bin/lib/timeline.js +2 -1
  176. package/bin/lib/tool-bridge.js +159 -0
  177. package/bin/lib/tool-guardrails.js +139 -0
  178. package/bin/lib/tool-schemas.js +281 -3
  179. package/bin/lib/transcript-ingestion.js +150 -0
  180. package/bin/lib/type-checker.js +261 -0
  181. package/bin/lib/uat-coverage.js +411 -0
  182. package/bin/lib/vendor-risk.js +173 -0
  183. package/bin/lib/waiver-workflow.js +174 -0
  184. package/bin/lib/web-dashboard.js +126 -0
  185. package/bin/lib/workshop-mode.js +165 -0
  186. package/bin/lib/workstream-ownership.js +104 -0
  187. package/package.json +1 -1
  188. package/.github/agents/jumpstart-ux-designer.agent.md +0 -45
@@ -1,23 +1,31 @@
1
- # Agent: The UX Designer
1
+ # Agent: The UI/UX Designer
2
2
 
3
3
  ## Identity
4
4
 
5
- You are **The UX Designer**, an advisory agent in the Jump Start framework. Your role is to ensure user experience quality by providing emotional response mapping, user journey refinement, information architecture, and design consistency guidance. You work alongside the Analyst (Phase 1) and PM (Phase 2) to elevate human-centred thinking.
5
+ You are **The UI/UX Designer**, an advisory agent in the Jump Start framework. Your role is to ensure user interface and user experience quality by providing visual design direction, emotional response mapping, user journey refinement, information architecture, and design consistency guidance. You work alongside the Analyst (Phase 1) and PM (Phase 2) to elevate human-centred thinking and deliver polished, professional interfaces.
6
6
 
7
- You are empathetic, visually minded, and deeply attuned to user psychology. You think in terms of flows, friction, delight, and cognitive load. You advocate for the user even when technical or business constraints push back.
7
+ You are empathetic, visually minded, and deeply attuned to both user psychology and visual design craft. You think in terms of flows, friction, delight, cognitive load, visual hierarchy, and design systems. You advocate for the user even when technical or business constraints push back, and you champion pixel-perfect, accessible UI that matches the quality of the underlying experience.
8
+
9
+ You operate with explicit dual capability coverage:
10
+
11
+ - **UI scope:** typography systems, colour systems, spacing scales, design tokens, component consistency, responsive composition, and visual hierarchy.
12
+ - **UX scope:** persona emotion curves, journey friction reduction, information architecture, interaction flow quality, error recovery trust, cognitive load management, and accessibility.
8
13
 
9
14
  ---
10
15
 
11
16
  ## Your Mandate
12
17
 
13
- **Ensure the product concept delivers a coherent, accessible, and emotionally resonant user experience by providing structured UX analysis and design direction.**
18
+ **Ensure the product concept delivers a coherent, visually polished, accessible, and emotionally resonant user interface and experience by providing structured UI/UX analysis and design direction.**
14
19
 
15
20
  You accomplish this by:
21
+
16
22
  1. Mapping emotional response curves across user journeys
17
23
  2. Defining information architecture and navigation models
18
24
  3. Establishing interaction patterns and component guidelines
19
25
  4. Identifying accessibility requirements and inclusive design considerations
20
26
  5. Surfacing cognitive load risks and recommending simplification
27
+ 6. Providing visual design direction including typography, colour palettes, spacing systems, and design tokens
28
+ 7. Recommending UI styles and patterns appropriate to the product type and industry
21
29
 
22
30
  ---
23
31
 
@@ -25,7 +33,10 @@ You accomplish this by:
25
33
 
26
34
  You are activated when the human runs `/jumpstart.ux-design`. You can be invoked at any point after Phase 1 (Product Brief) is approved. You operate as an advisory agent — your outputs inform but do not gate subsequent phases.
27
35
 
36
+ You must check for and leverage the **ui-ux-pro-max** skill when installed, which provides an extensive searchable database of UI styles, colour palettes, typography pairings, UX guidelines, and stack-specific best practices.
37
+
28
38
  Before starting, verify:
39
+
29
40
  - `specs/product-brief.md` exists and has been approved
30
41
  - If missing, inform the human: "Phase 1 (Analysis) must be completed and approved before UX design can begin."
31
42
 
@@ -34,6 +45,7 @@ Before starting, verify:
34
45
  ## Input Context
35
46
 
36
47
  You must read:
48
+
37
49
  - `specs/product-brief.md` (required — personas, journeys, scope)
38
50
  - `specs/challenger-brief.md` (for problem context and validation criteria)
39
51
  - `.jumpstart/config.yaml` (for project settings)
@@ -43,7 +55,14 @@ You must read:
43
55
 
44
56
  ### Skill Discovery
45
57
 
46
- If `skills.enabled` is `true` in `.jumpstart/config.yaml`, check `.jumpstart/skills/skill-index.md` for installed skills. For each skill whose triggers or discovery keywords match the current task, read its `SKILL.md` entry file and follow its domain-specific workflow. If the skill includes bundled agents, invoke them as appropriate. Skip this step if the skill index does not exist or no skills match.
58
+ If `skills.enabled` is `true` in `.jumpstart/config.yaml`, do the following in order:
59
+
60
+ 1. Prioritize `ui-ux-pro-max` by checking `.jumpstart/skills/ui-ux-pro-max/SKILL.md`.
61
+ 2. If present, read it and follow its design-system-first workflow before applying generic guidance.
62
+ 3. Then check `.jumpstart/skills/skill-index.md` for other installed skills that match the task.
63
+ 4. For each additional matching skill, read its `SKILL.md` and apply relevant workflow steps.
64
+
65
+ If `ui-ux-pro-max` is not present, proceed with the protocol and note the missing skill as an improvement opportunity.
47
66
 
48
67
  ---
49
68
 
@@ -117,18 +136,19 @@ Assemble all findings into `.jumpstart/templates/ux-design.md` and save to `spec
117
136
 
118
137
  ## Behavioral Guidelines
119
138
 
120
- - **Advocate for users, not aesthetics.** Good UX is not about making things pretty — it is about making things usable, accessible, and emotionally appropriate.
121
- - **Be specific.** "Make it intuitive" is not a recommendation. "Replace the 12-field form with a 3-step wizard that validates inline" is a recommendation.
139
+ - **Advocate for users, not aesthetics alone.** Good UI/UX is about making things usable, accessible, visually coherent, and emotionally appropriate.
140
+ - **Be specific.** "Make it intuitive" is not a recommendation. "Replace the 12-field form with a 3-step wizard that validates inline" is a recommendation. "Use a Soft UI style with Inter/DM Sans pairing" is a recommendation.
122
141
  - **Respect constraints.** You are advisory. If the team has no designer, recommend patterns from established design systems rather than custom solutions.
123
142
  - **Prioritise by impact.** Focus on the emotional valleys and highest-traffic flows first.
124
143
  - **Stay out of implementation.** You recommend patterns, not code. You suggest components, not CSS selectors.
144
+ - **Bridge UI and UX.** Ensure visual design decisions support usability goals and vice versa.
125
145
 
126
146
  ---
127
147
 
128
148
  ## Output
129
149
 
130
150
  - `specs/ux-design.md` (primary artifact, using `.jumpstart/templates/ux-design.md`)
131
- - `specs/insights/ux-design-insights.md` (reasoning, trade-offs, accessibility gaps)
151
+ - `specs/insights/ux-design-insights.md` (reasoning, trade-offs, accessibility gaps, visual design rationale)
132
152
 
133
153
  ---
134
154
 
@@ -137,6 +157,6 @@ Assemble all findings into `.jumpstart/templates/ux-design.md` and save to `spec
137
157
  - You do not write code or CSS
138
158
  - You do not define API contracts or data models
139
159
  - You do not override the PM's scope decisions
140
- - You do not create pixel-perfect mockups (you recommend patterns and flows)
160
+ - You do not create pixel-perfect mockups (you recommend patterns, flows, and visual direction)
141
161
  - You do not gate phases — you are advisory
142
162
 
@@ -761,12 +761,12 @@ jumpstart coverage <prd-path> <plan-path>
761
761
  ## /jumpstart.ux-design
762
762
 
763
763
  **Phase:** Advisory (after Phase 1)
764
- **Agent:** The UX Designer
764
+ **Agent:** The UI/UX Designer
765
765
  **Agent File:** `.jumpstart/agents/ux-designer.md`
766
766
  **Template:** `.jumpstart/templates/ux-design.md`
767
767
  **Output:** `specs/ux-design.md`, `specs/insights/ux-design-insights.md`
768
768
 
769
- **Description:** Activate the UX Designer agent for emotional response mapping, information architecture, interaction pattern guidelines, and accessibility review.
769
+ **Description:** Activate the UI/UX Designer agent for visual design direction, emotional response mapping, information architecture, interaction pattern guidelines, and accessibility review.
770
770
 
771
771
  **Usage:**
772
772
  ```
@@ -777,12 +777,13 @@ jumpstart coverage <prd-path> <plan-path>
777
777
  - `specs/product-brief.md` must exist and be approved.
778
778
 
779
779
  **Behavior:**
780
- 1. Load the UX Designer persona from `.jumpstart/agents/ux-designer.md`.
780
+ 1. Load the UI/UX Designer persona from `.jumpstart/agents/ux-designer.md`.
781
781
  2. Map emotional response curves for each persona.
782
782
  3. Define information architecture and navigation.
783
783
  4. Specify interaction patterns and component guidelines.
784
- 5. Conduct accessibility review (WCAG 2.1 AA).
785
- 6. Compile UX Design document for human review.
784
+ 5. Provide visual design direction (typography, colour, spacing, design tokens).
785
+ 6. Conduct accessibility review (WCAG 2.1 AA).
786
+ 7. Compile UI/UX Design document for human review.
786
787
 
787
788
  ---
788
789
 
@@ -110,6 +110,30 @@ spec_authoring:
110
110
  max_spec_lines: 800 # Advisory threshold — suggest decomposition above this limit
111
111
  context_scoping: true # Agents should scope context to relevant sections per task
112
112
 
113
+ # ---------------------------------------------------------------------------
114
+ # Focus Mode — Restrict workflow to specific phases
115
+ # ---------------------------------------------------------------------------
116
+ # Allows role-based workflows by limiting which phases are active.
117
+ # Use presets for common roles or set custom start/end phases.
118
+ #
119
+ # Presets:
120
+ # full: All phases (default — Challenger through Developer)
121
+ # business-analyst: Challenger → Analyst → PM (phases 0-2)
122
+ # prd-ready: PM only (phase 2) — convert existing PRD to JumpStart format
123
+ # discovery: Challenger → Analyst (phases 0-1)
124
+ # technical-lead: Architect only (phase 3)
125
+ # developer-only: Developer only (phase 4)
126
+ #
127
+ # Examples:
128
+ # npx jumpstart-mode focus set business-analyst
129
+ # npx jumpstart-mode focus set --start 1 --end 2
130
+ # npx jumpstart-mode focus clear
131
+ focus:
132
+ enabled: false
133
+ preset: full
134
+ start_phase: 0
135
+ end_phase: 4
136
+
113
137
  # ---------------------------------------------------------------------------
114
138
  # Workflow Settings
115
139
  # ---------------------------------------------------------------------------
@@ -228,7 +252,7 @@ agents:
228
252
  ux-designer:
229
253
  persona_file: "agents/ux-designer.md"
230
254
  capture_insights: true
231
- # Emotional response mapping for each persona across key journey steps
255
+ # UI/UX design direction, emotional response mapping for each persona across key journey steps
232
256
  # Outputs: specs/ux-design.md
233
257
 
234
258
  qa:
@@ -194,7 +194,7 @@ The framework provides **specialized advisory agents** that extend the core phas
194
194
  5. **Evidence over opinion.** Specialized agents must ground their findings in verifiable evidence — OWASP standards, measured complexity metrics, verified documentation, test results — not subjective assessments.
195
195
 
196
196
  **Available Specialized Agents:**
197
- - **UX Designer** (`/jumpstart.ux-design`): Emotional response mapping, information architecture, accessibility review
197
+ - **UI/UX Designer** (`/jumpstart.ux-design`): Emotional response mapping, information architecture, accessibility review
198
198
  - **QA Agent** (`/jumpstart.qa`): Test strategy, requirement traceability, release readiness assessment
199
199
  - **Scrum Master** (`/jumpstart.sprint`): Sprint planning, dependency mapping, blocker detection
200
200
  - **Security Architect** (`/jumpstart.security`): STRIDE threat modelling, OWASP Top 10 audit, invariant compliance
@@ -86,6 +86,7 @@
86
86
  "subagent_completed",
87
87
  "llm_turn_start",
88
88
  "llm_turn_end",
89
+ "prompt_logged",
89
90
  "research_query",
90
91
  "checkpoint_created",
91
92
  "rewind",
@@ -11,6 +11,7 @@
11
11
  | `skill-creator` | Guide for creating effective skills | Built-in |
12
12
  | `linkedin` | LinkedIn profile optimization and professional networking | Example |
13
13
  | `requirements` | Requirements elicitation and analysis techniques | Example |
14
+ | `ui-ux-pro-max` | AI-powered design intelligence for professional UI/UX across multiple platforms and frameworks | Installed |
14
15
 
15
16
  ---
16
17
 
@@ -0,0 +1,126 @@
1
+ ---
2
+ name: quality-gates
3
+ description: Automated testing strategies for the Jump Start framework — secret scanning, type checking, smoke testing, and UAT coverage alignment. Use this skill when the Developer agent needs to validate code quality beyond unit tests, when security scanning is needed before commit, when type safety must be enforced, or when acceptance criteria coverage needs verification.
4
+ license: MIT
5
+ ---
6
+
7
+ # Quality Gates Skill
8
+
9
+ This skill provides four automated testing strategies that extend the Jump Start framework's quality assurance capabilities. Each strategy addresses a specific gap in the framework's current testing layers.
10
+
11
+ ## Tools
12
+
13
+ ### 1. Secret Scanner (`bin/lib/secret-scanner.js`)
14
+
15
+ **Layer:** Pre-commit / Layer 1 (Schema & Formatting)
16
+ **Trigger:** After agent writes any file to `src/`, config files, or `.env` files
17
+ **Purpose:** Prevents accidental commitment of API keys, tokens, passwords, and private keys
18
+
19
+ ```bash
20
+ echo '{"files":["src/config.js"],"root":"."}' | node bin/lib/secret-scanner.js
21
+ ```
22
+
23
+ **When to use:**
24
+ - Before every commit during Phase 4 implementation
25
+ - After generating configuration files
26
+ - When processing user-provided credentials or API keys
27
+ - As part of CI pipeline quality gates
28
+
29
+ **Input:** JSON with `files` (array of paths), `root` (project root), `config` (optional: `custom_patterns`, `allowlist`)
30
+
31
+ **Output:** JSON with `pass` (boolean), `findings` (array of detected secrets with redacted values), `critical`/`high` counts
32
+
33
+ **Built-in detection patterns:** AWS keys, GitHub tokens, private key headers, API key assignments, password assignments, database connection strings, Slack tokens, Bearer tokens
34
+
35
+ ### 2. Type Checker (`bin/lib/type-checker.js`)
36
+
37
+ **Layer:** Layer 1 extension (Schema & Formatting)
38
+ **Trigger:** After agent writes TypeScript or Python files to `src/`
39
+ **Purpose:** Catches interface mismatches and type errors before runtime
40
+
41
+ ```bash
42
+ echo '{"files":["src/index.ts"],"root":"."}' | node bin/lib/type-checker.js
43
+ ```
44
+
45
+ **When to use:**
46
+ - After writing or modifying TypeScript files
47
+ - After writing or modifying typed Python files (mypy/pyright)
48
+ - Before marking a task as complete in TODO.md
49
+ - As part of milestone verification
50
+
51
+ **Auto-detection:** Finds `tsconfig.json`, `jsconfig.json`, `pyrightconfig.json`, `mypy.ini`, or `[tool.mypy]`/`[tool.pyright]` in `pyproject.toml`
52
+
53
+ **Output:** JSON with `pass` (boolean), `findings` (array of type errors with file, line, code, severity), `checker` name
54
+
55
+ ### 3. Smoke Tester (`bin/lib/smoke-tester.js`)
56
+
57
+ **Layer:** Integration / Vitality check
58
+ **Trigger:** After project scaffolding, after milestone completion
59
+ **Purpose:** Verifies the application builds and starts successfully
60
+
61
+ ```bash
62
+ echo '{"root":".","config":{"skip_health_check":true}}' | node bin/lib/smoke-tester.js
63
+ ```
64
+
65
+ **When to use:**
66
+ - After initial project scaffolding (Milestone 1)
67
+ - After each milestone completion
68
+ - Before final documentation (last milestone)
69
+ - When debugging "it builds but doesn't run" issues
70
+
71
+ **Capabilities:**
72
+ 1. **Build verification** — Detects and runs the project's build command
73
+ 2. **Health check** — Starts the application and verifies it responds (HTTP 200)
74
+ 3. **Project detection** — Auto-detects Node.js, Python, Go, and Makefile projects
75
+
76
+ **Output:** JSON with `pass` (boolean), `build` (command, duration, exit code), `health` (url, status, error), `project_type`
77
+
78
+ ### 4. UAT Coverage (`bin/lib/uat-coverage.js`)
79
+
80
+ **Layer:** Layer 5 extension (Acceptance criteria alignment)
81
+ **Trigger:** After test suite is written, at milestone boundaries
82
+ **Purpose:** Validates that PRD acceptance criteria are covered by actual tests
83
+
84
+ ```bash
85
+ node bin/lib/uat-coverage.js specs/prd.md tests/
86
+ ```
87
+
88
+ **When to use:**
89
+ - After completing test files for a milestone
90
+ - During milestone verification
91
+ - Before marking Phase 4 as complete
92
+ - When QA subagent reviews test coverage
93
+
94
+ **Capabilities:**
95
+ 1. **Story coverage** — Maps `E##-S##` story IDs to test files that reference them
96
+ 2. **Criteria coverage** — Matches individual acceptance criteria (Gherkin or bullet) to test content
97
+ 3. **Keyword matching** — Semantic coverage detection via keyword overlap (50% threshold)
98
+
99
+ **Output:**
100
+ - **CLI (human-facing):** Markdown coverage report printed to stdout when invoked as shown above.
101
+ - **Programmatic / tool-bridge (agent-facing):** JSON object with `pass` (boolean, 80% threshold), story/criteria coverage percentages, and detailed mapping of each criterion to test files, returned by the internal `computeUATCoverage` API / tool-bridge interface.
102
+
103
+ Agents and automation should consume the structured JSON via the tool-bridge interface rather than scraping the CLI markdown output.
104
+
105
+ ## Workflow Integration
106
+
107
+ ### During Phase 4 Task Execution
108
+
109
+ After each task in TODO.md:
110
+
111
+ 1. **Secret scan** — Run on all modified files
112
+ 2. **Type check** — Run if TypeScript or typed Python files were modified
113
+ 3. **Build verify** — Run smoke tester with `skip_health_check: true` at milestone boundaries
114
+
115
+ ### At Milestone Boundaries
116
+
117
+ 1. Run full smoke test (build + health check if applicable)
118
+ 2. Run UAT coverage check against PRD
119
+ 3. Log results in `specs/insights/implementation-plan-insights.md`
120
+
121
+ ### Before Phase 4 Completion
122
+
123
+ 1. Final secret scan on all `src/` files
124
+ 2. Full type check
125
+ 3. Full smoke test
126
+ 4. UAT coverage report ≥ 80%