@mmerterden/multi-agent-pipeline 12.6.0 → 12.7.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 (271) hide show
  1. package/CHANGELOG.md +83 -0
  2. package/README.md +18 -18
  3. package/docs/FIGMA_PIPELINE.md +34 -34
  4. package/docs/adr/0001-three-model-triage.md +12 -12
  5. package/docs/adr/0002-instruction-driven-flag.md +5 -5
  6. package/docs/adr/0003-unified-shared-skills.md +5 -5
  7. package/docs/adr/0004-zero-dependency-philosophy.md +5 -5
  8. package/docs/adr/0005-lazy-phase-docs.md +2 -2
  9. package/docs/adr/0006-skills-core-external-split.md +6 -6
  10. package/docs/adr/0007-multi-tool-adapter-framework.md +19 -19
  11. package/docs/adr/0008-installer-modularization-and-secret-leak-defense.md +19 -19
  12. package/docs/adr/README.md +1 -1
  13. package/docs/best-practices.md +3 -3
  14. package/docs/features.md +28 -28
  15. package/docs/performance.md +16 -16
  16. package/docs/recovery-guide.md +39 -39
  17. package/index.js +4 -4
  18. package/install/_common.mjs +5 -11
  19. package/install/_copilot-instructions.mjs +2 -2
  20. package/install/_dev-only-files.mjs +1 -1
  21. package/install/_platform-filter.mjs +1 -1
  22. package/install/_telemetry.mjs +1 -1
  23. package/install/claude.mjs +10 -9
  24. package/install/copilot.mjs +10 -19
  25. package/install/index.mjs +7 -15
  26. package/install/templates/copilot-instructions.md +54 -54
  27. package/install.js +1 -1
  28. package/package.json +13 -10
  29. package/pipeline/commands/multi-agent/SKILL.md +1 -1
  30. package/pipeline/commands/multi-agent/analysis/SKILL.md +1 -1
  31. package/pipeline/commands/multi-agent/analysis-resolve/SKILL.md +1 -1
  32. package/pipeline/commands/multi-agent/autopilot/SKILL.md +1 -1
  33. package/pipeline/commands/multi-agent/build-optimize/SKILL.md +1 -1
  34. package/pipeline/commands/multi-agent/create-jira/SKILL.md +1 -1
  35. package/pipeline/commands/multi-agent/design-check/SKILL.md +1 -1
  36. package/pipeline/commands/multi-agent/dev/SKILL.md +1 -1
  37. package/pipeline/commands/multi-agent/dev-autopilot/SKILL.md +1 -1
  38. package/pipeline/commands/multi-agent/dev-local/SKILL.md +1 -1
  39. package/pipeline/commands/multi-agent/dev-local-autopilot/SKILL.md +1 -1
  40. package/pipeline/commands/multi-agent/diff-explain/SKILL.md +1 -1
  41. package/pipeline/commands/multi-agent/finish/SKILL.md +6 -6
  42. package/pipeline/commands/multi-agent/forget/SKILL.md +1 -1
  43. package/pipeline/commands/multi-agent/garbage-collect/SKILL.md +1 -1
  44. package/pipeline/commands/multi-agent/help/SKILL.md +3 -3
  45. package/pipeline/commands/multi-agent/issue/SKILL.md +1 -1
  46. package/pipeline/commands/multi-agent/jira/SKILL.md +1 -1
  47. package/pipeline/commands/multi-agent/kill/SKILL.md +1 -1
  48. package/pipeline/commands/multi-agent/language/SKILL.md +1 -1
  49. package/pipeline/commands/multi-agent/local/SKILL.md +1 -1
  50. package/pipeline/commands/multi-agent/local-autopilot/SKILL.md +1 -1
  51. package/pipeline/commands/multi-agent/log/SKILL.md +1 -1
  52. package/pipeline/commands/multi-agent/manual-test/SKILL.md +1 -1
  53. package/pipeline/commands/multi-agent/prune-logs/SKILL.md +1 -1
  54. package/pipeline/commands/multi-agent/purge/SKILL.md +1 -1
  55. package/pipeline/commands/multi-agent/refactor/SKILL.md +16 -8
  56. package/pipeline/commands/multi-agent/resume/SKILL.md +2 -2
  57. package/pipeline/commands/multi-agent/review/SKILL.md +1 -1
  58. package/pipeline/commands/multi-agent/review-issue/SKILL.md +1 -1
  59. package/pipeline/commands/multi-agent/review-jira/SKILL.md +1 -1
  60. package/pipeline/commands/multi-agent/routines/SKILL.md +1 -1
  61. package/pipeline/commands/multi-agent/save/SKILL.md +1 -1
  62. package/pipeline/commands/multi-agent/scan/SKILL.md +1 -1
  63. package/pipeline/commands/multi-agent/search/SKILL.md +1 -1
  64. package/pipeline/commands/multi-agent/setup/SKILL.md +2 -2
  65. package/pipeline/commands/multi-agent/stack/SKILL.md +3 -3
  66. package/pipeline/commands/multi-agent/status/SKILL.md +1 -1
  67. package/pipeline/commands/multi-agent/sync/SKILL.md +5 -5
  68. package/pipeline/commands/multi-agent/test/SKILL.md +1 -1
  69. package/pipeline/commands/multi-agent/uninstall/SKILL.md +1 -1
  70. package/pipeline/commands/multi-agent/update/SKILL.md +3 -3
  71. package/pipeline/eval/run-metrics-fixture.json +60 -13
  72. package/pipeline/lib/account-resolver.sh +1 -1
  73. package/pipeline/lib/channels-multi-repo.sh +1 -1
  74. package/pipeline/lib/context-link-extractor.sh +1 -1
  75. package/pipeline/lib/credential-store.sh +1 -1
  76. package/pipeline/lib/fetch-confluence.sh +1 -1
  77. package/pipeline/lib/fetch-crashlytics.sh +1 -1
  78. package/pipeline/lib/fetch-fortify.sh +1 -1
  79. package/pipeline/lib/fetch-graylog.sh +1 -1
  80. package/pipeline/lib/fetch-swagger.sh +1 -1
  81. package/pipeline/lib/issue-fetcher.sh +1 -1
  82. package/pipeline/lib/multi-repo-pipeline.sh +1 -1
  83. package/pipeline/lib/repo-cache.sh +1 -1
  84. package/pipeline/lib/submodule-detector.sh +1 -1
  85. package/pipeline/multi-agent-refs/component-dispatch.md +1 -1
  86. package/pipeline/multi-agent-refs/component-generation.md +121 -0
  87. package/pipeline/multi-agent-refs/cross-cli-contract.md +1 -1
  88. package/pipeline/multi-agent-refs/features/model-fallback.md +2 -2
  89. package/pipeline/multi-agent-refs/phases/phase-4-review.md +1 -1
  90. package/pipeline/preferences-template.json +5 -11
  91. package/pipeline/schemas/agent-state.schema.json +39 -9
  92. package/pipeline/schemas/analysis-output.schema.json +18 -4
  93. package/pipeline/schemas/analysis-spec.schema.json +120 -32
  94. package/pipeline/schemas/clarify-output.schema.json +15 -5
  95. package/pipeline/schemas/design-check-config.schema.json +32 -11
  96. package/pipeline/schemas/dev-critic-output.schema.json +20 -5
  97. package/pipeline/schemas/figma-project-config.schema.json +42 -10
  98. package/pipeline/schemas/learnings-ledger.schema.json +10 -2
  99. package/pipeline/schemas/migrations/figma-config-1.0.0-to-2.0.0.mjs +1 -4
  100. package/pipeline/schemas/migrations/prefs-2.0.0-to-2.1.0.mjs +24 -7
  101. package/pipeline/schemas/plan-todos.schema.json +6 -3
  102. package/pipeline/schemas/planning-output.schema.json +5 -1
  103. package/pipeline/schemas/prefs.schema.json +91 -229
  104. package/pipeline/schemas/test-gap.schema.json +5 -5
  105. package/pipeline/schemas/token-budget.json +8 -8
  106. package/pipeline/schemas/triage-corpus.schema.json +1 -1
  107. package/pipeline/scripts/aggregate-metrics.mjs +18 -6
  108. package/pipeline/scripts/build-skills-index.mjs +6 -2
  109. package/pipeline/scripts/build-stack-plugins.mjs +142 -39
  110. package/pipeline/scripts/check-derived-drift.mjs +196 -0
  111. package/pipeline/scripts/check-md-links.mjs +6 -2
  112. package/pipeline/scripts/classify-plan-safety.mjs +20 -7
  113. package/pipeline/scripts/cost-budget-check.mjs +2 -1
  114. package/pipeline/scripts/cost-table.json +1 -1
  115. package/pipeline/scripts/diff-explain.mjs +7 -3
  116. package/pipeline/scripts/diff-risk-score.mjs +13 -3
  117. package/pipeline/scripts/eval-golden-tasks-live.mjs +8 -3
  118. package/pipeline/scripts/eval-golden-tasks.mjs +21 -9
  119. package/pipeline/scripts/eval-intent.mjs +8 -4
  120. package/pipeline/scripts/eval-mine-corpus.mjs +14 -4
  121. package/pipeline/scripts/evidence-gate.mjs +7 -2
  122. package/pipeline/scripts/fixtures/install-layout.tsv +3 -3
  123. package/pipeline/scripts/gen-mode-dispatch.mjs +38 -21
  124. package/pipeline/scripts/gen-skills-index.mjs +18 -3
  125. package/pipeline/scripts/learning-curve.mjs +13 -3
  126. package/pipeline/scripts/learnings-ledger.mjs +103 -36
  127. package/pipeline/scripts/lint-mcp-refs.mjs +13 -2
  128. package/pipeline/scripts/lint-skills.mjs +20 -9
  129. package/pipeline/scripts/localize-commands.mjs +6 -1
  130. package/pipeline/scripts/match-skills.mjs +15 -4
  131. package/pipeline/scripts/migrate-prefs.mjs +33 -16
  132. package/pipeline/scripts/phase-tracker.sh +3 -1
  133. package/pipeline/scripts/repo-map.mjs +110 -64
  134. package/pipeline/scripts/review-scope.mjs +7 -1
  135. package/pipeline/scripts/routine-registry.mjs +4 -9
  136. package/pipeline/scripts/run-aggregator.mjs +11 -5
  137. package/pipeline/scripts/run-metrics.mjs +13 -8
  138. package/pipeline/scripts/run-smokes.mjs +57 -3
  139. package/pipeline/scripts/scorecard.mjs +258 -0
  140. package/pipeline/scripts/smoke-context-budget.sh +72 -0
  141. package/pipeline/scripts/smoke-model-fallback.sh +1 -1
  142. package/pipeline/scripts/smoke-no-mcp-in-dev-phases.sh +86 -7
  143. package/pipeline/scripts/smoke-own-punctuation.sh +103 -0
  144. package/pipeline/scripts/smoke-workflow-audit.sh +43 -11
  145. package/pipeline/scripts/smoke-write-state.sh +49 -5
  146. package/pipeline/scripts/test-gap-rules/android.json +11 -11
  147. package/pipeline/scripts/test-gap-rules/ios.json +16 -11
  148. package/pipeline/scripts/test-gap-rules/node.json +19 -7
  149. package/pipeline/scripts/test-gap-rules/python.json +10 -4
  150. package/pipeline/scripts/test-gap-scan.mjs +44 -12
  151. package/pipeline/scripts/test-integrity-gate.mjs +5 -1
  152. package/pipeline/scripts/token-budget-report.mjs +44 -21
  153. package/pipeline/scripts/triage-memory.mjs +126 -34
  154. package/pipeline/scripts/uninstall.mjs +74 -30
  155. package/pipeline/scripts/validate-analysis-doc.mjs +15 -5
  156. package/pipeline/scripts/validate-diff-risk.mjs +32 -18
  157. package/pipeline/scripts/validate-test-gap.mjs +17 -7
  158. package/pipeline/scripts/validate-triage.mjs +17 -5
  159. package/pipeline/scripts/write-state.mjs +32 -9
  160. package/pipeline/skills/.skills-index.json +91 -91
  161. package/pipeline/skills/shared/README.md +57 -57
  162. package/pipeline/skills/shared/core/apple-archive-compliance/SKILL.md +1 -1
  163. package/pipeline/skills/shared/core/google-play-compliance/SKILL.md +1 -1
  164. package/pipeline/skills/shared/core/multi-agent/SKILL.md +26 -279
  165. package/pipeline/skills/shared/core/multi-agent-analysis/SKILL.md +1 -1
  166. package/pipeline/skills/shared/core/multi-agent-analysis-resolve/SKILL.md +1 -1
  167. package/pipeline/skills/shared/core/multi-agent-autopilot/SKILL.md +1 -1
  168. package/pipeline/skills/shared/core/multi-agent-build-optimize/SKILL.md +1 -1
  169. package/pipeline/skills/shared/core/multi-agent-create-jira/SKILL.md +1 -1
  170. package/pipeline/skills/shared/core/multi-agent-design-check/SKILL.md +1 -1
  171. package/pipeline/skills/shared/core/multi-agent-dev/SKILL.md +1 -1
  172. package/pipeline/skills/shared/core/multi-agent-dev-autopilot/SKILL.md +1 -1
  173. package/pipeline/skills/shared/core/multi-agent-dev-local/SKILL.md +1 -1
  174. package/pipeline/skills/shared/core/multi-agent-dev-local-autopilot/SKILL.md +1 -1
  175. package/pipeline/skills/shared/core/multi-agent-diff-explain/SKILL.md +1 -1
  176. package/pipeline/skills/shared/core/multi-agent-finish/SKILL.md +1 -1
  177. package/pipeline/skills/shared/core/multi-agent-forget/SKILL.md +1 -1
  178. package/pipeline/skills/shared/core/multi-agent-garbage-collect/SKILL.md +1 -1
  179. package/pipeline/skills/shared/core/multi-agent-help/SKILL.md +1 -1
  180. package/pipeline/skills/shared/core/multi-agent-issue/SKILL.md +1 -1
  181. package/pipeline/skills/shared/core/multi-agent-jira/SKILL.md +1 -1
  182. package/pipeline/skills/shared/core/multi-agent-kill/SKILL.md +1 -1
  183. package/pipeline/skills/shared/core/multi-agent-language/SKILL.md +1 -1
  184. package/pipeline/skills/shared/core/multi-agent-local/SKILL.md +1 -1
  185. package/pipeline/skills/shared/core/multi-agent-local-autopilot/SKILL.md +1 -1
  186. package/pipeline/skills/shared/core/multi-agent-log/SKILL.md +1 -1
  187. package/pipeline/skills/shared/core/multi-agent-manual-test/SKILL.md +1 -1
  188. package/pipeline/skills/shared/core/multi-agent-prune-logs/SKILL.md +1 -1
  189. package/pipeline/skills/shared/core/multi-agent-purge/SKILL.md +1 -1
  190. package/pipeline/skills/shared/core/multi-agent-refactor/SKILL.md +16 -8
  191. package/pipeline/skills/shared/core/multi-agent-resume/SKILL.md +1 -1
  192. package/pipeline/skills/shared/core/multi-agent-review/SKILL.md +1 -1
  193. package/pipeline/skills/shared/core/multi-agent-review-issue/SKILL.md +1 -1
  194. package/pipeline/skills/shared/core/multi-agent-review-jira/SKILL.md +1 -1
  195. package/pipeline/skills/shared/core/multi-agent-routines/SKILL.md +1 -1
  196. package/pipeline/skills/shared/core/multi-agent-save/SKILL.md +1 -1
  197. package/pipeline/skills/shared/core/multi-agent-scan/SKILL.md +1 -1
  198. package/pipeline/skills/shared/core/multi-agent-search/SKILL.md +1 -1
  199. package/pipeline/skills/shared/core/multi-agent-setup/SKILL.md +1 -1
  200. package/pipeline/skills/shared/core/multi-agent-stack/SKILL.md +3 -3
  201. package/pipeline/skills/shared/core/multi-agent-status/SKILL.md +1 -1
  202. package/pipeline/skills/shared/core/multi-agent-sync/SKILL.md +1 -1
  203. package/pipeline/skills/shared/core/multi-agent-test/SKILL.md +1 -1
  204. package/pipeline/skills/shared/core/multi-agent-uninstall/SKILL.md +1 -1
  205. package/pipeline/skills/shared/core/multi-agent-update/SKILL.md +1 -1
  206. package/pipeline/skills/shared/external/accessibility-compliance-accessibility-audit/SKILL.md +1 -1
  207. package/pipeline/skills/shared/external/agent-introspection-debugging/SKILL.md +4 -4
  208. package/pipeline/skills/shared/external/agentflow/SKILL.md +1 -1
  209. package/pipeline/skills/shared/external/android-jetpack-compose-expert/SKILL.md +1 -1
  210. package/pipeline/skills/shared/external/android_ui_verification/SKILL.md +1 -1
  211. package/pipeline/skills/shared/external/api-patterns/SKILL.md +1 -1
  212. package/pipeline/skills/shared/external/api-security-best-practices/SKILL.md +1 -1
  213. package/pipeline/skills/shared/external/app-store-changelog/SKILL.md +1 -1
  214. package/pipeline/skills/shared/external/backlog/BACKLOG.md +1 -1
  215. package/pipeline/skills/shared/external/backlog/SKILL.md +12 -12
  216. package/pipeline/skills/shared/external/ci-cd-pipelines/SKILL.md +1 -1
  217. package/pipeline/skills/shared/external/context-compression/SKILL.md +1 -1
  218. package/pipeline/skills/shared/external/council/SKILL.md +3 -3
  219. package/pipeline/skills/shared/external/css-modern/SKILL.md +1 -1
  220. package/pipeline/skills/shared/external/database-patterns/SKILL.md +1 -1
  221. package/pipeline/skills/shared/external/debugging-strategies/SKILL.md +1 -1
  222. package/pipeline/skills/shared/external/docker-expert/SKILL.md +1 -1
  223. package/pipeline/skills/shared/external/fastapi-pro/SKILL.md +1 -1
  224. package/pipeline/skills/shared/external/firebase/SKILL.md +1 -1
  225. package/pipeline/skills/shared/external/github-actions-templates/SKILL.md +1 -1
  226. package/pipeline/skills/shared/external/help-skills/SKILL.md +1 -1
  227. package/pipeline/skills/shared/external/hig-components-content/SKILL.md +1 -1
  228. package/pipeline/skills/shared/external/hig-components-layout/SKILL.md +1 -1
  229. package/pipeline/skills/shared/external/hig-components-status/SKILL.md +1 -1
  230. package/pipeline/skills/shared/external/hig-components-system/SKILL.md +1 -1
  231. package/pipeline/skills/shared/external/hig-foundations/SKILL.md +1 -1
  232. package/pipeline/skills/shared/external/hig-inputs/SKILL.md +1 -1
  233. package/pipeline/skills/shared/external/hig-patterns/SKILL.md +1 -1
  234. package/pipeline/skills/shared/external/hig-platforms/SKILL.md +1 -1
  235. package/pipeline/skills/shared/external/hig-technologies/SKILL.md +1 -1
  236. package/pipeline/skills/shared/external/html-semantic/SKILL.md +1 -1
  237. package/pipeline/skills/shared/external/humanizer/SKILL.md +1 -1
  238. package/pipeline/skills/shared/external/ios-debugger-agent/SKILL.md +1 -1
  239. package/pipeline/skills/shared/external/ios-developer/SKILL.md +1 -1
  240. package/pipeline/skills/shared/external/kotlin-coroutines-expert/SKILL.md +1 -1
  241. package/pipeline/skills/shared/external/macos-menubar-tuist-app/SKILL.md +1 -1
  242. package/pipeline/skills/shared/external/macos-spm-app-packaging/SKILL.md +1 -1
  243. package/pipeline/skills/shared/external/monorepo-architect/SKILL.md +1 -1
  244. package/pipeline/skills/shared/external/nextjs-app-router/SKILL.md +1 -1
  245. package/pipeline/skills/shared/external/nodejs-backend-patterns/SKILL.md +1 -1
  246. package/pipeline/skills/shared/external/observability-engineer/SKILL.md +1 -1
  247. package/pipeline/skills/shared/external/python-patterns/SKILL.md +1 -1
  248. package/pipeline/skills/shared/external/react-best-practices/SKILL.md +1 -1
  249. package/pipeline/skills/shared/external/rest-api-design/SKILL.md +1 -1
  250. package/pipeline/skills/shared/external/search-first/SKILL.md +2 -2
  251. package/pipeline/skills/shared/external/skill-creator/SKILL.md +12 -12
  252. package/pipeline/skills/shared/external/skill-creator/audit.md +21 -21
  253. package/pipeline/skills/shared/external/skill-creator/checklist.md +3 -3
  254. package/pipeline/skills/shared/external/skill-creator/examples.md +10 -10
  255. package/pipeline/skills/shared/external/skill-creator/label-check.md +17 -17
  256. package/pipeline/skills/shared/external/skill-creator/scripts/audit-panel.js +86 -50
  257. package/pipeline/skills/shared/external/skill-creator/template.md +9 -9
  258. package/pipeline/skills/shared/external/swift-concurrency-expert/SKILL.md +1 -1
  259. package/pipeline/skills/shared/external/swiftui-performance-audit/SKILL.md +1 -1
  260. package/pipeline/skills/shared/external/swiftui-ui-patterns/SKILL.md +1 -1
  261. package/pipeline/skills/shared/external/swiftui-view-refactor/SKILL.md +1 -1
  262. package/pipeline/skills/shared/external/tailwind-css/SKILL.md +1 -1
  263. package/pipeline/skills/shared/external/testing-backend/SKILL.md +1 -1
  264. package/pipeline/skills/shared/external/typescript-patterns/SKILL.md +1 -1
  265. package/pipeline/skills/shared/external/vue-composition/SKILL.md +1 -1
  266. package/pipeline/skills/shared/external/web-accessibility/SKILL.md +1 -1
  267. package/pipeline/skills/shared/external/web-performance/SKILL.md +1 -1
  268. package/pipeline/skills/shared/external/web-testing/SKILL.md +1 -1
  269. package/pipeline/skills/shared/external/xcode-build-benchmark/schemas/build-benchmark.schema.json +9 -49
  270. package/pipeline/skills/skills-index.md +57 -57
  271. package/pipeline/scripts/smoke-plugin-validate.sh +0 -64
