@mmerterden/multi-agent-pipeline 11.1.0 → 11.3.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 (342) hide show
  1. package/CHANGELOG.md +58 -0
  2. package/README.md +2 -2
  3. package/docs/FIGMA_PIPELINE.md +12 -25
  4. package/docs/architecture.md +3 -5
  5. package/docs/features.md +8 -8
  6. package/install/_common.mjs +9 -1
  7. package/install/_dev-only-files.mjs +0 -6
  8. package/install/claude.mjs +45 -18
  9. package/install/copilot.mjs +16 -14
  10. package/install/templates/copilot-instructions.md +3 -3
  11. package/package.json +1 -1
  12. package/pipeline/commands/{multi-agent.md → multi-agent/SKILL.md} +39 -39
  13. package/pipeline/commands/multi-agent/{analysis.md → analysis/SKILL.md} +18 -18
  14. package/pipeline/commands/multi-agent/{analysis-resolve.md → analysis-resolve/SKILL.md} +4 -4
  15. package/pipeline/commands/multi-agent/{autopilot.md → autopilot/SKILL.md} +4 -4
  16. package/pipeline/commands/multi-agent/{build-optimize.md → build-optimize/SKILL.md} +1 -1
  17. package/pipeline/commands/multi-agent/{channels.md → channels/SKILL.md} +12 -12
  18. package/pipeline/commands/multi-agent/{dev.md → dev/SKILL.md} +4 -4
  19. package/pipeline/commands/multi-agent/{dev-autopilot.md → dev-autopilot/SKILL.md} +4 -4
  20. package/pipeline/commands/multi-agent/{dev-local.md → dev-local/SKILL.md} +5 -5
  21. package/pipeline/commands/multi-agent/{dev-local-autopilot.md → dev-local-autopilot/SKILL.md} +4 -4
  22. package/pipeline/commands/multi-agent/{finish.md → finish/SKILL.md} +6 -6
  23. package/pipeline/commands/multi-agent/{generate.md → generate/SKILL.md} +3 -3
  24. package/pipeline/commands/multi-agent/{help.md → help/SKILL.md} +4 -4
  25. package/pipeline/commands/multi-agent/{local.md → local/SKILL.md} +5 -5
  26. package/pipeline/commands/multi-agent/{local-autopilot.md → local-autopilot/SKILL.md} +5 -5
  27. package/pipeline/commands/multi-agent/{manual-test.md → manual-test/SKILL.md} +1 -1
  28. package/pipeline/commands/multi-agent/refactor/SKILL.md +257 -0
  29. package/pipeline/commands/multi-agent/{resume.md → resume/SKILL.md} +1 -1
  30. package/pipeline/commands/multi-agent/{review.md → review/SKILL.md} +5 -5
  31. package/pipeline/commands/multi-agent/{setup.md → setup/SKILL.md} +1 -1
  32. package/pipeline/commands/multi-agent/{sync.md → sync/SKILL.md} +20 -58
  33. package/pipeline/{commands/multi-agent → multi-agent-refs}/_account-picker.md +2 -2
  34. package/pipeline/{commands/multi-agent → multi-agent-refs}/_dev-context.md +2 -2
  35. package/pipeline/{commands/multi-agent → multi-agent-refs}/_repo-picker.md +2 -2
  36. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/android-guide.md +1 -1
  37. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/channels/jira.md +1 -1
  38. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/channels/wiki.md +7 -7
  39. package/pipeline/multi-agent-refs/component-dispatch.md +92 -0
  40. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/cross-cli-contract.md +10 -77
  41. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/features/verify-by-test.md +1 -1
  42. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/generate-issue.md +2 -2
  43. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/issue-jira-triad.md +1 -1
  44. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/keychain.md +1 -1
  45. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/phases/log-format.md +1 -1
  46. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/phases/modes.md +2 -2
  47. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/phases/operations.md +1 -1
  48. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/phases/phase-0-init.md +10 -10
  49. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/phases/phase-1-analysis.md +6 -6
  50. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/phases/phase-2-planning.md +3 -3
  51. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/phases/phase-3-dev.md +10 -10
  52. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/phases/phase-4-review.md +8 -8
  53. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/phases/phase-5-test.md +3 -3
  54. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/phases/phase-6-commit.md +4 -4
  55. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/phases/phase-7-report.md +6 -6
  56. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/phases.md +12 -12
  57. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/progress-contract.md +4 -4
  58. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/swiftui-guide.md +1 -1
  59. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/tracker-contract.md +3 -3
  60. package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/wiki-capture.md +4 -4
  61. package/pipeline/preferences-template.json +17 -1
  62. package/pipeline/rules/figma-pipeline.md +2 -2
  63. package/pipeline/schemas/prefs.schema.json +0 -34
  64. package/pipeline/scripts/README.md +1 -3
  65. package/pipeline/scripts/build-stack-plugins.mjs +1 -1
  66. package/pipeline/scripts/fixtures/install-layout.tsv +6 -5
  67. package/pipeline/scripts/gen-mode-dispatch.mjs +3 -3
  68. package/pipeline/scripts/phase-banner.sh +2 -2
  69. package/pipeline/scripts/review-scope.mjs +94 -0
  70. package/pipeline/scripts/scan-agent-config.sh +2 -2
  71. package/pipeline/scripts/smoke-agent-log-cost.sh +1 -1
  72. package/pipeline/scripts/smoke-agent-model-routing.sh +4 -4
  73. package/pipeline/scripts/smoke-autopilot-circuit-breaker.sh +2 -2
  74. package/pipeline/scripts/smoke-channels-approval-gate.sh +2 -2
  75. package/pipeline/scripts/smoke-channels-flow.sh +5 -5
  76. package/pipeline/scripts/smoke-clarify.sh +1 -1
  77. package/pipeline/scripts/smoke-commands-skills-parity.sh +3 -3
  78. package/pipeline/scripts/smoke-community-gates.sh +1 -1
  79. package/pipeline/scripts/smoke-compliance-skills.sh +2 -2
  80. package/pipeline/scripts/smoke-cost-summary.sh +1 -1
  81. package/pipeline/scripts/smoke-cross-cli-behavior.sh +17 -43
  82. package/pipeline/scripts/smoke-cross-phase-cohesion.sh +1 -1
  83. package/pipeline/scripts/smoke-dev-critic.sh +1 -1
  84. package/pipeline/scripts/smoke-diff-explain.sh +1 -1
  85. package/pipeline/scripts/smoke-diff-risk.sh +1 -1
  86. package/pipeline/scripts/smoke-evidence-gate.sh +1 -1
  87. package/pipeline/scripts/smoke-figma-dispatch.sh +46 -57
  88. package/pipeline/scripts/smoke-gate-hooks.sh +1 -1
  89. package/pipeline/scripts/smoke-generate-issue.sh +8 -8
  90. package/pipeline/scripts/smoke-handoff-contract.sh +3 -3
  91. package/pipeline/scripts/smoke-identity-isolation.sh +2 -2
  92. package/pipeline/scripts/smoke-intent-guard.sh +1 -1
  93. package/pipeline/scripts/smoke-issue-comment-template.sh +2 -2
  94. package/pipeline/scripts/smoke-issue-jira-triad.sh +4 -4
  95. package/pipeline/scripts/smoke-language-axis.sh +6 -6
  96. package/pipeline/scripts/smoke-learnings-ledger.sh +3 -3
  97. package/pipeline/scripts/smoke-mode-dispatch-drift.sh +16 -16
  98. package/pipeline/scripts/smoke-model-fallback.sh +3 -3
  99. package/pipeline/scripts/smoke-multi-repo-integration.sh +2 -2
  100. package/pipeline/scripts/smoke-multi-repo-worktree.sh +1 -1
  101. package/pipeline/scripts/smoke-no-token-prompt.sh +5 -5
  102. package/pipeline/scripts/smoke-phase-0-multi-repo.sh +1 -1
  103. package/pipeline/scripts/smoke-phase-6-multi.sh +1 -1
  104. package/pipeline/scripts/smoke-phase4-gates.sh +45 -0
  105. package/pipeline/scripts/smoke-plan-approval-gate.sh +5 -5
  106. package/pipeline/scripts/smoke-plan-todos.sh +3 -3
  107. package/pipeline/scripts/smoke-pr-review-actions.sh +3 -3
  108. package/pipeline/scripts/smoke-prefs-language.sh +1 -1
  109. package/pipeline/scripts/smoke-progress-contract.sh +2 -2
  110. package/pipeline/scripts/smoke-push-retry.sh +1 -1
  111. package/pipeline/scripts/smoke-repo-map.sh +2 -2
  112. package/pipeline/scripts/smoke-shadow-git.sh +1 -1
  113. package/pipeline/scripts/smoke-skill-authoring.sh +4 -9
  114. package/pipeline/scripts/smoke-tasklist-ordering.sh +10 -10
  115. package/pipeline/scripts/smoke-test-gap.sh +1 -1
  116. package/pipeline/scripts/smoke-token-budget.sh +1 -1
  117. package/pipeline/scripts/smoke-token-preflight.sh +2 -2
  118. package/pipeline/scripts/smoke-tracker-contract.sh +13 -13
  119. package/pipeline/scripts/smoke-tracker-tokens-invocation.sh +5 -5
  120. package/pipeline/scripts/smoke-triage-memory.sh +2 -2
  121. package/pipeline/scripts/smoke-update-check.sh +1 -1
  122. package/pipeline/scripts/smoke-url-enrichment.sh +2 -2
  123. package/pipeline/scripts/smoke-validator-gates.sh +1 -1
  124. package/pipeline/scripts/smoke-verify-by-test.sh +3 -3
  125. package/pipeline/scripts/smoke-wiki-integration.sh +9 -33
  126. package/pipeline/scripts/smoke-work-summary.sh +1 -1
  127. package/pipeline/scripts/smoke-worktree-path-convention.sh +4 -4
  128. package/pipeline/scripts/test-integrity-gate.mjs +83 -0
  129. package/pipeline/scripts/uninstall.mjs +2 -2
  130. package/pipeline/skills/.skill-manifest.json +40 -160
  131. package/pipeline/skills/.skills-index.json +21 -372
  132. package/pipeline/skills/shared/README.md +1 -1
  133. package/pipeline/skills/shared/core/multi-agent/SKILL.md +1 -1
  134. package/pipeline/skills/shared/core/multi-agent-analysis/SKILL.md +2 -2
  135. package/pipeline/skills/shared/core/multi-agent-analysis-resolve/SKILL.md +3 -3
  136. package/pipeline/skills/shared/core/multi-agent-build-optimize/SKILL.md +1 -1
  137. package/pipeline/skills/shared/core/multi-agent-channels/SKILL.md +1 -1
  138. package/pipeline/skills/shared/core/multi-agent-finish/SKILL.md +1 -1
  139. package/pipeline/skills/shared/core/multi-agent-help/SKILL.md +1 -1
  140. package/pipeline/skills/shared/core/multi-agent-refactor/SKILL.md +116 -51
  141. package/pipeline/skills/shared/core/multi-agent-sync/SKILL.md +8 -30
  142. package/pipeline/skills/shared/external/backlog/BACKLOG.md +32 -0
  143. package/pipeline/skills/shared/external/backlog/SKILL.md +49 -0
  144. package/pipeline/skills/shared/external/compose-components/SKILL.md +14 -14
  145. package/pipeline/skills/shared/external/skill-creator/SKILL.md +48 -0
  146. package/pipeline/skills/shared/external/skill-creator/audit.md +59 -0
  147. package/pipeline/skills/shared/external/skill-creator/checklist.md +32 -0
  148. package/pipeline/skills/shared/external/skill-creator/examples.md +65 -0
  149. package/pipeline/skills/shared/external/skill-creator/label-check.md +43 -0
  150. package/pipeline/skills/shared/external/skill-creator/scripts/audit-panel.js +83 -0
  151. package/pipeline/skills/shared/external/skill-creator/template.md +67 -0
  152. package/pipeline/skills/skills-index.md +4 -43
  153. package/pipeline/commands/multi-agent/refactor.md +0 -188
  154. package/pipeline/commands/multi-agent/refs/component-dispatch.md +0 -92
  155. package/pipeline/scripts/smoke-existing-discovery-gate.sh +0 -71
  156. package/pipeline/scripts/smoke-figma-android-parity.sh +0 -148
  157. package/pipeline/scripts/smoke-figma-credential-store.sh +0 -105
  158. package/pipeline/scripts/smoke-figma-cross-cli-inventory.sh +0 -177
  159. package/pipeline/scripts/smoke-figma-sync.sh +0 -149
  160. package/pipeline/scripts/smoke-sync-delegation.sh +0 -74
  161. package/pipeline/skills/figma-android/README.md +0 -38
  162. package/pipeline/skills/figma-android/figma-component-code-connect/SKILL.md +0 -62
  163. package/pipeline/skills/figma-android/figma-component-implement/SKILL.md +0 -158
  164. package/pipeline/skills/figma-android/figma-component-test/SKILL.md +0 -120
  165. package/pipeline/skills/figma-android/figma-component-wiki/SKILL.md +0 -35
  166. package/pipeline/skills/figma-android/figma-to-component/SKILL.md +0 -124
  167. package/pipeline/skills/figma-common/README.md +0 -64
  168. package/pipeline/skills/figma-common/figma-bottom-sheets/SKILL.md +0 -152
  169. package/pipeline/skills/figma-common/figma-cli-iterate/SKILL.md +0 -282
  170. package/pipeline/skills/figma-common/figma-cli-iterate-mend/SKILL.md +0 -503
  171. package/pipeline/skills/figma-common/figma-cli-lean-iterate/SKILL.md +0 -288
  172. package/pipeline/skills/figma-common/figma-cli-skip/SKILL.md +0 -362
  173. package/pipeline/skills/figma-common/figma-commit/COMMON_REBASE.md +0 -206
  174. package/pipeline/skills/figma-common/figma-commit/REVIEW.md +0 -337
  175. package/pipeline/skills/figma-common/figma-commit/SKILL.md +0 -216
  176. package/pipeline/skills/figma-common/figma-component-confluence-sync/SKILL.md +0 -223
  177. package/pipeline/skills/figma-common/figma-component-start/SKILL.md +0 -251
  178. package/pipeline/skills/figma-common/figma-component-status-update/SKILL.md +0 -78
  179. package/pipeline/skills/figma-common/figma-evolve-component/SKILL.md +0 -61
  180. package/pipeline/skills/figma-common/figma-fix/SKILL.md +0 -321
  181. package/pipeline/skills/figma-common/figma-form-integration/SKILL.md +0 -542
  182. package/pipeline/skills/figma-common/figma-issue/SKILL.md +0 -750
  183. package/pipeline/skills/figma-common/figma-iterate/SKILL.md +0 -208
  184. package/pipeline/skills/figma-common/figma-iteration-commit/SKILL.md +0 -1020
  185. package/pipeline/skills/figma-common/figma-mend/SKILL.md +0 -331
  186. package/pipeline/skills/figma-common/figma-navigation/SKILL.md +0 -156
  187. package/pipeline/skills/figma-common/figma-overlays/SKILL.md +0 -142
  188. package/pipeline/skills/figma-common/figma-price-integration/SKILL.md +0 -398
  189. package/pipeline/skills/figma-common/figma-remote-mcp-auth/SKILL.md +0 -104
  190. package/pipeline/skills/figma-common/figma-review/SKILL.md +0 -400
  191. package/pipeline/skills/figma-common/figma-setup/SKILL.md +0 -514
  192. package/pipeline/skills/figma-common/figma-setup/scripts/fetch-mcp-token.py +0 -592
  193. package/pipeline/skills/figma-common/figma-skip/SKILL.md +0 -129
  194. package/pipeline/skills/figma-common/figma-ui-patterns/SKILL.md +0 -105
  195. package/pipeline/skills/figma-common/figma-ui-patterns/patterns/animated-gradient-border.md +0 -116
  196. package/pipeline/skills/figma-common/figma-utility/SKILL.md +0 -274
  197. package/pipeline/skills/figma-common/figma-utility/scripts/figma-utility.py +0 -808
  198. package/pipeline/skills/figma-common/figma-validate/SKILL.md +0 -633
  199. package/pipeline/skills/figma-common/performance-iteration-commit-all/SKILL.md +0 -716
  200. package/pipeline/skills/figma-common/performance-review-next/SKILL.md +0 -238
  201. package/pipeline/skills/figma-common/performance-start/SKILL.md +0 -430
  202. package/pipeline/skills/figma-common/performance-swiftui/SKILL.md +0 -706
  203. package/pipeline/skills/figma-common/performance-tour/SKILL.md +0 -423
  204. package/pipeline/skills/figma-ios/REVIEW_CHECKLIST.md +0 -67
  205. package/pipeline/skills/figma-ios/figma-component-code-connect/SKILL.md +0 -178
  206. package/pipeline/skills/figma-ios/figma-component-implement/SKILL.md +0 -184
  207. package/pipeline/skills/figma-ios/figma-component-test/SKILL.md +0 -219
  208. package/pipeline/skills/figma-ios/figma-component-wiki/SKILL.md +0 -274
  209. package/pipeline/skills/figma-ios/figma-to-component/SKILL.md +0 -416
  210. package/pipeline/skills/figma-ios/figma-to-component/halt-return-protocol.md +0 -57
  211. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-0-init.md +0 -307
  212. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-1-gathering.md +0 -119
  213. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-1.5-existing-discovery.md +0 -174
  214. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-2-orchestrator.md +0 -333
  215. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-2a-testing-identifiers.md +0 -368
  216. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-2b-localization.md +0 -393
  217. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-2c-accessibility.md +0 -617
  218. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-2d-analytics.md +0 -352
  219. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-3-orchestrator.md +0 -337
  220. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-3a-location.md +0 -206
  221. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-3b-tokens.md +0 -235
  222. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-3c-nested.md +0 -214
  223. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-3d-patterns.md +0 -902
  224. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-3e-assets.md +0 -156
  225. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-3f-utilities.md +0 -175
  226. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-3g-property-coverage.md +0 -176
  227. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-3h-variant-config.md +0 -333
  228. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-4-orchestrator.md +0 -412
  229. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-4a-configuration.md +0 -336
  230. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-4b-view.md +0 -705
  231. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-4c-documentation.md +0 -332
  232. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-4d-preview.md +0 -380
  233. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-4e-modifiers.md +0 -262
  234. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-5-orchestrator.md +0 -482
  235. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-5a-viewinspector.md +0 -274
  236. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-5b-snapshot.md +0 -636
  237. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-5c-unit.md +0 -142
  238. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-6-code-connect.md +0 -547
  239. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-7-wiki.md +0 -39
  240. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-7a-confluence-generate.md +0 -659
  241. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-7a-wiki-generate.md +0 -580
  242. package/pipeline/skills/figma-ios/figma-to-component/phases/phase-8-cleanup.md +0 -51
  243. package/pipeline/skills/figma-ios/figma-to-component/reference/accessibility.md +0 -183
  244. package/pipeline/skills/figma-ios/figma-to-component/reference/analytics-events.md +0 -64
  245. package/pipeline/skills/figma-ios/figma-to-component/reference/code-connect.md +0 -531
  246. package/pipeline/skills/figma-ios/figma-to-component/reference/confluence-api.md +0 -89
  247. package/pipeline/skills/figma-ios/figma-to-component/reference/confluence-xhtml.md +0 -155
  248. package/pipeline/skills/figma-ios/figma-to-component/reference/figma-to-swiftui-effects.md +0 -196
  249. package/pipeline/skills/figma-ios/figma-to-component/reference/halt-return-protocol.md +0 -57
  250. package/pipeline/skills/figma-ios/figma-to-component/reference/localization-naming.md +0 -89
  251. package/pipeline/skills/figma-ios/figma-to-component/reference/macros.md +0 -227
  252. package/pipeline/skills/figma-ios/figma-to-component/reference/missing-tokens.md +0 -157
  253. package/pipeline/skills/figma-ios/figma-to-component/reference/orchestrator-discipline.md +0 -90
  254. package/pipeline/skills/figma-ios/figma-to-component/reference/registry.md +0 -116
  255. package/pipeline/skills/figma-ios/figma-to-component/reference/remote-mcp-script.md +0 -153
  256. package/pipeline/skills/figma-ios/figma-to-component/reference/rest-api-script.md +0 -130
  257. package/pipeline/skills/figma-ios/figma-to-component/reference/scripts-inventory.md +0 -218
  258. package/pipeline/skills/figma-ios/figma-to-component/reference/snapshot-testing.md +0 -188
  259. package/pipeline/skills/figma-ios/figma-to-component/reference/subcomponent-graph.md +0 -93
  260. package/pipeline/skills/figma-ios/figma-to-component/reference/testing-identifiers-naming.md +0 -98
  261. package/pipeline/skills/figma-ios/figma-to-component/reference/tools.md +0 -261
  262. package/pipeline/skills/figma-ios/figma-to-component/reference/viewinspector.md +0 -147
  263. package/pipeline/skills/figma-ios/figma-to-component/reference/wiki-to-confluence-mapping.md +0 -182
  264. package/pipeline/skills/figma-ios/figma-to-component/scripts/apply-author-login-map.py +0 -185
  265. package/pipeline/skills/figma-ios/figma-to-component/scripts/backfill-status.py +0 -609
  266. package/pipeline/skills/figma-ios/figma-to-component/scripts/build-author-registry.py +0 -332
  267. package/pipeline/skills/figma-ios/figma-to-component/scripts/bulk-sync-issues.py +0 -261
  268. package/pipeline/skills/figma-ios/figma-to-component/scripts/code-connect-data-gather.py +0 -184
  269. package/pipeline/skills/figma-ios/figma-to-component/scripts/code-connect-publish.sh +0 -188
  270. package/pipeline/skills/figma-ios/figma-to-component/scripts/confluence-component-status-upload.py +0 -768
  271. package/pipeline/skills/figma-ios/figma-to-component/scripts/confluence-component-status.py +0 -191
  272. package/pipeline/skills/figma-ios/figma-to-component/scripts/confluence-data-gather.py +0 -420
  273. package/pipeline/skills/figma-ios/figma-to-component/scripts/confluence-page-ids.example.json +0 -9
  274. package/pipeline/skills/figma-ios/figma-to-component/scripts/confluence-publish.py +0 -336
  275. package/pipeline/skills/figma-ios/figma-to-component/scripts/figma-subcomponent-graph.py +0 -391
  276. package/pipeline/skills/figma-ios/figma-to-component/scripts/figma-update.py +0 -292
  277. package/pipeline/skills/figma-ios/figma-to-component/scripts/lib/__init__.py +0 -1
  278. package/pipeline/skills/figma-ios/figma-to-component/scripts/lib/issue_sync_propagate.py +0 -93
  279. package/pipeline/skills/figma-ios/figma-to-component/scripts/lib/registry_writer.py +0 -299
  280. package/pipeline/skills/figma-ios/figma-to-component/scripts/lib/test_backfill_status.py +0 -343
  281. package/pipeline/skills/figma-ios/figma-to-component/scripts/lib/test_figma_update.py +0 -206
  282. package/pipeline/skills/figma-ios/figma-to-component/scripts/lib/test_figma_update_http.py +0 -149
  283. package/pipeline/skills/figma-ios/figma-to-component/scripts/lib/test_phase_clis.py +0 -281
  284. package/pipeline/skills/figma-ios/figma-to-component/scripts/lib/test_registry_writer.py +0 -332
  285. package/pipeline/skills/figma-ios/figma-to-component/scripts/lib/test_skill_figma_issue.py +0 -176
  286. package/pipeline/skills/figma-ios/figma-to-component/scripts/lib/test_skill_figma_review.py +0 -98
  287. package/pipeline/skills/figma-ios/figma-to-component/scripts/lib/test_update_issue.py +0 -298
  288. package/pipeline/skills/figma-ios/figma-to-component/scripts/lib/test_update_issue_gh.py +0 -195
  289. package/pipeline/skills/figma-ios/figma-to-component/scripts/phase1-gather.py +0 -1298
  290. package/pipeline/skills/figma-ios/figma-to-component/scripts/phase2-finalize.py +0 -228
  291. package/pipeline/skills/figma-ios/figma-to-component/scripts/phase3-scripts.py +0 -1089
  292. package/pipeline/skills/figma-ios/figma-to-component/scripts/phase4-finalize.py +0 -141
  293. package/pipeline/skills/figma-ios/figma-to-component/scripts/phase5-finalize.py +0 -106
  294. package/pipeline/skills/figma-ios/figma-to-component/scripts/phase6-finalize.py +0 -162
  295. package/pipeline/skills/figma-ios/figma-to-component/scripts/phase7-finalize.py +0 -105
  296. package/pipeline/skills/figma-ios/figma-to-component/scripts/register-icons-codeconnect.py +0 -179
  297. package/pipeline/skills/figma-ios/figma-to-component/scripts/remote-mcp-fetch.py +0 -260
  298. package/pipeline/skills/figma-ios/figma-to-component/scripts/resolve-author-logins.py +0 -260
  299. package/pipeline/skills/figma-ios/figma-to-component/scripts/run-uicomponents-tests.sh +0 -86
  300. package/pipeline/skills/figma-ios/figma-to-component/scripts/sidebar-generator.py +0 -321
  301. package/pipeline/skills/figma-ios/figma-to-component/scripts/update-issue-from-registry.py +0 -1470
  302. package/pipeline/skills/figma-ios/figma-to-component/scripts/validate-phase4.sh +0 -176
  303. package/pipeline/skills/figma-ios/figma-to-component/scripts/validate-phase6.sh +0 -147
  304. package/pipeline/skills/figma-ios/figma-to-component/scripts/validate-phase7a.py +0 -629
  305. /package/pipeline/commands/multi-agent/{delete.md → delete/SKILL.md} +0 -0
  306. /package/pipeline/commands/multi-agent/{diff-explain.md → diff-explain/SKILL.md} +0 -0
  307. /package/pipeline/commands/multi-agent/{garbage-collect.md → garbage-collect/SKILL.md} +0 -0
  308. /package/pipeline/commands/multi-agent/{issue.md → issue/SKILL.md} +0 -0
  309. /package/pipeline/commands/multi-agent/{jira.md → jira/SKILL.md} +0 -0
  310. /package/pipeline/commands/multi-agent/{kill.md → kill/SKILL.md} +0 -0
  311. /package/pipeline/commands/multi-agent/{language.md → language/SKILL.md} +0 -0
  312. /package/pipeline/commands/multi-agent/{log.md → log/SKILL.md} +0 -0
  313. /package/pipeline/commands/multi-agent/{prune-logs.md → prune-logs/SKILL.md} +0 -0
  314. /package/pipeline/commands/multi-agent/{purge.md → purge/SKILL.md} +0 -0
  315. /package/pipeline/commands/multi-agent/{scan.md → scan/SKILL.md} +0 -0
  316. /package/pipeline/commands/multi-agent/{search.md → search/SKILL.md} +0 -0
  317. /package/pipeline/commands/multi-agent/{stack.md → stack/SKILL.md} +0 -0
  318. /package/pipeline/commands/multi-agent/{status.md → status/SKILL.md} +0 -0
  319. /package/pipeline/commands/multi-agent/{test.md → test/SKILL.md} +0 -0
  320. /package/pipeline/commands/multi-agent/{update.md → update/SKILL.md} +0 -0
  321. /package/pipeline/{commands/multi-agent → multi-agent-refs}/_input-parser.md +0 -0
  322. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/analysis-template.md +0 -0
  323. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/audit-guide.md +0 -0
  324. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/backend-guide.md +0 -0
  325. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/channels/confluence.md +0 -0
  326. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/channels/issue-comment.md +0 -0
  327. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/channels/pr-review-actions.md +0 -0
  328. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/channels/pr.md +0 -0
  329. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/conventions-defaults.md +0 -0
  330. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/features/autopilot-circuit-breaker.md +0 -0
  331. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/features/dev-critic.md +0 -0
  332. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/features/external-context-injection.md +0 -0
  333. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/features/model-fallback.md +0 -0
  334. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/features/plan-todos.md +0 -0
  335. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/features/prior-fix-detection.md +0 -0
  336. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/features/repo-map.md +0 -0
  337. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/features/shadow-git.md +0 -0
  338. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/frontend-guide.md +0 -0
  339. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/knowledge.md +0 -0
  340. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/multi-repo-integration-build.md +0 -0
  341. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/picker-contract.md +0 -0
  342. /package/pipeline/{commands/multi-agent/refs → multi-agent-refs}/rules.md +0 -0
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schemaVersion": "1.0.0",
3
- "generatedAt": "2026-07-07T15:10:40.029Z",
4
- "skillCount": 226,
3
+ "generatedAt": "2026-07-09T19:01:45.304Z",
4
+ "skillCount": 187,
5
5
  "entries": [
6
6
  {
7
7
  "name": "accessibility-compliance-accessibility-audit",
@@ -201,6 +201,15 @@
201
201
  "triggerPaths": [],
202
202
  "relativePath": "shared/external/background-processing/SKILL.md"
203
203
  },
204
+ {
205
+ "name": "backlog",
206
+ "description": "The engineering backlog registry for deferred-but-approved work in this codebase. Every job the user defers ('defer it', 'add it to the list', 'later', 'not now') lands HERE with its full spec, origin, and unblock condition, so deferral never means loss. Load when the user defers work, asks 'what's ",
207
+ "platform": null,
208
+ "group": "external",
209
+ "triggerKeywords": [],
210
+ "triggerPaths": [],
211
+ "relativePath": "shared/external/backlog/SKILL.md"
212
+ },
204
213
  {
205
214
  "name": "callkit-voip",
206
215
  "description": "Implement VoIP calling with CallKit and PushKit. Use when building incoming/outgoing call flows, registering for VoIP push notifications, configuring CXProvider and CXCallController, handling call actions, coordinating audio sessions, or creating Call Directory extensions for caller ID and call bloc",
@@ -435,330 +444,6 @@
435
444
  "triggerPaths": [],
436
445
  "relativePath": "shared/external/fastapi-pro/SKILL.md"
437
446
  },
438
- {
439
- "name": "figma-bottom-sheets",
440
- "description": "Bottom-sheet / detent pattern integration for Figma-to-UI components (iOS SwiftUI + Android Jetpack Compose) — half-sheets, drawers, pinned bottom CTAs, resizable pull-up panels, content-sized sheets, and multi-step in-sheet flows. Native by default (SwiftUI .sheet+presentationDetents; Compose Modal",
441
- "platform": null,
442
- "group": "figma-common",
443
- "triggerKeywords": [],
444
- "triggerPaths": [],
445
- "relativePath": "figma-common/figma-bottom-sheets/SKILL.md"
446
- },
447
- {
448
- "name": "figma-cli-iterate",
449
- "description": "Runs the complete Figma-to-SwiftUI pipeline for one or more issues: pick → start → implement (phases 0-7) → commit. Returns a structured `ORCHESTRATOR_RESULT` block that the CLI orchestrator can parse.",
450
- "platform": null,
451
- "group": "figma-common",
452
- "triggerKeywords": [],
453
- "triggerPaths": [],
454
- "relativePath": "figma-common/figma-cli-iterate/SKILL.md"
455
- },
456
- {
457
- "name": "figma-cli-iterate-mend",
458
- "description": "Runs the complete Figma-to-SwiftUI mend pipeline for a single issue whose component already exists under `Discarded/` and must be re-implemented from scratch: pick → start → pre-flight (locate + catalog old files) →.",
459
- "platform": null,
460
- "group": "figma-common",
461
- "triggerKeywords": [],
462
- "triggerPaths": [],
463
- "relativePath": "figma-common/figma-cli-iterate-mend/SKILL.md"
464
- },
465
- {
466
- "name": "figma-cli-lean-iterate",
467
- "description": "Runs a lean Figma-to-SwiftUI pipeline for one or more issues: pick → start → implement (phases 0-4) → code connect (phase 6) → commit. Skips testing (phase 5) and wiki (phase 7).",
468
- "platform": null,
469
- "group": "figma-common",
470
- "triggerKeywords": [],
471
- "triggerPaths": [],
472
- "relativePath": "figma-common/figma-cli-lean-iterate/SKILL.md"
473
- },
474
- {
475
- "name": "figma-cli-skip",
476
- "description": "CLI variant of /figma-skip - fetches origin iteration/develop on mobile-common, marks a Figma component as skipped in the registry, commits, pushes, and returns a structured ORCHESTRATOR_RESULT block for the CLI.",
477
- "platform": null,
478
- "group": "figma-common",
479
- "triggerKeywords": [],
480
- "triggerPaths": [],
481
- "relativePath": "figma-common/figma-cli-skip/SKILL.md"
482
- },
483
- {
484
- "name": "figma-commit",
485
- "description": "Reviews a Figma component implementation, then creates feature branches across submodules, commits, pushes, and opens PRs. Delegates mobile-common conflict resolution to `COMMON_REBASE.md`.",
486
- "platform": null,
487
- "group": "figma-common",
488
- "triggerKeywords": [],
489
- "triggerPaths": [],
490
- "relativePath": "figma-common/figma-commit/SKILL.md"
491
- },
492
- {
493
- "name": "figma-component-code-connect",
494
- "description": "Generate Code Connect for Compose mappings - {Name}.figma.kt registers the composable with Figma's Code Connect so designers see live code snippets for each variant. Android peer to pipeline/skills/figma-ios/figma-component-code-connect.",
495
- "platform": "android",
496
- "group": "figma-android",
497
- "triggerKeywords": [],
498
- "triggerPaths": [],
499
- "relativePath": "figma-android/figma-component-code-connect/SKILL.md"
500
- },
501
- {
502
- "name": "figma-component-code-connect",
503
- "description": "Figma Code Connect mapping publisher for implemented SwiftUI components. Creates + publishes .figma.swift registration for a component already built via Phase 4 codegen. Runs standalone (reads source files + fetches Figma property data) or as a Phase 3.6 continuation. iOS platform peer - Android e",
504
- "platform": "ios",
505
- "group": "figma-ios",
506
- "triggerKeywords": [],
507
- "triggerPaths": [],
508
- "relativePath": "figma-ios/figma-component-code-connect/SKILL.md"
509
- },
510
- {
511
- "name": "figma-component-confluence-sync",
512
- "description": "Syncs component documentation from the GitHub Wiki (source of truth) to Confluence. Reads wiki markdown, converts to Confluence XHTML, uploads pages and assets. Requires VPN.",
513
- "platform": null,
514
- "group": "figma-common",
515
- "triggerKeywords": [],
516
- "triggerPaths": [],
517
- "relativePath": "figma-common/figma-component-confluence-sync/SKILL.md"
518
- },
519
- {
520
- "name": "figma-component-implement",
521
- "description": "Generate a Jetpack Compose component (Configuration data class + Composable + Modifier extensions + Preview + README) from gathered Figma data. Android peer to pipeline/skills/figma-ios/figma-component-implement.",
522
- "platform": "android",
523
- "group": "figma-android",
524
- "triggerKeywords": [],
525
- "triggerPaths": [],
526
- "relativePath": "figma-android/figma-component-implement/SKILL.md"
527
- },
528
- {
529
- "name": "figma-component-implement",
530
- "description": "Figma → SwiftUI implementation for a single component. Runs Phases 0-4 of the figma-to-swiftui pipeline (init, data gathering, analysis, code generation) and produces a production-ready SwiftUI view. Excludes testing, Code Connect, and wiki - those are separate standalone skills. iOS platform peer",
531
- "platform": "ios",
532
- "group": "figma-ios",
533
- "triggerKeywords": [],
534
- "triggerPaths": [],
535
- "relativePath": "figma-ios/figma-component-implement/SKILL.md"
536
- },
537
- {
538
- "name": "figma-component-start",
539
- "description": "Reads a GitHub Issue, extracts component metadata, creates feature branches from `develop` (main repo) / `iteration/develop` (submodules), and checks them out locally. Prepares the workspace to begin implementation.",
540
- "platform": null,
541
- "group": "figma-common",
542
- "triggerKeywords": [],
543
- "triggerPaths": [],
544
- "relativePath": "figma-common/figma-component-start/SKILL.md"
545
- },
546
- {
547
- "name": "figma-component-status-update",
548
- "description": "Refreshes the global Component Implementation Status dashboard on Confluence.",
549
- "platform": null,
550
- "group": "figma-common",
551
- "triggerKeywords": [],
552
- "triggerPaths": [],
553
- "relativePath": "figma-common/figma-component-status-update/SKILL.md"
554
- },
555
- {
556
- "name": "figma-component-test",
557
- "description": "Generate Compose Testing + Paparazzi/Roborazzi snapshot + unit tests for a Jetpack Compose component. Android peer to pipeline/skills/figma-ios/figma-component-test.",
558
- "platform": "android",
559
- "group": "figma-android",
560
- "triggerKeywords": [],
561
- "triggerPaths": [],
562
- "relativePath": "figma-android/figma-component-test/SKILL.md"
563
- },
564
- {
565
- "name": "figma-component-test",
566
- "description": "Test generator + runner for implemented SwiftUI Figma components. Produces ViewInspector structural tests, snapshot tests, and XCTest unit tests for a component already built via Phase 4 codegen. Runs standalone (reads source files) or as a Phase 3.5 continuation. iOS platform peer - Android equiv",
567
- "platform": "ios",
568
- "group": "figma-ios",
569
- "triggerKeywords": [],
570
- "triggerPaths": [],
571
- "relativePath": "figma-ios/figma-component-test/SKILL.md"
572
- },
573
- {
574
- "name": "figma-component-wiki",
575
- "description": "Component wiki generation for Android. Dispatches to the same 4-mode adapter set as the iOS peer (submodule / in-repo / github-wiki / separate-repo). Body rendering reads the Kotlin composable + sibling README.md instead of Swift + FIGMA.md.",
576
- "platform": "android",
577
- "group": "figma-android",
578
- "triggerKeywords": [],
579
- "triggerPaths": [],
580
- "relativePath": "figma-android/figma-component-wiki/SKILL.md"
581
- },
582
- {
583
- "name": "figma-component-wiki",
584
- "description": "Generate component wiki documentation with a pluggable adapter. Reads component source + FIGMA.md, renders markdown, then delegates publication to the adapter selected by figmaConfig.wiki.mode (submodule | in-repo | github-wiki | separate-repo).",
585
- "platform": null,
586
- "group": "figma-ios",
587
- "triggerKeywords": [],
588
- "triggerPaths": [],
589
- "relativePath": "figma-ios/figma-component-wiki/SKILL.md"
590
- },
591
- {
592
- "name": "figma-evolve-component",
593
- "description": "On-demand reconcile-and-extend for an ALREADY-implemented UI component (iOS SwiftUI or Android Jetpack Compose). Heals drift from current Figma (stale variants/props/structure, design-token drift, a detached/overridden deviation) AND extends the component non-destructively to cover a need the design",
594
- "platform": null,
595
- "group": "figma-common",
596
- "triggerKeywords": [],
597
- "triggerPaths": [],
598
- "relativePath": "figma-common/figma-evolve-component/SKILL.md"
599
- },
600
- {
601
- "name": "figma-fix",
602
- "description": "Applies a targeted fix for a bug filed during component review (via `/figma-review`), re-runs affected pipeline phases, closes the bug sub-issue, and cleanly transitions the parent component back to In Review with a.",
603
- "platform": null,
604
- "group": "figma-common",
605
- "triggerKeywords": [],
606
- "triggerPaths": [],
607
- "relativePath": "figma-common/figma-fix/SKILL.md"
608
- },
609
- {
610
- "name": "figma-form-integration",
611
- "description": "Form pattern integration for Figma-to-SwiftUI components. Guides FormSection/FormField adoption - when a component embeds form-capable sub-components (Selectbox, Checkbox, Radio, TextboxTextarea, DatepickerSchedule, ButtonsInputStepper) this skill defines how to model them as FormField references ",
612
- "platform": null,
613
- "group": "figma-common",
614
- "triggerKeywords": [],
615
- "triggerPaths": [],
616
- "relativePath": "figma-common/figma-form-integration/SKILL.md"
617
- },
618
- {
619
- "name": "figma-issue",
620
- "description": "Creates and manages GitHub Issues for Figma component implementations.",
621
- "platform": null,
622
- "group": "figma-common",
623
- "triggerKeywords": [],
624
- "triggerPaths": [],
625
- "relativePath": "figma-common/figma-issue/SKILL.md"
626
- },
627
- {
628
- "name": "figma-iterate",
629
- "description": "Picks the next available component issue and runs the full pipeline end-to-end: start → implement → commit. Loops until no more issues are available or the user stops it.",
630
- "platform": null,
631
- "group": "figma-common",
632
- "triggerKeywords": [],
633
- "triggerPaths": [],
634
- "relativePath": "figma-common/figma-iterate/SKILL.md"
635
- },
636
- {
637
- "name": "figma-iteration-commit",
638
- "description": "NEVER create branches on the main repo (REPO_ROOT). Do not create `iteration/develop` or any other branch on the main repo. Do not commit to the main repo.",
639
- "platform": null,
640
- "group": "figma-common",
641
- "triggerKeywords": [],
642
- "triggerPaths": [],
643
- "relativePath": "figma-common/figma-iteration-commit/SKILL.md"
644
- },
645
- {
646
- "name": "figma-mend",
647
- "description": "Re-implements discarded components from scratch using the figma-to-swiftui workflow, preserving old implementation as complementary reference for animations, domain logic, and UI refinements. Cleans up old files after completion.",
648
- "platform": null,
649
- "group": "figma-common",
650
- "triggerKeywords": [],
651
- "triggerPaths": [],
652
- "relativePath": "figma-common/figma-mend/SKILL.md"
653
- },
654
- {
655
- "name": "figma-navigation",
656
- "description": "Navigation pattern integration for Figma-to-UI components (iOS SwiftUI + Android Jetpack Compose). Guides how a component reaches other screens, tabs, or deep links without coupling to a router — headless screens that emit a typed Output/event, native NavigationStack (iOS) / Navigation Compose (Andr",
657
- "platform": null,
658
- "group": "figma-common",
659
- "triggerKeywords": [],
660
- "triggerPaths": [],
661
- "relativePath": "figma-common/figma-navigation/SKILL.md"
662
- },
663
- {
664
- "name": "figma-overlays",
665
- "description": "Overlay pattern integration for Figma-to-UI components (iOS SwiftUI + Android Jetpack Compose) — toasts/snackbars, blocking loading HUDs, alert dialogs, and data-driven modal cards presented from anywhere without the component owning presentation. Native by default (SwiftUI .alert/.confirmationDialo",
666
- "platform": null,
667
- "group": "figma-common",
668
- "triggerKeywords": [],
669
- "triggerPaths": [],
670
- "relativePath": "figma-common/figma-overlays/SKILL.md"
671
- },
672
- {
673
- "name": "figma-price-integration",
674
- "description": "Price pattern integration for Figma-to-SwiftUI components. Guides PriceRepresentable protocol adoption when a component displays price data.",
675
- "platform": null,
676
- "group": "figma-common",
677
- "triggerKeywords": [],
678
- "triggerPaths": [],
679
- "relativePath": "figma-common/figma-price-integration/SKILL.md"
680
- },
681
- {
682
- "name": "figma-remote-mcp-auth",
683
- "description": "Runs Figma Remote MCP OAuth flow to obtain and store a token in macOS Keychain. Requires OAuth client credentials.",
684
- "platform": null,
685
- "group": "figma-common",
686
- "triggerKeywords": [],
687
- "triggerPaths": [],
688
- "relativePath": "figma-common/figma-remote-mcp-auth/SKILL.md"
689
- },
690
- {
691
- "name": "figma-review",
692
- "description": "Guided review session for a Figma component implementation. Resolves the component, finds or creates the GitHub issue, shows relevant code, and walks the reviewer through approve/bug/inspect actions.",
693
- "platform": null,
694
- "group": "figma-common",
695
- "triggerKeywords": [],
696
- "triggerPaths": [],
697
- "relativePath": "figma-common/figma-review/SKILL.md"
698
- },
699
- {
700
- "name": "figma-setup",
701
- "description": "One-time environment setup for Figma-to-SwiftUI workflow. Verifies MCP connectivity, API credentials, Code Connect CLI, and FigmaRegistryUtility.",
702
- "platform": null,
703
- "group": "figma-common",
704
- "triggerKeywords": [],
705
- "triggerPaths": [],
706
- "relativePath": "figma-common/figma-setup/SKILL.md"
707
- },
708
- {
709
- "name": "figma-skip",
710
- "description": "Marks a Figma component as skipped in the component registry and updates the Confluence status dashboard.",
711
- "platform": null,
712
- "group": "figma-common",
713
- "triggerKeywords": [],
714
- "triggerPaths": [],
715
- "relativePath": "figma-common/figma-skip/SKILL.md"
716
- },
717
- {
718
- "name": "figma-to-component",
719
- "description": "Figma-to-Compose component implementation workflow for Android. Takes a Figma URL and produces a production-ready Jetpack Compose component through the same 8-phase pipeline shape as the iOS peer - data gathering, analysis, code generation, testing, Code Connect, documentation.",
720
- "platform": "android",
721
- "group": "figma-android",
722
- "triggerKeywords": [],
723
- "triggerPaths": [],
724
- "relativePath": "figma-android/figma-to-component/SKILL.md"
725
- },
726
- {
727
- "name": "figma-to-component",
728
- "description": "Figma-to-SwiftUI component implementation workflow. Takes a Figma URL and produces a production-ready SwiftUI component through 8 phases - data gathering, analysis, code generation, testing, Code Connect, and documentation.",
729
- "platform": null,
730
- "group": "figma-ios",
731
- "triggerKeywords": [],
732
- "triggerPaths": [],
733
- "relativePath": "figma-ios/figma-to-component/SKILL.md"
734
- },
735
- {
736
- "name": "figma-ui-patterns",
737
- "description": "Index of reusable SwiftUI UI-pattern guides (carousels, scroll tricks, animations, shaped views like scallops, pagers, parallax, gestures). Complementary to figma-to-swiftui and to vibe-coding: when a component needs a known UI pattern, pull the matching sub-guide from this skill instead of re-deriv",
738
- "platform": null,
739
- "group": "figma-common",
740
- "triggerKeywords": [],
741
- "triggerPaths": [],
742
- "relativePath": "figma-common/figma-ui-patterns/SKILL.md"
743
- },
744
- {
745
- "name": "figma-utility",
746
- "description": "On-demand Figma data utility. Fetch screenshots, metadata, properties, tokens, design context, Code Connect mappings, node data, component lists, styles, file summaries, and auth status from Figma via REST API and MCP.",
747
- "platform": null,
748
- "group": "figma-common",
749
- "triggerKeywords": [],
750
- "triggerPaths": [],
751
- "relativePath": "figma-common/figma-utility/SKILL.md"
752
- },
753
- {
754
- "name": "figma-validate",
755
- "description": "Pre-implementation validation for Figma components. Checks 7 criteria: (1) Registry presence, (2) Code Connect strategy, (3) Design token compliance, (4) Dependency readiness, (5) Atomic scope, (6) iOS applicability, (7) Already-implemented check. Plus Implementation Intel: complexity score, text no",
756
- "platform": null,
757
- "group": "figma-common",
758
- "triggerKeywords": [],
759
- "triggerPaths": [],
760
- "relativePath": "figma-common/figma-validate/SKILL.md"
761
- },
762
447
  {
763
448
  "name": "firebase",
764
449
  "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.",
@@ -1355,7 +1040,7 @@
1355
1040
  },
1356
1041
  {
1357
1042
  "name": "multi-agent-sync",
1358
- "description": "One-shot sync of the entire multi-agent ecosystem: Claude Code, Copilot CLI, pipeline repo, website, and remote-control.",
1043
+ "description": "One-shot sync of the entire multi-agent ecosystem: Claude Code, Copilot CLI, pipeline repo, and website.",
1359
1044
  "platform": null,
1360
1045
  "group": "core",
1361
1046
  "triggerKeywords": [],
@@ -1452,51 +1137,6 @@
1452
1137
  "triggerPaths": [],
1453
1138
  "relativePath": "shared/external/pencilkit-drawing/SKILL.md"
1454
1139
  },
1455
- {
1456
- "name": "performance-iteration-commit-all",
1457
- "description": "Reads `_tour_tracker.json`, validates all reviewed components in a single build+test cycle, pushes all local commits in a single push per submodule, then handles issue.",
1458
- "platform": null,
1459
- "group": "figma-common",
1460
- "triggerKeywords": [],
1461
- "triggerPaths": [],
1462
- "relativePath": "figma-common/performance-iteration-commit-all/SKILL.md"
1463
- },
1464
- {
1465
- "name": "performance-review-next",
1466
- "description": "Reads `_tour_tracker.json`, presents a dashboard of produced components, and guides the user through reviewing each one. Fix commits are separate. Halted components can be retried or dropped.",
1467
- "platform": null,
1468
- "group": "figma-common",
1469
- "triggerKeywords": [],
1470
- "triggerPaths": [],
1471
- "relativePath": "figma-common/performance-review-next/SKILL.md"
1472
- },
1473
- {
1474
- "name": "performance-start",
1475
- "description": "Identical to `/figma-to-swift-ui-start` for Steps 0-5. After printing the summary (Step 6), automatically invokes `/performance-swiftui <figma-url>` to begin the implementation pipeline.",
1476
- "platform": null,
1477
- "group": "figma-common",
1478
- "triggerKeywords": [],
1479
- "triggerPaths": [],
1480
- "relativePath": "figma-common/performance-start/SKILL.md"
1481
- },
1482
- {
1483
- "name": "performance-swiftui",
1484
- "description": "Performance-optimized Figma-to-SwiftUI workflow. Same phases as figma-to-swiftui but with model downgrades on deterministic phases, parallel Phase 6+7 execution, combined test execution, and disk-persisted elapsed time tracking. Supports --lean flag to skip testing (Phase 5) and wiki (Phase 7).",
1485
- "platform": null,
1486
- "group": "figma-common",
1487
- "triggerKeywords": [],
1488
- "triggerPaths": [],
1489
- "relativePath": "figma-common/performance-swiftui/SKILL.md"
1490
- },
1491
- {
1492
- "name": "performance-tour",
1493
- "description": "Produces multiple Figma components in a single session. Validates dependencies, determines implementation order, produces each component sequentially with clean subagent contexts, then hands off to review and batch.",
1494
- "platform": null,
1495
- "group": "figma-common",
1496
- "triggerKeywords": [],
1497
- "triggerPaths": [],
1498
- "relativePath": "figma-common/performance-tour/SKILL.md"
1499
- },
1500
1140
  {
1501
1141
  "name": "permissionkit",
1502
1142
  "description": "Create child communication safety experiences using PermissionKit to request parental permission for children. Use when building apps that involve child-to-contact communication, need to check communication limits, request parent/guardian approval, or handle permission responses for minors.",
@@ -1605,6 +1245,15 @@
1605
1245
  "triggerPaths": [],
1606
1246
  "relativePath": "shared/external/shareplay-activities/SKILL.md"
1607
1247
  },
1248
+ {
1249
+ "name": "skill-creator",
1250
+ "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",
1251
+ "platform": null,
1252
+ "group": "external",
1253
+ "triggerKeywords": [],
1254
+ "triggerPaths": [],
1255
+ "relativePath": "shared/external/skill-creator/SKILL.md"
1256
+ },
1608
1257
  {
1609
1258
  "name": "speech-recognition",
1610
1259
  "description": "Transcribe speech to text using Apple's Speech framework. Use when implementing live microphone transcription with AVAudioEngine, recognizing recorded audio files, handling speech and microphone authorization, choosing on-device vs server-backed SFSpeechRecognizer behavior, or adopting SpeechAnalyze",
@@ -59,7 +59,7 @@ Source layout is logical grouping only - skill discovery at runtime is unchang
59
59
  | [`multi-agent-setup`](./core/multi-agent-setup/) | `core` | First-run setup wizard: keychain token discovery, Git Identity onboarding, and pipeline preparation. |
60
60
  | [`multi-agent-stack`](./core/multi-agent-stack/) | `core` | Manually switch the active skill set by platform (ios/android/mobile/backend/frontend/fullstack/all). |
61
61
  | [`multi-agent-status`](./core/multi-agent-status/) | `core` | Show every multi-agent task's ID, phase, branch, and status. |
62
- | [`multi-agent-sync`](./core/multi-agent-sync/) | `core` | One-shot sync of the entire multi-agent ecosystem: Claude Code, Copilot CLI, pipeline repo, website, and remote-control. |
62
+ | [`multi-agent-sync`](./core/multi-agent-sync/) | `core` | One-shot sync of the entire multi-agent ecosystem: Claude Code, Copilot CLI, pipeline repo, and website. |
63
63
  | [`multi-agent-test`](./core/multi-agent-test/) | `core` | UI Bug Hunter - iOS Simulator (simctl) + Android Emulator (adb). Auto-detects platform. Screenshot + tap + analyze on the booted device. T |
64
64
  | [`multi-agent-update`](./core/multi-agent-update/) | `core` | Update the pipeline to the latest version: git pull, install, migrate. |
65
65
 
@@ -465,7 +465,7 @@ Lets the user physically test the code before opening a PR. The prompt MUST make
465
465
 
466
466
  To test:
467
467
  • SourceTree → check the commits and diff
468
- • Xcode → open THY.xcworkspace → Cmd+B → Cmd+U
468
+ • Xcode → open the app's `.xcworkspace` → Cmd+B → Cmd+U
469
469
  • Manual test on the Simulator
470
470
 
471
471
  ✅ "tamam" → proceeds to Phase 6
@@ -43,8 +43,8 @@ When the rendered Section 20 (Risks and Open Questions) has open rows, the repor
43
43
 
44
44
  ## Detailed implementation
45
45
 
46
- Full steps: `pipeline/commands/multi-agent/analysis.md`.
47
- Template master copy: `pipeline/commands/multi-agent/refs/analysis-template.md`.
46
+ Full steps: `pipeline/commands/multi-agent/analysis/SKILL.md`.
47
+ Template master copy: `pipeline/multi-agent-refs/analysis-template.md`.
48
48
  Schema: `pipeline/schemas/analysis-spec.schema.json`.
49
49
  Convention extractor: `pipeline/lib/extract-conventions.sh` (output contract: `pipeline/schemas/conventions-output.schema.json`).
50
50
 
@@ -36,9 +36,9 @@ Companion to `multi-agent-analysis`. Walks the open rows of Section 20 (Risks an
36
36
 
37
37
  ## Detailed implementation
38
38
 
39
- Full steps: `pipeline/commands/multi-agent/analysis-resolve.md`.
40
- Section 20 / changelog contracts: `pipeline/commands/multi-agent/refs/analysis-template.md`.
41
- Convention defaults: `pipeline/commands/multi-agent/refs/conventions-defaults.md`.
39
+ Full steps: `pipeline/commands/multi-agent/analysis-resolve/SKILL.md`.
40
+ Section 20 / changelog contracts: `pipeline/multi-agent-refs/analysis-template.md`.
41
+ Convention defaults: `pipeline/multi-agent-refs/conventions-defaults.md`.
42
42
 
43
43
  ## Notes
44
44
 
@@ -38,7 +38,7 @@ Thin wrapper around the vendored `xcode-build-orchestrator` skill so iOS users d
38
38
 
39
39
  ## Detailed implementation
40
40
 
41
- Full steps: `pipeline/commands/multi-agent/build-optimize.md`.
41
+ Full steps: `pipeline/commands/multi-agent/build-optimize/SKILL.md`.
42
42
  Upstream attribution: `pipeline/skills/shared/external/NOTICE-xcode-build-skills.md`.
43
43
 
44
44
  ## Notes
@@ -15,7 +15,7 @@ argument-hint: '<Jira-id | PR-url | #N | Jira-url> [--channels pr,jira,confluenc
15
15
  **Copilot CLI invocation:** `multi-agent-channels <target>` (top-level skill, dash-separated per Copilot no-namespace convention).
16
16
  **Claude Code equivalent:** `/multi-agent:channels <target>` (slash namespace).
17
17
 
18
- Both CLIs read the same underlying logic - see `~/.claude/commands/multi-agent/channels.md` (Claude) or this file (Copilot). Prompts MUST be byte-identical; `smoke-cross-cli-behavior.sh` asserts parity.
18
+ Both CLIs read the same underlying logic - see `~/.claude/commands/multi-agent/channels/SKILL.md` (Claude) or this file (Copilot). Prompts MUST be byte-identical; `smoke-cross-cli-behavior.sh` asserts parity.
19
19
 
20
20
  ## Input
21
21
 
@@ -44,4 +44,4 @@ multi-agent finish autopilot # no gate prompts: auto-fix, auto-PR, auto-c
44
44
 
45
45
  - Build+Test is the automated success gate (not the interactive device user-test - that is `multi-agent:manual-test`). If the repo has no tests, it reports "no tests present" - never fabricates results.
46
46
  - Commit/PR follows house rules: conventional message, `Ref: #N` (never Closes/Fixes), NO AI/bot attribution. PR opened only if one does not already exist.
47
- - Full phase contract lives in the Claude Code command `commands/multi-agent/finish.md`; this skill is the Copilot-CLI counterpart.
47
+ - Full phase contract lives in the Claude Code command `commands/multi-agent/finish/SKILL.md`; this skill is the Copilot-CLI counterpart.
@@ -99,7 +99,7 @@ Utility Commands (dash form on Copilot, colon form on Claude Code):
99
99
  /multi-agent:channels Post multi-channel report (Jira/Confluence/Wiki/PR)
100
100
  /multi-agent:review Review current diff only
101
101
  /multi-agent:generate ["desc"] [figma-url] [swagger-url] Create a Jira Task/Bug/Story matching team conventions (asks type + preview + approval)
102
- /multi-agent:sync Sync ecosystem (Claude + Copilot + website + remote-control)
102
+ /multi-agent:sync Sync ecosystem (Claude + Copilot + website)
103
103
  /multi-agent:setup Keychain tokens + Git identity + language onboarding
104
104
  /multi-agent:language [en|tr] Show or set prompt language
105
105