@@ -4,7 +4,7 @@
4
4
  "entries": [
5
5
  {
6
6
  "name": "accessibility-compliance-accessibility-audit",
7
- "description": "You are an accessibility expert specializing in WCAG compliance, inclusive design, and assistive technology compatibility. Conduct audits, identify barriers, and provide remediation guidance.",
7
+ "description": "You are an accessibility expert specializing in WCAG compliance, inclusive design, and assistive technology compatibility. Conduct audits, identify barriers, and provide remediation guidance. Use when auditing a product against WCAG, or when a barrier needs diagnosing and remediating.",
8
8
  "platform": null,
9
9
  "group": "external",
10
10
  "triggerKeywords": [],
@@ -22,7 +22,7 @@
22
22
  },
23
23
  {
24
24
  "name": "agentflow",
25
- "description": "Orchestrate autonomous AI development pipelines through your Kanban board (Asana, GitHub Projects, Linear). Manages multi-worker Claude Code dispatch, deterministic quality gates, adversarial review, per-task cost tracking, and crash-proof pipeline execution.",
25
+ "description": "Orchestrate autonomous AI development pipelines through your Kanban board (Asana, GitHub Projects, Linear). Manages multi-worker Claude Code dispatch, deterministic quality gates, adversarial review, per-task cost tracking, and crash-proof pipeline execution. Use when development should be driven fr",
26
26
  "platform": null,
27
27
  "group": "external",
28
28
  "triggerKeywords": [],
@@ -40,7 +40,7 @@
40
40
  },
41
41
  {
42
42
  "name": "android_ui_verification",
43
- "description": "Automated end-to-end UI testing and verification on an Android Emulator using ADB.",
43
+ "description": "Automated end-to-end UI testing and verification on an Android Emulator using ADB. Use when an Android build needs driving on an emulator to verify its UI end to end.",
44
44
  "platform": null,
45
45
  "group": "external",
46
46
  "triggerKeywords": [],
@@ -58,7 +58,7 @@
58
58
  },
59
59
  {
60
60
  "name": "android-jetpack-compose-expert",
61
- "description": "Expert guidance for building modern Android UIs with Jetpack Compose, covering state management, navigation, performance, and Material Design 3.",
61
+ "description": "Expert guidance for building modern Android UIs with Jetpack Compose, covering state management, navigation, performance, and Material Design 3. Use when building or reviewing Compose UI, state handling or navigation.",
62
62
  "platform": null,
63
63
  "group": "external",
64
64
  "triggerKeywords": [],
@@ -85,7 +85,7 @@
85
85
  },
86
86
  {
87
87
  "name": "api-patterns",
88
- "description": "API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination.",
88
+ "description": "API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination. Use when choosing between REST, GraphQL and tRPC, or shaping response formats, versioning and pagination.",
89
89
  "platform": null,
90
90
  "group": "external",
91
91
  "triggerKeywords": [],
@@ -94,7 +94,7 @@
94
94
  },
95
95
  {
96
96
  "name": "api-security-best-practices",
97
- "description": "Implement secure API design patterns including authentication, authorization, input validation, rate limiting, and protection against common API vulnerabilities",
97
+ "description": "Implement secure API design patterns including authentication, authorization, input validation, rate limiting, and protection against common API vulnerabilities. Use when designing or reviewing an API's authentication, authorization, input validation or rate limiting.",
98
98
  "platform": null,
99
99
  "group": "external",
100
100
  "triggerKeywords": [],
@@ -121,7 +121,7 @@
121
121
  },
122
122
  {
123
123
  "name": "app-store-changelog",
124
- "description": "Generate user-facing App Store release notes from git history since the last tag.",
124
+ "description": "Generate user-facing App Store release notes from git history since the last tag. Use when release notes have to be written from the commits since the last tag.",
125
125
  "platform": null,
126
126
  "group": "external",
127
127
  "triggerKeywords": [],
@@ -148,7 +148,7 @@
148
148
  },
149
149
  {
150
150
  "name": "apple-archive-compliance",
151
- "description": "Apple App Store Review compliance - wraps the dev-toolkit-mcp `ios_app_store_audit` tool (17-rule deep scan) with ITMS error code mapping + EN/TR humanizer templates. Consumed by: /multi-agent:test 'store-ready' (primary dispatch), Phase 4 Security Auditor (catalog cross-ref on Info.plist / Privac",
151
+ "description": "Apple App Store Review compliance - wraps the dev-toolkit-mcp `ios_app_store_audit` tool (18-rule deep scan) with ITMS error code mapping + EN/TR humanizer templates. Consumed by: /multi-agent:test 'store-ready' (primary dispatch), Phase 4 Security Auditor (catalog cross-ref on Info.plist / Privac",
152
152
  "platform": null,
153
153
  "group": "core",
154
154
  "triggerKeywords": [],
@@ -220,7 +220,7 @@
220
220
  },
221
221
  {
222
222
  "name": "ci-cd-pipelines",
223
- "description": "CI/CD pipelines: GitHub Actions workflows, Docker multi-stage builds, environment management, secret management, deployment strategies",
223
+ "description": "CI/CD pipelines: GitHub Actions workflows, Docker multi-stage builds, environment management, secret management, deployment strategies. Use when setting up or fixing a build, test or deploy pipeline.",
224
224
  "platform": null,
225
225
  "group": "external",
226
226
  "triggerKeywords": [],
@@ -292,7 +292,7 @@
292
292
  },
293
293
  {
294
294
  "name": "context-compression",
295
- "description": "When agent sessions generate millions of tokens of conversation history, compression becomes mandatory. The naive approach is aggressive compression to minimize tokens per request.",
295
+ "description": "When agent sessions generate millions of tokens of conversation history, compression becomes mandatory. The naive approach is aggressive compression to minimize tokens per request. Use when an agent session has grown too long to keep in full and history has to be compressed.",
296
296
  "platform": null,
297
297
  "group": "external",
298
298
  "triggerKeywords": [],
@@ -364,7 +364,7 @@
364
364
  },
365
365
  {
366
366
  "name": "css-modern",
367
- "description": "Modern CSS: container queries, nesting, @layer, Grid/Flexbox patterns, custom properties, animations, and transitions",
367
+ "description": "Modern CSS: container queries, nesting, @layer, Grid/Flexbox patterns, custom properties, animations, and transitions. Use when writing or reviewing modern CSS: layout, container queries, custom properties, animation.",
368
368
  "platform": null,
369
369
  "group": "external",
370
370
  "triggerKeywords": [],
@@ -373,7 +373,7 @@
373
373
  },
374
374
  {
375
375
  "name": "database-patterns",
376
- "description": "Database patterns: SQL best practices (PostgreSQL), indexing, query optimization, migrations, schema design, ORMs (SQLAlchemy, Prisma, Drizzle)",
376
+ "description": "Database patterns: SQL best practices (PostgreSQL), indexing, query optimization, migrations, schema design, ORMs (SQLAlchemy, Prisma, Drizzle). Use when designing a schema, writing migrations, or a query needs optimising.",
377
377
  "platform": null,
378
378
  "group": "external",
379
379
  "triggerKeywords": [],
@@ -391,7 +391,7 @@
391
391
  },
392
392
  {
393
393
  "name": "debugging-strategies",
394
- "description": "Transform debugging from frustrating guesswork into systematic problem-solving with proven strategies, powerful tools, and methodical approaches.",
394
+ "description": "Transform debugging from frustrating guesswork into systematic problem-solving with proven strategies, powerful tools, and methodical approaches. Use when a bug resists guesswork and needs a systematic approach.",
395
395
  "platform": null,
396
396
  "group": "external",
397
397
  "triggerKeywords": [],
@@ -409,7 +409,7 @@
409
409
  },
410
410
  {
411
411
  "name": "docker-expert",
412
- "description": "You are an advanced Docker containerization expert with comprehensive, practical knowledge of container optimization, security hardening, multi-stage builds, orchestration patterns, and production deployment strategies based on current industry best practices.",
412
+ "description": "You are an advanced Docker containerization expert with comprehensive, practical knowledge of container optimization, security hardening, multi-stage builds, orchestration patterns, and production deployment strategies based on current industry best practices. Use when writing or reviewing a Dockerf",
413
413
  "platform": null,
414
414
  "group": "external",
415
415
  "triggerKeywords": [],
@@ -436,7 +436,7 @@
436
436
  },
437
437
  {
438
438
  "name": "fastapi-pro",
439
- "description": "Build high-performance async APIs with FastAPI, SQLAlchemy 2.0, and Pydantic V2. Master microservices, WebSockets, and modern Python async patterns.",
439
+ "description": "Build high-performance async APIs with FastAPI, SQLAlchemy 2.0, and Pydantic V2. Master microservices, WebSockets, and modern Python async patterns. Use when building or reviewing an async Python API with FastAPI, SQLAlchemy or Pydantic.",
440
440
  "platform": null,
441
441
  "group": "external",
442
442
  "triggerKeywords": [],
@@ -445,7 +445,7 @@
445
445
  },
446
446
  {
447
447
  "name": "firebase",
448
- "description": "You're a developer who has shipped dozens of Firebase projects. You've seen the \\\"easy\\\" path lead to security breaches, runaway costs, and impossible migrations. You know Firebase is powerful, but you also know its sharp edges.",
448
+ "description": "You're a developer who has shipped dozens of Firebase projects. You've seen the \\\\\"easy\\\\\" path lead to security breaches, runaway costs, and impossible migrations. You know Firebase is powerful, but you also know its sharp edges. Use when integrating or reviewing Firebase: auth, Firestore, function",
449
449
  "platform": null,
450
450
  "group": "external",
451
451
  "triggerKeywords": [],
@@ -454,7 +454,7 @@
454
454
  },
455
455
  {
456
456
  "name": "github-actions-templates",
457
- "description": "Production-ready GitHub Actions workflow patterns for testing, building, and deploying applications.",
457
+ "description": "Production-ready GitHub Actions workflow patterns for testing, building, and deploying applications. Use when a GitHub Actions workflow has to be written or hardened.",
458
458
  "platform": null,
459
459
  "group": "external",
460
460
  "triggerKeywords": [],
@@ -490,7 +490,7 @@
490
490
  },
491
491
  {
492
492
  "name": "help-skills",
493
- "description": "Mevcut tum iOS/Swift skill'lerini listeler ve ne ise yaradiklarini aciklar.",
493
+ "description": "Mevcut tum iOS/Swift skill'lerini listeler ve ne ise yaradiklarini aciklar. Use when asked which iOS or Swift skills are available and what each one covers.",
494
494
  "platform": null,
495
495
  "group": "external",
496
496
  "triggerKeywords": [],
@@ -499,7 +499,7 @@
499
499
  },
500
500
  {
501
501
  "name": "hig-components-content",
502
- "description": "Apple Human Interface Guidelines for content display components.",
502
+ "description": "Apple Human Interface Guidelines for content display components. Use when designing or reviewing how content is displayed on an Apple platform.",
503
503
  "platform": null,
504
504
  "group": "external",
505
505
  "triggerKeywords": [],
@@ -508,7 +508,7 @@
508
508
  },
509
509
  {
510
510
  "name": "hig-components-layout",
511
- "description": "Apple Human Interface Guidelines for layout and navigation components.",
511
+ "description": "Apple Human Interface Guidelines for layout and navigation components. Use when designing or reviewing layout and navigation on an Apple platform.",
512
512
  "platform": null,
513
513
  "group": "external",
514
514
  "triggerKeywords": [],
@@ -517,7 +517,7 @@
517
517
  },
518
518
  {
519
519
  "name": "hig-components-status",
520
- "description": "Apple HIG guidance for status and progress UI components including progress indicators, status bars, and activity rings.",
520
+ "description": "Apple HIG guidance for status and progress UI components including progress indicators, status bars, and activity rings. Use when designing or reviewing progress, status or feedback UI on an Apple platform.",
521
521
  "platform": null,
522
522
  "group": "external",
523
523
  "triggerKeywords": [],
@@ -526,7 +526,7 @@
526
526
  },
527
527
  {
528
528
  "name": "hig-components-system",
529
- "description": "'Apple HIG guidance for system experience components: widgets, live activities, notifications, complications, home screen quick actions, top shelf, watch faces, app clips, and app shortcuts.'",
529
+ "description": "'Apple HIG guidance for system experience components: widgets, live activities, notifications, complications, home screen quick actions, top shelf, watch faces, app clips, and app shortcuts. Use when designing or reviewing widgets, Live Activities or notifications on an Apple platform.'",
530
530
  "platform": null,
531
531
  "group": "external",
532
532
  "triggerKeywords": [],
@@ -535,7 +535,7 @@
535
535
  },
536
536
  {
537
537
  "name": "hig-foundations",
538
- "description": "Apple Human Interface Guidelines design foundations.",
538
+ "description": "Apple Human Interface Guidelines design foundations. Use when a design decision turns on Apple's foundations: layout, typography, colour, motion, accessibility.",
539
539
  "platform": null,
540
540
  "group": "external",
541
541
  "triggerKeywords": [],
@@ -544,7 +544,7 @@
544
544
  },
545
545
  {
546
546
  "name": "hig-inputs",
547
- "description": "Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered.",
547
+ "description": "Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered. Use when designing or reviewing input controls, forms or text entry on an Apple platform.",
548
548
  "platform": null,
549
549
  "group": "external",
550
550
  "triggerKeywords": [],
@@ -553,7 +553,7 @@
553
553
  },
554
554
  {
555
555
  "name": "hig-patterns",
556
- "description": "Apple Human Interface Guidelines interaction and UX patterns.",
556
+ "description": "Apple Human Interface Guidelines interaction and UX patterns. Use when an interaction or UX pattern on an Apple platform needs designing or reviewing.",
557
557
  "platform": null,
558
558
  "group": "external",
559
559
  "triggerKeywords": [],
@@ -562,7 +562,7 @@
562
562
  },
563
563
  {
564
564
  "name": "hig-platforms",
565
- "description": "Apple Human Interface Guidelines for platform-specific design.",
565
+ "description": "Apple Human Interface Guidelines for platform-specific design. Use when a design has to fit a specific Apple platform's conventions.",
566
566
  "platform": null,
567
567
  "group": "external",
568
568
  "triggerKeywords": [],
@@ -571,7 +571,7 @@
571
571
  },
572
572
  {
573
573
  "name": "hig-technologies",
574
- "description": "Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered.",
574
+ "description": "Check for .claude/apple-design-context.md before asking questions. Use existing context and only ask for information not already covered. Use when designing or reviewing a feature built on an Apple technology such as Sign in with Apple, Wallet or Maps.",
575
575
  "platform": null,
576
576
  "group": "external",
577
577
  "triggerKeywords": [],
@@ -589,7 +589,7 @@
589
589
  },
590
590
  {
591
591
  "name": "html-semantic",
592
- "description": "Semantic HTML5: elements, forms with validation and accessibility, SEO best practices, structured data, Open Graph, Twitter Cards",
592
+ "description": "Semantic HTML5: elements, forms with validation and accessibility, SEO best practices, structured data, Open Graph, Twitter Cards. Use when writing or reviewing markup, forms or document structure for semantics, accessibility and SEO.",
593
593
  "platform": null,
594
594
  "group": "external",
595
595
  "triggerKeywords": [],
@@ -616,7 +616,7 @@
616
616
  },
617
617
  {
618
618
  "name": "ios-debugger-agent",
619
- "description": "Debug the current iOS project on a booted simulator with XcodeBuildMCP.",
619
+ "description": "Debug the current iOS project on a booted simulator with XcodeBuildMCP. Use when an iOS bug has to be reproduced and diagnosed on a booted simulator.",
620
620
  "platform": null,
621
621
  "group": "external",
622
622
  "triggerKeywords": [],
@@ -625,7 +625,7 @@
625
625
  },
626
626
  {
627
627
  "name": "ios-developer",
628
- "description": "Develop native iOS applications with Swift/SwiftUI. Masters iOS 18, SwiftUI, UIKit integration, Core Data, networking, and App Store optimization.",
628
+ "description": "Develop native iOS applications with Swift/SwiftUI. Masters iOS 18, SwiftUI, UIKit integration, Core Data, networking, and App Store optimization. Use when building or reviewing a native iOS feature in Swift or SwiftUI.",
629
629
  "platform": null,
630
630
  "group": "external",
631
631
  "triggerKeywords": [],
@@ -670,7 +670,7 @@
670
670
  },
671
671
  {
672
672
  "name": "kotlin-coroutines-expert",
673
- "description": "Expert patterns for Kotlin Coroutines and Flow, covering structured concurrency, error handling, and testing.",
673
+ "description": "Expert patterns for Kotlin Coroutines and Flow, covering structured concurrency, error handling, and testing. Use when writing or reviewing coroutines and Flow, or a concurrency bug needs diagnosing.",
674
674
  "platform": null,
675
675
  "group": "external",
676
676
  "triggerKeywords": [],
@@ -688,7 +688,7 @@
688
688
  },
689
689
  {
690
690
  "name": "macos-menubar-tuist-app",
691
- "description": "Build, refactor, or review SwiftUI macOS menubar apps that use Tuist.",
691
+ "description": "Build, refactor, or review SwiftUI macOS menubar apps that use Tuist. Use when building, refactoring or reviewing a SwiftUI macOS menubar app that uses Tuist.",
692
692
  "platform": null,
693
693
  "group": "external",
694
694
  "triggerKeywords": [],
@@ -697,7 +697,7 @@
697
697
  },
698
698
  {
699
699
  "name": "macos-spm-app-packaging",
700
- "description": "Scaffold, build, sign, and package SwiftPM macOS apps without Xcode projects.",
700
+ "description": "Scaffold, build, sign, and package SwiftPM macOS apps without Xcode projects. Use when a SwiftPM macOS app has to be built, signed or packaged without an Xcode project.",
701
701
  "platform": null,
702
702
  "group": "external",
703
703
  "triggerKeywords": [],
@@ -724,7 +724,7 @@
724
724
  },
725
725
  {
726
726
  "name": "monorepo-architect",
727
- "description": "Expert in monorepo architecture, build systems, and dependency management at scale. Masters Nx, Turborepo, Bazel, and Lerna for efficient multi-project development. Use PROACTIVELY for monorepo setup,",
727
+ "description": "Expert in monorepo architecture, build systems, and dependency management at scale. Masters Nx, Turborepo, Bazel, and Lerna for efficient multi-project development. Use PROACTIVELY for monorepo setup,. Use when a monorepo's build system, task graph or dependency layout needs designing or fixing.",
728
728
  "platform": null,
729
729
  "group": "external",
730
730
  "triggerKeywords": [],
@@ -733,7 +733,7 @@
733
733
  },
734
734
  {
735
735
  "name": "multi-agent",
736
- "description": "Task orchestrator: runs the full pipeline from a Jira ID or GitHub Issue URL - analysis → plan → TDD development → parallel review (Fable + Sonnet on Claude Code, GPT + Opus + Sonnet on Copilot CLI) → commit → log. Every step is written to agent-log.md.",
736
+ "description": "Task orchestrator: runs the full pipeline from a Jira ID or GitHub Issue URL - analysis → plan → TDD development → parallel review (Fable + Sonnet on Claude Code, GPT + Opus + Sonnet on Copilot CLI) → commit → log. Every step is written to agent-log.md. Use when given a Jira ID, a GitHub issue or ",
737
737
  "platform": null,
738
738
  "group": "core",
739
739
  "triggerKeywords": [],
@@ -760,7 +760,7 @@
760
760
  },
761
761
  {
762
762
  "name": "multi-agent-autopilot",
763
- "description": "Launch any task in autopilot mode: skips every confirmation, runs end-to-end autonomously.",
763
+ "description": "Launch any task in autopilot mode: skips every confirmation, runs end-to-end autonomously. Use when a task should run end to end with no confirmation prompts.",
764
764
  "platform": null,
765
765
  "group": "core",
766
766
  "triggerKeywords": [],
@@ -769,7 +769,7 @@
769
769
  },
770
770
  {
771
771
  "name": "multi-agent-build-optimize",
772
- "description": "Wrapper that dispatches to xcode-build-orchestrator on iOS repos. Benchmarks the current Xcode build, runs compilation / project / SPM analyzers, produces a recommend-first optimization plan in .build-benchmark/, and re-benchmarks after the developer approves changes. Fails fast on non-iOS stacks.",
772
+ "description": "Wrapper that dispatches to xcode-build-orchestrator on iOS repos. Benchmarks the current Xcode build, runs compilation / project / SPM analyzers, produces a recommend-first optimization plan in .build-benchmark/, and re-benchmarks after the developer approves changes. Fails fast on non-iOS stacks. U",
773
773
  "platform": null,
774
774
  "group": "core",
775
775
  "triggerKeywords": [],
@@ -787,7 +787,7 @@
787
787
  },
788
788
  {
789
789
  "name": "multi-agent-create-jira",
790
- "description": "Create a standards-compliant Jira issue (Task / Bug / Story): asks the type, mines project conventions, drafts from a standard template with auto-sizing sections, full preview + explicit approval before create.",
790
+ "description": "Create a standards-compliant Jira issue (Task / Bug / Story): asks the type, mines project conventions, drafts from a standard template with auto-sizing sections, full preview + explicit approval before create. Use when a Jira Task, Bug or Story has to be written to the project's own conventions.",
791
791
  "platform": null,
792
792
  "group": "core",
793
793
  "triggerKeywords": [],
@@ -805,7 +805,7 @@
805
805
  },
806
806
  {
807
807
  "name": "multi-agent-dev",
808
- "description": "Fast development mode: Init → Dev (Opus) → Test → Commit → Report. Analysis, planning, and review phases are skipped.",
808
+ "description": "Fast development mode: Init → Dev (Opus) → Test → Commit → Report. Analysis, planning, and review phases are skipped. Use when the work is already scoped and only development, test and commit are needed.",
809
809
  "platform": null,
810
810
  "group": "core",
811
811
  "triggerKeywords": [],
@@ -814,7 +814,7 @@
814
814
  },
815
815
  {
816
816
  "name": "multi-agent-dev-autopilot",
817
- "description": "Fastest mode: Dev (Opus) plus Autopilot. Init → Dev → Commit → Report with zero confirmations.",
817
+ "description": "Fastest mode: Dev (Opus) plus Autopilot. Init → Dev → Commit → Report with zero confirmations. Use when a change is well understood and should go from start to commit with no questions asked.",
818
818
  "platform": null,
819
819
  "group": "core",
820
820
  "triggerKeywords": [],
@@ -823,7 +823,7 @@
823
823
  },
824
824
  {
825
825
  "name": "multi-agent-dev-local",
826
- "description": "Fast mode + local - Init → Dev(Opus) → Commit → Report, no worktree.",
826
+ "description": "Fast mode + local - Init → Dev(Opus) → Commit → Report, no worktree. Use when a change should be developed on the current branch without creating a worktree.",
827
827
  "platform": null,
828
828
  "group": "core",
829
829
  "triggerKeywords": [],
@@ -832,7 +832,7 @@
832
832
  },
833
833
  {
834
834
  "name": "multi-agent-dev-local-autopilot",
835
- "description": "Fastest + local - Dev(Opus) + autopilot, no worktree, zero interaction.",
835
+ "description": "Fastest + local - Dev(Opus) + autopilot, no worktree, zero interaction. Use when a change should be developed on the current branch with no worktree and no prompts.",
836
836
  "platform": null,
837
837
  "group": "core",
838
838
  "triggerKeywords": [],
@@ -841,7 +841,7 @@
841
841
  },
842
842
  {
843
843
  "name": "multi-agent-diff-explain",
844
- "description": "Map Phase 4 triage findings to branch diff lines. Read-only post-hoc command, used after review to answer 'which finding lines up with which code change'.",
844
+ "description": "Map Phase 4 triage findings to branch diff lines. Read-only post-hoc command, used after review to answer 'which finding lines up with which code change'. Use when a review finding has to be traced to the exact lines that caused it.",
845
845
  "platform": null,
846
846
  "group": "core",
847
847
  "triggerKeywords": [],
@@ -850,7 +850,7 @@
850
850
  },
851
851
  {
852
852
  "name": "multi-agent-finish",
853
- "description": "Continue already-done LOCAL work through the pipeline tail: Review → Build+Test → Commit/PR → Report (technical analysis + Jira test-scenario comment). No dev phase.",
853
+ "description": "Continue already-done LOCAL work through the pipeline tail: Review → Build+Test → Commit/PR → Report (technical analysis + Jira test-scenario comment). No dev phase. Use when local work is already done and only review, build, commit and reporting remain.",
854
854
  "platform": null,
855
855
  "group": "core",
856
856
  "triggerKeywords": [],
@@ -859,7 +859,7 @@
859
859
  },
860
860
  {
861
861
  "name": "multi-agent-forget",
862
- "description": "Remove a saved /multi-agent routine (created by /multi-agent:save): deletes its local-only command and its registry entry. Asks which one and confirms.",
862
+ "description": "Remove a saved /multi-agent routine (created by /multi-agent:save): deletes its local-only command and its registry entry. Asks which one and confirms. Use when a saved routine is no longer wanted and should be removed.",
863
863
  "platform": null,
864
864
  "group": "core",
865
865
  "triggerKeywords": [],
@@ -868,7 +868,7 @@
868
868
  },
869
869
  {
870
870
  "name": "multi-agent-garbage-collect",
871
- "description": "Sweep leftover /tmp scratch (picker state, review diffs, channel payloads, analysis drafts) from past runs. Dry-run first; confirms before deleting.",
871
+ "description": "Sweep leftover /tmp scratch (picker state, review diffs, channel payloads, analysis drafts) from past runs. Dry-run first; confirms before deleting. Use when scratch files from earlier runs need clearing out.",
872
872
  "platform": null,
873
873
  "group": "core",
874
874
  "triggerKeywords": [],
@@ -877,7 +877,7 @@
877
877
  },
878
878
  {
879
879
  "name": "multi-agent-help",
880
- "description": "Multi-agent pipeline usage guide - renders in EN or TR per prefs.global.outputLanguage (falls back to promptLanguage for backward compatibility).",
880
+ "description": "Multi-agent pipeline usage guide - renders in EN or TR per prefs.global.outputLanguage (falls back to promptLanguage for backward compatibility). Use when asked what the pipeline can do, which mode to pick, or what a command means.",
881
881
  "platform": null,
882
882
  "group": "core",
883
883
  "triggerKeywords": [],
@@ -886,7 +886,7 @@
886
886
  },
887
887
  {
888
888
  "name": "multi-agent-issue",
889
- "description": "List unassigned GitHub issues, pick one, auto-assign, and launch the multi-agent pipeline.",
889
+ "description": "List unassigned GitHub issues, pick one, auto-assign, and launch the multi-agent pipeline. Use when a GitHub issue should be picked up and started without knowing its number in advance.",
890
890
  "platform": null,
891
891
  "group": "core",
892
892
  "triggerKeywords": [],
@@ -895,7 +895,7 @@
895
895
  },
896
896
  {
897
897
  "name": "multi-agent-jira",
898
- "description": "List open Jira issues, pick one, and launch the multi-agent pipeline.",
898
+ "description": "List open Jira issues, pick one, and launch the multi-agent pipeline. Use when a Jira issue should be picked up and started without knowing its key in advance.",
899
899
  "platform": null,
900
900
  "group": "core",
901
901
  "triggerKeywords": [],
@@ -904,7 +904,7 @@
904
904
  },
905
905
  {
906
906
  "name": "multi-agent-kill",
907
- "description": "Stop the given task, then remove its worktree and branch. Asks for confirmation.",
907
+ "description": "Stop the given task, then remove its worktree and branch. Asks for confirmation. Use when a running or stuck task should be stopped and its worktree removed.",
908
908
  "platform": null,
909
909
  "group": "core",
910
910
  "triggerKeywords": [],
@@ -913,7 +913,7 @@
913
913
  },
914
914
  {
915
915
  "name": "multi-agent-language",
916
- "description": "Toggle outputLanguage (assistant explanations). promptLanguage is fixed to English. External payloads stay English.",
916
+ "description": "Toggle outputLanguage (assistant explanations). promptLanguage is fixed to English. External payloads stay English. Use when the assistant should explain itself in a different language.",
917
917
  "platform": null,
918
918
  "group": "core",
919
919
  "triggerKeywords": [],
@@ -922,7 +922,7 @@
922
922
  },
923
923
  {
924
924
  "name": "multi-agent-local",
925
- "description": "Full pipeline in local mode - no worktree, runs directly on the current branch.",
925
+ "description": "Full pipeline in local mode - no worktree, runs directly on the current branch. Use when the full pipeline should run on the current branch without creating a worktree.",
926
926
  "platform": null,
927
927
  "group": "core",
928
928
  "triggerKeywords": [],
@@ -931,7 +931,7 @@
931
931
  },
932
932
  {
933
933
  "name": "multi-agent-local-autopilot",
934
- "description": "Full pipeline + local + autopilot - no worktree, no confirmations, all 8 phases run end-to-end on the current branch.",
934
+ "description": "Full pipeline + local + autopilot - no worktree, no confirmations, all 8 phases run end-to-end on the current branch. Use when the full pipeline should run on the current branch with no worktree and no prompts.",
935
935
  "platform": null,
936
936
  "group": "core",
937
937
  "triggerKeywords": [],
@@ -940,7 +940,7 @@
940
940
  },
941
941
  {
942
942
  "name": "multi-agent-log",
943
- "description": "Show the agent-log.md for the given task. With no ID, shows the most recent task.",
943
+ "description": "Show the agent-log.md for the given task. With no ID, shows the most recent task. Use when asked what a task did, or to read its log.",
944
944
  "platform": null,
945
945
  "group": "core",
946
946
  "triggerKeywords": [],
@@ -949,7 +949,7 @@
949
949
  },
950
950
  {
951
951
  "name": "multi-agent-manual-test",
952
- "description": "Switch to the active task's branch and prepare it for manual testing in Xcode. Phase 5 standalone (the UI Bug Hunter lives at multi-agent-test).",
952
+ "description": "Switch to the active task's branch and prepare it for manual testing in Xcode. Phase 5 standalone (the UI Bug Hunter lives at multi-agent-test). Use when a finished change needs trying by hand on a device or simulator.",
953
953
  "platform": null,
954
954
  "group": "core",
955
955
  "triggerKeywords": [],
@@ -958,7 +958,7 @@
958
958
  },
959
959
  {
960
960
  "name": "multi-agent-prune-logs",
961
- "description": "Delete per-task project logs under ~/.claude/logs/multi-agent (filter by age/project/task). Audit trail + metrics are preserved. Dry-run first; confirms before deleting.",
961
+ "description": "Delete per-task project logs under ~/.claude/logs/multi-agent (filter by age/project/task). Audit trail + metrics are preserved. Dry-run first; confirms before deleting. Use when task logs have built up and need trimming by age, project or task.",
962
962
  "platform": null,
963
963
  "group": "core",
964
964
  "triggerKeywords": [],
@@ -967,7 +967,7 @@
967
967
  },
968
968
  {
969
969
  "name": "multi-agent-purge",
970
- "description": "⚠️ Wipes every worktree, branch, log, and state file. Irreversible; asks for double confirmation.",
970
+ "description": "⚠️ Wipes every worktree, branch, log, and state file. Irreversible; asks for double confirmation. Use when every worktree, branch, log and state file should be wiped and the pipeline reset.",
971
971
  "platform": null,
972
972
  "group": "core",
973
973
  "triggerKeywords": [],
@@ -976,7 +976,7 @@
976
976
  },
977
977
  {
978
978
  "name": "multi-agent-refactor",
979
- "description": "Analyse the project: extract adapted best-practices, hunt real bugs + improvement areas, check upstream drift of derived skills, research the companion dev-toolkit MCP server against current MCP practice, draft one plan, take approval, develop, then ask whether to sync.",
979
+ "description": "Analyse the project: extract adapted best-practices, hunt real bugs + improvement areas, check upstream drift of derived skills, research the companion dev-toolkit MCP server against current MCP practice, draft one plan, take approval, develop, then ask whether to sync. Use when asked to review a pr",
980
980
  "platform": null,
981
981
  "group": "core",
982
982
  "triggerKeywords": [],
@@ -985,7 +985,7 @@
985
985
  },
986
986
  {
987
987
  "name": "multi-agent-resume",
988
- "description": "Resume a stopped or failed task from the phase where it left off.",
988
+ "description": "Resume a stopped or failed task from the phase where it left off. Use when a task stopped or failed and should carry on from where it left off.",
989
989
  "platform": null,
990
990
  "group": "core",
991
991
  "triggerKeywords": [],
@@ -994,7 +994,7 @@
994
994
  },
995
995
  {
996
996
  "name": "multi-agent-review",
997
- "description": "Run parallel review on a branch diff or a Pull Request: 2 models on Claude Code (Fable + Sonnet), 3 models on Copilot CLI (GPT + Opus + Sonnet). On PR input, posts per-finding inline comments + approve/needs-work. With no input (interactive), lists open GitHub + Bitbucket PRs to multi-select.",
997
+ "description": "Run parallel review on a branch diff or a Pull Request: 2 models on Claude Code (Fable + Sonnet), 3 models on Copilot CLI (GPT + Opus + Sonnet). On PR input, posts per-finding inline comments + approve/needs-work. With no input (interactive), lists open GitHub + Bitbucket PRs to multi-select. Use wh",
998
998
  "platform": null,
999
999
  "group": "core",
1000
1000
  "triggerKeywords": [],
@@ -1003,7 +1003,7 @@
1003
1003
  },
1004
1004
  {
1005
1005
  "name": "multi-agent-review-issue",
1006
- "description": "Assess whether a GitHub issue is ready for multi-agent development: fetch it, grade scope / acceptance criteria / repro / design / API / stack readiness, then (after confirm) post the gaps as an issue comment. Read-only on code.",
1006
+ "description": "Assess whether a GitHub issue is ready for multi-agent development: fetch it, grade scope / acceptance criteria / repro / design / API / stack readiness, then (after confirm) post the gaps as an issue comment. Read-only on code. Use when deciding whether a GitHub issue is specified well enough to ha",
1007
1007
  "platform": null,
1008
1008
  "group": "core",
1009
1009
  "triggerKeywords": [],
@@ -1012,7 +1012,7 @@
1012
1012
  },
1013
1013
  {
1014
1014
  "name": "multi-agent-review-jira",
1015
- "description": "Assess whether a Jira issue is ready for multi-agent development: fetch it, grade scope / acceptance criteria / repro / design / API / stack readiness, then (after confirm) post the gaps as a Jira comment. Read-only on code.",
1015
+ "description": "Assess whether a Jira issue is ready for multi-agent development: fetch it, grade scope / acceptance criteria / repro / design / API / stack readiness, then (after confirm) post the gaps as a Jira comment. Read-only on code. Use when deciding whether a Jira issue is specified well enough to hand to ",
1016
1016
  "platform": null,
1017
1017
  "group": "core",
1018
1018
  "triggerKeywords": [],
@@ -1021,7 +1021,7 @@
1021
1021
  },
1022
1022
  {
1023
1023
  "name": "multi-agent-routines",
1024
- "description": "List your saved /multi-agent routines (from /multi-agent:save) with what each one does, rendered in outputLanguage.",
1024
+ "description": "List your saved /multi-agent routines (from /multi-agent:save) with what each one does, rendered in outputLanguage. Use when asked which saved routines exist or what one of them does.",
1025
1025
  "platform": null,
1026
1026
  "group": "core",
1027
1027
  "triggerKeywords": [],
@@ -1030,7 +1030,7 @@
1030
1030
  },
1031
1031
  {
1032
1032
  "name": "multi-agent-save",
1033
- "description": "Save a recurring job as a reusable /multi-agent:<name> command. Reviews the conversation + your CLAUDE.md for candidate routines, you pick one and name it; stored local-only, never synced.",
1033
+ "description": "Save a recurring job as a reusable /multi-agent:<name> command. Reviews the conversation + your CLAUDE.md for candidate routines, you pick one and name it; stored local-only, never synced. Use when a job keeps recurring and should become its own reusable command.",
1034
1034
  "platform": null,
1035
1035
  "group": "core",
1036
1036
  "triggerKeywords": [],
@@ -1039,7 +1039,7 @@
1039
1039
  },
1040
1040
  {
1041
1041
  "name": "multi-agent-scan",
1042
- "description": "Skill security scan: walks local skill directories against a tiered pattern catalog.",
1042
+ "description": "Skill security scan: walks local skill directories against a tiered pattern catalog. Use when local skill directories need checking for unsafe or unexpected content.",
1043
1043
  "platform": null,
1044
1044
  "group": "core",
1045
1045
  "triggerKeywords": [],
@@ -1048,7 +1048,7 @@
1048
1048
  },
1049
1049
  {
1050
1050
  "name": "multi-agent-search",
1051
- "description": "Log search across every agent-log.md with smart ranking and filters. Optional --semantic flag queries the per-repo triage corpus.",
1051
+ "description": "Log search across every agent-log.md with smart ranking and filters. Optional --semantic flag queries the per-repo triage corpus. Use when something has to be found across past task logs.",
1052
1052
  "platform": null,
1053
1053
  "group": "core",
1054
1054
  "triggerKeywords": [],
@@ -1057,7 +1057,7 @@
1057
1057
  },
1058
1058
  {
1059
1059
  "name": "multi-agent-setup",
1060
- "description": "First-run setup wizard: keychain token discovery, Git Identity onboarding, and pipeline preparation.",
1060
+ "description": "First-run setup wizard: keychain token discovery, Git Identity onboarding, and pipeline preparation. Use when the pipeline is being set up for the first time, or tokens and git identity need onboarding.",
1061
1061
  "platform": null,
1062
1062
  "group": "core",
1063
1063
  "triggerKeywords": [],
@@ -1066,7 +1066,7 @@
1066
1066
  },
1067
1067
  {
1068
1068
  "name": "multi-agent-stack",
1069
- "description": "Select the active stack for this repo by enabling the matching marketplace plugin(s) in .claude/settings.json (ios/android/mobile/backend/frontend/fullstack/all).",
1069
+ "description": "Select the active stack for this repo by enabling the matching marketplace plugin(s) in .claude/settings.json (ios/android/mobile/backend/frontend/fullstack/all). Use when a repo's stack changed or the wrong plugins are enabled for it.",
1070
1070
  "platform": null,
1071
1071
  "group": "core",
1072
1072
  "triggerKeywords": [],
@@ -1075,7 +1075,7 @@
1075
1075
  },
1076
1076
  {
1077
1077
  "name": "multi-agent-status",
1078
- "description": "Show every multi-agent task's ID, phase, branch, and status.",
1078
+ "description": "Show every multi-agent task's ID, phase, branch, and status. Use when asked what is running, or for an overview of every task.",
1079
1079
  "platform": null,
1080
1080
  "group": "core",
1081
1081
  "triggerKeywords": [],
@@ -1084,7 +1084,7 @@
1084
1084
  },
1085
1085
  {
1086
1086
  "name": "multi-agent-sync",
1087
- "description": "One-shot sync of the entire multi-agent ecosystem: Claude Code, Copilot CLI, pipeline repo, website, and the dev-toolkit MCP server.",
1087
+ "description": "One-shot sync of the entire multi-agent ecosystem: Claude Code, Copilot CLI, pipeline repo, website, and the dev-toolkit MCP server. Use when work is finished and should be propagated across Claude Code, Copilot CLI, the repos, the website and the dev-toolkit server.",
1088
1088
  "platform": null,
1089
1089
  "group": "core",
1090
1090
  "triggerKeywords": [],
@@ -1093,7 +1093,7 @@
1093
1093
  },
1094
1094
  {
1095
1095
  "name": "multi-agent-test",
1096
- "description": "UI Bug Hunter - iOS Simulator (simctl) + Android Emulator (adb). Auto-detects platform. Screenshot + tap + analyze on the booted device. The Phase 5 Manual Test flow lives at multi-agent-manual-test.",
1096
+ "description": "UI Bug Hunter - iOS Simulator (simctl) + Android Emulator (adb). Auto-detects platform. Screenshot + tap + analyze on the booted device. The Phase 5 Manual Test flow lives at multi-agent-manual-test. Use when a running app should be driven on a simulator or emulator to hunt UI bugs.",
1097
1097
  "platform": null,
1098
1098
  "group": "core",
1099
1099
  "triggerKeywords": [],
@@ -1102,7 +1102,7 @@
1102
1102
  },
1103
1103
  {
1104
1104
  "name": "multi-agent-uninstall",
1105
- "description": "Uninstall the pipeline from Claude Code + Copilot CLI. Keychain access tokens are always left untouched; --all-data also clears pipeline settings and logs. Asks for double confirmation.",
1105
+ "description": "Uninstall the pipeline from Claude Code + Copilot CLI. Keychain access tokens are always left untouched; --all-data also clears pipeline settings and logs. Asks for double confirmation. Use when the pipeline should be removed from Claude Code and Copilot CLI.",
1106
1106
  "platform": null,
1107
1107
  "group": "core",
1108
1108
  "triggerKeywords": [],
@@ -1111,7 +1111,7 @@
1111
1111
  },
1112
1112
  {
1113
1113
  "name": "multi-agent-update",
1114
- "description": "Update the pipeline to the latest version: git pull, install, migrate.",
1114
+ "description": "Update the pipeline to the latest version: git pull, install, migrate. Use when the installed pipeline is behind and should be brought to the latest version.",
1115
1115
  "platform": null,
1116
1116
  "group": "core",
1117
1117
  "triggerKeywords": [],
@@ -1138,7 +1138,7 @@
1138
1138
  },
1139
1139
  {
1140
1140
  "name": "nextjs-app-router",
1141
- "description": "Next.js 15+ App Router: Server/Client Components, Server Actions, data fetching, layouts, middleware, ISR/SSG/SSR, and routing patterns",
1141
+ "description": "Next.js 15+ App Router: Server/Client Components, Server Actions, data fetching, layouts, middleware, ISR/SSG/SSR, and routing patterns. Use when building or reviewing App Router work: Server Components, Server Actions, data fetching, layouts.",
1142
1142
  "platform": null,
1143
1143
  "group": "external",
1144
1144
  "triggerKeywords": [],
@@ -1147,7 +1147,7 @@
1147
1147
  },
1148
1148
  {
1149
1149
  "name": "nodejs-backend-patterns",
1150
- "description": "Comprehensive guidance for building scalable, maintainable, and production-ready Node.js backend applications with modern frameworks, architectural patterns, and best practices.",
1150
+ "description": "Comprehensive guidance for building scalable, maintainable, and production-ready Node.js backend applications with modern frameworks, architectural patterns, and best practices. Use when building or reviewing a Node.js service: structure, error handling, configuration, scaling.",
1151
1151
  "platform": null,
1152
1152
  "group": "external",
1153
1153
  "triggerKeywords": [],
@@ -1156,7 +1156,7 @@
1156
1156
  },
1157
1157
  {
1158
1158
  "name": "observability-engineer",
1159
- "description": "Build production-ready monitoring, logging, and tracing systems. Implements comprehensive observability strategies, SLI/SLO management, and incident response workflows.",
1159
+ "description": "Build production-ready monitoring, logging, and tracing systems. Implements comprehensive observability strategies, SLI/SLO management, and incident response workflows. Use when metrics, logging, tracing or alerting have to be designed or fixed.",
1160
1160
  "platform": null,
1161
1161
  "group": "external",
1162
1162
  "triggerKeywords": [],
@@ -1228,7 +1228,7 @@
1228
1228
  },
1229
1229
  {
1230
1230
  "name": "python-patterns",
1231
- "description": "Modern Python 3.12+: type hints, dataclasses, Pydantic v2, async/await, context managers, generators, pattern matching",
1231
+ "description": "Modern Python 3.12+: type hints, dataclasses, Pydantic v2, async/await, context managers, generators, pattern matching. Use when writing or reviewing modern Python: typing, dataclasses, Pydantic, async, generators.",
1232
1232
  "platform": null,
1233
1233
  "group": "external",
1234
1234
  "triggerKeywords": [],
@@ -1237,7 +1237,7 @@
1237
1237
  },
1238
1238
  {
1239
1239
  "name": "react-best-practices",
1240
- "description": "React 19+ best practices: Server Components, use() hook, Actions, hooks patterns, state management, and performance optimization",
1240
+ "description": "React 19+ best practices: Server Components, use() hook, Actions, hooks patterns, state management, and performance optimization. Use when building or reviewing React work: components, hooks, state, Server Components, Actions.",
1241
1241
  "platform": null,
1242
1242
  "group": "external",
1243
1243
  "triggerKeywords": [],
@@ -1255,7 +1255,7 @@
1255
1255
  },
1256
1256
  {
1257
1257
  "name": "rest-api-design",
1258
- "description": "REST API design: HTTP methods, status codes, pagination, versioning, rate limiting, caching headers, OpenAPI documentation",
1258
+ "description": "REST API design: HTTP methods, status codes, pagination, versioning, rate limiting, caching headers, OpenAPI documentation. Use when a REST surface needs designing or reviewing: methods, status codes, pagination, versioning, caching.",
1259
1259
  "platform": null,
1260
1260
  "group": "external",
1261
1261
  "triggerKeywords": [],
@@ -1300,7 +1300,7 @@
1300
1300
  },
1301
1301
  {
1302
1302
  "name": "skill-creator",
1303
- "description": "Author and refine skills for a plugin/toolkit efficiently. Use when creating a new skill, trimming or splitting an existing one, writing a skill's description, or choosing skill vs command vs agent vs CLAUDE.md. Encodes the house rules lean SKILL.md as an index, progressive disclosure into bundled",
1303
+ "description": "Author and refine skills for a plugin/toolkit efficiently. Use when creating a new skill, trimming or splitting an existing one, writing a skill's description, or choosing skill vs command vs agent vs CLAUDE.md. Encodes the house rules - lean SKILL.md as an index, progressive disclosure into bundled",
1304
1304
  "platform": null,
1305
1305
  "group": "external",
1306
1306
  "triggerKeywords": [],
@@ -1381,7 +1381,7 @@
1381
1381
  },
1382
1382
  {
1383
1383
  "name": "swift-concurrency-expert",
1384
- "description": "Review and fix Swift concurrency issues such as actor isolation and Sendable violations.",
1384
+ "description": "Review and fix Swift concurrency issues such as actor isolation and Sendable violations. Use when a Swift concurrency problem needs diagnosing, such as actor isolation or a Sendable violation.",
1385
1385
  "platform": null,
1386
1386
  "group": "external",
1387
1387
  "triggerKeywords": [],
@@ -1543,7 +1543,7 @@
1543
1543
  },
1544
1544
  {
1545
1545
  "name": "swiftui-performance-audit",
1546
- "description": "Audit SwiftUI performance issues from code review and profiling evidence.",
1546
+ "description": "Audit SwiftUI performance issues from code review and profiling evidence. Use when a SwiftUI view is slow and the cause has to be found from code and profiling evidence.",
1547
1547
  "platform": null,
1548
1548
  "group": "external",
1549
1549
  "triggerKeywords": [],
@@ -1561,7 +1561,7 @@
1561
1561
  },
1562
1562
  {
1563
1563
  "name": "swiftui-ui-patterns",
1564
- "description": "Apply proven SwiftUI UI patterns for navigation, sheets, async state, and reusable screens.",
1564
+ "description": "Apply proven SwiftUI UI patterns for navigation, sheets, async state, and reusable screens. Use when a SwiftUI screen needs a proven pattern for navigation, sheets, async state or reuse.",
1565
1565
  "platform": null,
1566
1566
  "group": "external",
1567
1567
  "triggerKeywords": [],
@@ -1579,7 +1579,7 @@
1579
1579
  },
1580
1580
  {
1581
1581
  "name": "swiftui-view-refactor",
1582
- "description": "Refactor SwiftUI views into smaller components with stable, explicit data flow.",
1582
+ "description": "Refactor SwiftUI views into smaller components with stable, explicit data flow. Use when a SwiftUI view has grown too large and needs splitting with clear data flow.",
1583
1583
  "platform": null,
1584
1584
  "group": "external",
1585
1585
  "triggerKeywords": [],
@@ -1597,7 +1597,7 @@
1597
1597
  },
1598
1598
  {
1599
1599
  "name": "tailwind-css",
1600
- "description": "Tailwind CSS v4: utility-first styling, responsive design, dark mode, custom themes, component patterns, and cn() utility",
1600
+ "description": "Tailwind CSS v4: utility-first styling, responsive design, dark mode, custom themes, component patterns, and cn() utility. Use when styling or reviewing UI with Tailwind: utilities, responsive design, dark mode, theming.",
1601
1601
  "platform": null,
1602
1602
  "group": "external",
1603
1603
  "triggerKeywords": [],
@@ -1606,7 +1606,7 @@
1606
1606
  },
1607
1607
  {
1608
1608
  "name": "testing-backend",
1609
- "description": "Backend testing: pytest patterns (Python), Jest patterns (Node.js), integration testing, database fixtures/factories, API contract testing",
1609
+ "description": "Backend testing: pytest patterns (Python), Jest patterns (Node.js), integration testing, database fixtures/factories, API contract testing. Use when writing or reviewing backend tests: unit, integration, database and API level.",
1610
1610
  "platform": null,
1611
1611
  "group": "external",
1612
1612
  "triggerKeywords": [],
@@ -1624,7 +1624,7 @@
1624
1624
  },
1625
1625
  {
1626
1626
  "name": "typescript-patterns",
1627
- "description": "Modern TypeScript patterns: strict mode, utility types, generics, conditional types, type guards, discriminated unions, Zod validation",
1627
+ "description": "Modern TypeScript patterns: strict mode, utility types, generics, conditional types, type guards, discriminated unions, Zod validation. Use when writing or reviewing TypeScript types: generics, utility and conditional types, guards, strict mode.",
1628
1628
  "platform": null,
1629
1629
  "group": "external",
1630
1630
  "triggerKeywords": [],
@@ -1642,7 +1642,7 @@
1642
1642
  },
1643
1643
  {
1644
1644
  "name": "vue-composition",
1645
- "description": "Vue 3 Composition API: ref, reactive, computed, watch, composables, Pinia state management, Vue Router 4, script setup",
1645
+ "description": "Vue 3 Composition API: ref, reactive, computed, watch, composables, Pinia state management, Vue Router 4, script setup. Use when building or reviewing Vue 3 work with the Composition API, composables or Pinia.",
1646
1646
  "platform": null,
1647
1647
  "group": "external",
1648
1648
  "triggerKeywords": [],
@@ -1660,7 +1660,7 @@
1660
1660
  },
1661
1661
  {
1662
1662
  "name": "web-accessibility",
1663
- "description": "WCAG 2.2 AA web accessibility: ARIA roles/states, keyboard navigation, screen readers, color contrast, focus management, axe-core testing",
1663
+ "description": "WCAG 2.2 AA web accessibility: ARIA roles/states, keyboard navigation, screen readers, color contrast, focus management, axe-core testing. Use when auditing or fixing a web UI against WCAG: ARIA, keyboard access, screen readers, contrast.",
1664
1664
  "platform": null,
1665
1665
  "group": "external",
1666
1666
  "triggerKeywords": [],
@@ -1669,7 +1669,7 @@
1669
1669
  },
1670
1670
  {
1671
1671
  "name": "web-performance",
1672
- "description": "Web performance: Core Web Vitals (LCP, INP, CLS), image optimization, code splitting, caching strategies, bundle analysis, Lighthouse",
1672
+ "description": "Web performance: Core Web Vitals (LCP, INP, CLS), image optimization, code splitting, caching strategies, bundle analysis, Lighthouse. Use when a page is slow and Core Web Vitals, images, bundles or caching have to be addressed.",
1673
1673
  "platform": null,
1674
1674
  "group": "external",
1675
1675
  "triggerKeywords": [],
@@ -1678,7 +1678,7 @@
1678
1678
  },
1679
1679
  {
1680
1680
  "name": "web-testing",
1681
- "description": "Web testing: Vitest unit tests, React Testing Library, Playwright E2E, MSW API mocking, testing hooks and async operations",
1681
+ "description": "Web testing: Vitest unit tests, React Testing Library, Playwright E2E, MSW API mocking, testing hooks and async operations. Use when writing or reviewing web tests with Vitest, Testing Library, Playwright or MSW.",
1682
1682
  "platform": null,
1683
1683
  "group": "external",
1684
1684
  "triggerKeywords": [],