claudecode-omc 5.6.7 → 5.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (242) hide show
  1. package/.local/skills/THIRD_PARTY_LICENSES/AvdLee-SwiftUI-Agent-Skill.LICENSE +21 -0
  2. package/.local/skills/THIRD_PARTY_LICENSES/Dimillian-Skills.LICENSE +21 -0
  3. package/.local/skills/THIRD_PARTY_LICENSES/README.md +36 -0
  4. package/.local/skills/THIRD_PARTY_LICENSES/twostraws-swiftui-agent-skill.LICENSE +21 -0
  5. package/.local/skills/ios-debugger-agent/SKILL.md +51 -0
  6. package/.local/skills/ios-debugger-agent/agents/openai.yaml +4 -0
  7. package/.local/skills/prompt-optimizer/SKILL.md +262 -19
  8. package/.local/skills/swift-concurrency-expert/SKILL.md +105 -0
  9. package/.local/skills/swift-concurrency-expert/agents/openai.yaml +4 -0
  10. package/.local/skills/swift-concurrency-expert/references/approachable-concurrency.md +63 -0
  11. package/.local/skills/swift-concurrency-expert/references/swift-6-2-concurrency.md +272 -0
  12. package/.local/skills/swift-concurrency-expert/references/swiftui-concurrency-tour-wwdc.md +33 -0
  13. package/.local/skills/swiftui-expert-skill/SKILL.md +162 -0
  14. package/.local/skills/swiftui-expert-skill/references/accessibility-patterns.md +215 -0
  15. package/.local/skills/swiftui-expert-skill/references/animation-advanced.md +403 -0
  16. package/.local/skills/swiftui-expert-skill/references/animation-basics.md +284 -0
  17. package/.local/skills/swiftui-expert-skill/references/animation-transitions.md +326 -0
  18. package/.local/skills/swiftui-expert-skill/references/charts-accessibility.md +135 -0
  19. package/.local/skills/swiftui-expert-skill/references/charts.md +602 -0
  20. package/.local/skills/swiftui-expert-skill/references/focus-patterns.md +299 -0
  21. package/.local/skills/swiftui-expert-skill/references/image-optimization.md +203 -0
  22. package/.local/skills/swiftui-expert-skill/references/latest-apis.md +488 -0
  23. package/.local/skills/swiftui-expert-skill/references/layout-best-practices.md +266 -0
  24. package/.local/skills/swiftui-expert-skill/references/liquid-glass.md +423 -0
  25. package/.local/skills/swiftui-expert-skill/references/list-patterns.md +446 -0
  26. package/.local/skills/swiftui-expert-skill/references/macos-scenes.md +318 -0
  27. package/.local/skills/swiftui-expert-skill/references/macos-views.md +357 -0
  28. package/.local/skills/swiftui-expert-skill/references/macos-window-styling.md +303 -0
  29. package/.local/skills/swiftui-expert-skill/references/performance-patterns.md +403 -0
  30. package/.local/skills/swiftui-expert-skill/references/scroll-patterns.md +293 -0
  31. package/.local/skills/swiftui-expert-skill/references/sheet-navigation-patterns.md +363 -0
  32. package/.local/skills/swiftui-expert-skill/references/state-management.md +388 -0
  33. package/.local/skills/swiftui-expert-skill/references/text-patterns.md +32 -0
  34. package/.local/skills/swiftui-expert-skill/references/trace-analysis.md +295 -0
  35. package/.local/skills/swiftui-expert-skill/references/trace-recording.md +134 -0
  36. package/.local/skills/swiftui-expert-skill/references/view-structure.md +780 -0
  37. package/.local/skills/swiftui-expert-skill/scripts/__pycache__/analyze_trace.cpython-313.pyc +0 -0
  38. package/.local/skills/swiftui-expert-skill/scripts/__pycache__/record_trace.cpython-313.pyc +0 -0
  39. package/.local/skills/swiftui-expert-skill/scripts/analyze_trace.py +301 -0
  40. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__init__.py +1 -0
  41. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/__init__.cpython-313.pyc +0 -0
  42. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/causes.cpython-313.pyc +0 -0
  43. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/correlate.cpython-313.pyc +0 -0
  44. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/events.cpython-313.pyc +0 -0
  45. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/hangs.cpython-313.pyc +0 -0
  46. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/hitches.cpython-313.pyc +0 -0
  47. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/summary.cpython-313.pyc +0 -0
  48. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/swiftui.cpython-313.pyc +0 -0
  49. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/time_profiler.cpython-313.pyc +0 -0
  50. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/xctrace.cpython-313.pyc +0 -0
  51. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/__pycache__/xml_utils.cpython-313.pyc +0 -0
  52. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/causes.py +187 -0
  53. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/correlate.py +179 -0
  54. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/events.py +291 -0
  55. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/hangs.py +108 -0
  56. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/hitches.py +145 -0
  57. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/summary.py +243 -0
  58. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/swiftui.py +195 -0
  59. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/time_profiler.py +135 -0
  60. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/xctrace.py +117 -0
  61. package/.local/skills/swiftui-expert-skill/scripts/instruments_parser/xml_utils.py +224 -0
  62. package/.local/skills/swiftui-expert-skill/scripts/record_trace.py +252 -0
  63. package/.local/skills/swiftui-liquid-glass/SKILL.md +90 -0
  64. package/.local/skills/swiftui-liquid-glass/agents/openai.yaml +4 -0
  65. package/.local/skills/swiftui-liquid-glass/references/liquid-glass.md +280 -0
  66. package/.local/skills/swiftui-performance-audit/SKILL.md +106 -0
  67. package/.local/skills/swiftui-performance-audit/agents/openai.yaml +4 -0
  68. package/.local/skills/swiftui-performance-audit/references/code-smells.md +150 -0
  69. package/.local/skills/swiftui-performance-audit/references/demystify-swiftui-performance-wwdc23.md +46 -0
  70. package/.local/skills/swiftui-performance-audit/references/optimizing-swiftui-performance-instruments.md +29 -0
  71. package/.local/skills/swiftui-performance-audit/references/profiling-intake.md +44 -0
  72. package/.local/skills/swiftui-performance-audit/references/report-template.md +47 -0
  73. package/.local/skills/swiftui-performance-audit/references/understanding-hangs-in-your-app.md +33 -0
  74. package/.local/skills/swiftui-performance-audit/references/understanding-improving-swiftui-performance.md +52 -0
  75. package/.local/skills/swiftui-pro/SKILL.md +108 -0
  76. package/.local/skills/swiftui-pro/agents/openai.yaml +10 -0
  77. package/.local/skills/swiftui-pro/assets/swiftui-pro-icon.png +0 -0
  78. package/.local/skills/swiftui-pro/assets/swiftui-pro-icon.svg +29 -0
  79. package/.local/skills/swiftui-pro/references/accessibility.md +13 -0
  80. package/.local/skills/swiftui-pro/references/api.md +39 -0
  81. package/.local/skills/swiftui-pro/references/data.md +43 -0
  82. package/.local/skills/swiftui-pro/references/design.md +32 -0
  83. package/.local/skills/swiftui-pro/references/hygiene.md +9 -0
  84. package/.local/skills/swiftui-pro/references/navigation.md +14 -0
  85. package/.local/skills/swiftui-pro/references/performance.md +46 -0
  86. package/.local/skills/swiftui-pro/references/swift.md +56 -0
  87. package/.local/skills/swiftui-pro/references/views.md +36 -0
  88. package/.local/skills/swiftui-ui-patterns/SKILL.md +95 -0
  89. package/.local/skills/swiftui-ui-patterns/agents/openai.yaml +4 -0
  90. package/.local/skills/swiftui-ui-patterns/references/app-wiring.md +201 -0
  91. package/.local/skills/swiftui-ui-patterns/references/async-state.md +96 -0
  92. package/.local/skills/swiftui-ui-patterns/references/components-index.md +50 -0
  93. package/.local/skills/swiftui-ui-patterns/references/controls.md +57 -0
  94. package/.local/skills/swiftui-ui-patterns/references/deeplinks.md +66 -0
  95. package/.local/skills/swiftui-ui-patterns/references/focus.md +90 -0
  96. package/.local/skills/swiftui-ui-patterns/references/form.md +97 -0
  97. package/.local/skills/swiftui-ui-patterns/references/grids.md +71 -0
  98. package/.local/skills/swiftui-ui-patterns/references/haptics.md +71 -0
  99. package/.local/skills/swiftui-ui-patterns/references/input-toolbar.md +51 -0
  100. package/.local/skills/swiftui-ui-patterns/references/lightweight-clients.md +93 -0
  101. package/.local/skills/swiftui-ui-patterns/references/list.md +86 -0
  102. package/.local/skills/swiftui-ui-patterns/references/loading-placeholders.md +38 -0
  103. package/.local/skills/swiftui-ui-patterns/references/macos-settings.md +71 -0
  104. package/.local/skills/swiftui-ui-patterns/references/matched-transitions.md +59 -0
  105. package/.local/skills/swiftui-ui-patterns/references/media.md +73 -0
  106. package/.local/skills/swiftui-ui-patterns/references/menu-bar.md +101 -0
  107. package/.local/skills/swiftui-ui-patterns/references/navigationstack.md +159 -0
  108. package/.local/skills/swiftui-ui-patterns/references/overlay.md +45 -0
  109. package/.local/skills/swiftui-ui-patterns/references/performance.md +62 -0
  110. package/.local/skills/swiftui-ui-patterns/references/previews.md +48 -0
  111. package/.local/skills/swiftui-ui-patterns/references/scroll-reveal.md +133 -0
  112. package/.local/skills/swiftui-ui-patterns/references/scrollview.md +87 -0
  113. package/.local/skills/swiftui-ui-patterns/references/searchable.md +71 -0
  114. package/.local/skills/swiftui-ui-patterns/references/sheets.md +155 -0
  115. package/.local/skills/swiftui-ui-patterns/references/split-views.md +72 -0
  116. package/.local/skills/swiftui-ui-patterns/references/tabview.md +114 -0
  117. package/.local/skills/swiftui-ui-patterns/references/theming.md +71 -0
  118. package/.local/skills/swiftui-ui-patterns/references/title-menus.md +93 -0
  119. package/.local/skills/swiftui-ui-patterns/references/top-bar.md +49 -0
  120. package/.local/skills/swiftui-view-refactor/SKILL.md +202 -0
  121. package/.local/skills/swiftui-view-refactor/agents/openai.yaml +4 -0
  122. package/.local/skills/swiftui-view-refactor/references/mv-patterns.md +161 -0
  123. package/.omc-curation/ecc-selection.json +80 -0
  124. package/.omc-curation/governance.json +113 -0
  125. package/.omc-curation/sources.lock.json +25 -0
  126. package/README.md +69 -4
  127. package/bundled/manifest.json +5 -5
  128. package/bundled/upstream/anthropic-skills/.omc-source/bundle.json +18 -0
  129. package/bundled/upstream/anthropic-skills/.omc-source/provenance.json +399 -0
  130. package/bundled/upstream/anthropic-skills/skills/claude-api/SKILL.md +18 -17
  131. package/bundled/upstream/anthropic-skills/skills/claude-api/curl/examples.md +9 -9
  132. package/bundled/upstream/anthropic-skills/skills/claude-api/curl/managed-agents.md +4 -4
  133. package/bundled/upstream/anthropic-skills/skills/claude-api/go/managed-agents/README.md +2 -2
  134. package/bundled/upstream/anthropic-skills/skills/claude-api/java/claude-api.md +2 -2
  135. package/bundled/upstream/anthropic-skills/skills/claude-api/java/managed-agents/README.md +2 -2
  136. package/bundled/upstream/anthropic-skills/skills/claude-api/php/claude-api.md +10 -10
  137. package/bundled/upstream/anthropic-skills/skills/claude-api/php/managed-agents/README.md +2 -2
  138. package/bundled/upstream/anthropic-skills/skills/claude-api/python/claude-api/README.md +16 -16
  139. package/bundled/upstream/anthropic-skills/skills/claude-api/python/claude-api/batches.md +3 -3
  140. package/bundled/upstream/anthropic-skills/skills/claude-api/python/claude-api/files-api.md +3 -3
  141. package/bundled/upstream/anthropic-skills/skills/claude-api/python/claude-api/streaming.md +7 -7
  142. package/bundled/upstream/anthropic-skills/skills/claude-api/python/claude-api/tool-use.md +19 -19
  143. package/bundled/upstream/anthropic-skills/skills/claude-api/python/managed-agents/README.md +3 -3
  144. package/bundled/upstream/anthropic-skills/skills/claude-api/ruby/claude-api.md +4 -4
  145. package/bundled/upstream/anthropic-skills/skills/claude-api/ruby/managed-agents/README.md +2 -2
  146. package/bundled/upstream/anthropic-skills/skills/claude-api/shared/error-codes.md +5 -5
  147. package/bundled/upstream/anthropic-skills/skills/claude-api/shared/live-sources.md +3 -1
  148. package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-api-reference.md +10 -4
  149. package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-core.md +19 -1
  150. package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-environments.md +6 -2
  151. package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-multiagent.md +1 -1
  152. package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-onboarding.md +3 -3
  153. package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-overview.md +3 -2
  154. package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-self-hosted-sandboxes.md +173 -0
  155. package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-tools.md +10 -4
  156. package/bundled/upstream/anthropic-skills/skills/claude-api/shared/model-migration.md +113 -13
  157. package/bundled/upstream/anthropic-skills/skills/claude-api/shared/models.md +14 -11
  158. package/bundled/upstream/anthropic-skills/skills/claude-api/shared/prompt-caching.md +2 -2
  159. package/bundled/upstream/anthropic-skills/skills/claude-api/shared/tool-use-concepts.md +4 -4
  160. package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/claude-api/README.md +15 -15
  161. package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/claude-api/batches.md +2 -2
  162. package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/claude-api/files-api.md +1 -1
  163. package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/claude-api/streaming.md +5 -5
  164. package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/claude-api/tool-use.md +15 -15
  165. package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/managed-agents/README.md +3 -3
  166. package/bundled/upstream/ecc/.omc-source/bundle.json +2 -1
  167. package/bundled/upstream/ecc/.omc-source/last-plan-apply.json +108 -24
  168. package/bundled/upstream/ecc/.omc-source/manifests/.claude-plugin/marketplace.json +3 -3
  169. package/bundled/upstream/ecc/.omc-source/provenance.json +563 -0
  170. package/bundled/upstream/ecc/agents/marketing-agent.md +159 -0
  171. package/bundled/upstream/ecc/agents/react-build-resolver.md +215 -0
  172. package/bundled/upstream/ecc/agents/react-reviewer.md +167 -0
  173. package/bundled/upstream/ecc/agents/typescript-reviewer.md +3 -0
  174. package/bundled/upstream/ecc/commands/harness-audit.md +17 -10
  175. package/bundled/upstream/ecc/commands/marketing-campaign.md +129 -0
  176. package/bundled/upstream/ecc/commands/react-build.md +187 -0
  177. package/bundled/upstream/ecc/commands/react-review.md +170 -0
  178. package/bundled/upstream/ecc/commands/react-test.md +265 -0
  179. package/bundled/upstream/ecc/skills/benchmark-optimization-loop/SKILL.md +69 -0
  180. package/bundled/upstream/ecc/skills/blender-motion-state-inspection/SKILL.md +164 -0
  181. package/bundled/upstream/ecc/skills/canary-watch/SKILL.md +9 -1
  182. package/bundled/upstream/ecc/skills/continuous-learning-v2/hooks/observe.sh +31 -9
  183. package/bundled/upstream/ecc/skills/continuous-learning-v2/scripts/detect-project.sh +38 -4
  184. package/bundled/upstream/ecc/skills/continuous-learning-v2/scripts/instinct-cli.py +319 -12
  185. package/bundled/upstream/ecc/skills/data-throughput-accelerator/SKILL.md +72 -0
  186. package/bundled/upstream/ecc/skills/dynamic-workflow-mode/SKILL.md +123 -0
  187. package/bundled/upstream/ecc/skills/frontend-a11y/SKILL.md +446 -0
  188. package/bundled/upstream/ecc/skills/ito-basket-compare/SKILL.md +63 -0
  189. package/bundled/upstream/ecc/skills/ito-data-atlas-agent/SKILL.md +63 -0
  190. package/bundled/upstream/ecc/skills/ito-market-intelligence/SKILL.md +60 -0
  191. package/bundled/upstream/ecc/skills/ito-trade-planner/SKILL.md +67 -0
  192. package/bundled/upstream/ecc/skills/latency-critical-systems/SKILL.md +73 -0
  193. package/bundled/upstream/ecc/skills/marketing-campaign/SKILL.md +113 -0
  194. package/bundled/upstream/ecc/skills/nextjs-turbopack/SKILL.md +13 -0
  195. package/bundled/upstream/ecc/skills/parallel-execution-optimizer/SKILL.md +72 -0
  196. package/bundled/upstream/ecc/skills/prediction-market-oracle-research/SKILL.md +63 -0
  197. package/bundled/upstream/ecc/skills/prediction-market-risk-review/SKILL.md +60 -0
  198. package/bundled/upstream/ecc/skills/react-patterns/SKILL.md +341 -0
  199. package/bundled/upstream/ecc/skills/react-performance/SKILL.md +574 -0
  200. package/bundled/upstream/ecc/skills/react-testing/SKILL.md +423 -0
  201. package/bundled/upstream/ecc/skills/recsys-pipeline-architect/SKILL.md +114 -0
  202. package/bundled/upstream/ecc/skills/recursive-decision-ledger/SKILL.md +79 -0
  203. package/bundled/upstream/ecc/skills/social-publisher/SKILL.md +115 -0
  204. package/bundled/upstream/ecc/skills/team-agent-orchestration/SKILL.md +110 -0
  205. package/bundled/upstream/ecc/skills/uncloud/SKILL.md +343 -0
  206. package/bundled/upstream/ecc/skills/windows-desktop-e2e/SKILL.md +99 -0
  207. package/bundled/upstream/oh-my-claudecode/.omc-source/bundle.json +2 -1
  208. package/bundled/upstream/oh-my-claudecode/.omc-source/provenance.json +116 -0
  209. package/bundled/upstream/oh-my-claudecode/skills/autopilot/SKILL.md +7 -0
  210. package/bundled/upstream/oh-my-claudecode/skills/cancel/SKILL.md +1 -0
  211. package/bundled/upstream/oh-my-claudecode/skills/deep-interview/SKILL.md +39 -5
  212. package/bundled/upstream/oh-my-claudecode/skills/hud/SKILL.md +1 -0
  213. package/bundled/upstream/oh-my-claudecode/skills/local-build-reminder/SKILL.md +78 -0
  214. package/bundled/upstream/oh-my-claudecode/skills/omc-doctor/SKILL.md +1 -1
  215. package/bundled/upstream/oh-my-claudecode/skills/omc-setup/SKILL.md +26 -10
  216. package/bundled/upstream/oh-my-claudecode/skills/omc-setup/phases/01-install-claude-md.md +3 -3
  217. package/bundled/upstream/oh-my-claudecode/skills/omc-setup/phases/02-configure.md +6 -4
  218. package/bundled/upstream/oh-my-claudecode/skills/omc-setup/phases/03-integrations.md +1 -1
  219. package/bundled/upstream/oh-my-claudecode/skills/omc-setup/phases/04-welcome.md +2 -2
  220. package/bundled/upstream/oh-my-claudecode/skills/omc-teams/SKILL.md +6 -6
  221. package/bundled/upstream/oh-my-claudecode/skills/plan/SKILL.md +44 -32
  222. package/bundled/upstream/oh-my-claudecode/skills/ralph/SKILL.md +45 -21
  223. package/bundled/upstream/oh-my-claudecode/skills/ralplan/SKILL.md +1 -1
  224. package/bundled/upstream/oh-my-claudecode/skills/self-improve/SKILL.md +7 -0
  225. package/bundled/upstream/oh-my-claudecode/skills/self-improve/scripts/resolve-paths.mjs +39 -15
  226. package/bundled/upstream/oh-my-claudecode/skills/team/SKILL.md +132 -90
  227. package/bundled/upstream/oh-my-claudecode/skills/ultragoal/SKILL.md +93 -0
  228. package/bundled/upstream/oh-my-claudecode/skills/ultraqa/SKILL.md +28 -13
  229. package/bundled/upstream/oh-my-claudecode/skills/ultrawork/SKILL.md +7 -0
  230. package/bundled/upstream/superpowers/.omc-source/bundle.json +2 -1
  231. package/bundled/upstream/superpowers/.omc-source/provenance.json +63 -0
  232. package/package.json +2 -1
  233. package/src/catalog/source-catalog.js +10 -4
  234. package/src/cli/index.js +4 -0
  235. package/src/cli/plan.js +14 -2
  236. package/src/cli/setup.js +52 -13
  237. package/src/cli/skill.js +1 -1
  238. package/src/cli/source.js +265 -14
  239. package/src/config/sources.js +67 -1
  240. package/src/merge/content-patch.js +84 -0
  241. package/templates/merge-config.json +1 -8
  242. package/bundled/upstream/ecc/skills/strategic-compact/suggest-compact.sh +0 -54
@@ -0,0 +1,80 @@
1
+ {
2
+ "_comment": "ECC curation. NOTE: governance.json inlines this same allowlist and takes precedence at install time; this file is the source it is kept in sync with (a test asserts they match) and the fallback the per-source mechanism uses for sources NOT inlined in governance.json. Apply with `omc-manage plan apply ecc` (auto-discovered as the default selection file); names are validated against the full synced ECC universe. Full ingestion remains in .upstream/ecc/; only these names install to ~/.claude/.",
3
+ "skills": [
4
+ "workspace-surface-audit",
5
+ "agent-eval",
6
+ "agent-harness-construction",
7
+ "agent-introspection-debugging",
8
+ "agent-sort",
9
+ "agentic-engineering",
10
+ "ai-first-engineering",
11
+ "ai-regression-testing",
12
+ "autonomous-agent-harness",
13
+ "autonomous-loops",
14
+ "continuous-agent-loop",
15
+ "eval-harness",
16
+ "gan-style-harness",
17
+ "iterative-retrieval",
18
+ "mcp-server-patterns",
19
+ "santa-method",
20
+ "skill-comply",
21
+ "skill-stocktake",
22
+ "strategic-compact",
23
+ "team-builder",
24
+ "token-budget-advisor",
25
+ "verification-loop",
26
+ "council",
27
+ "cost-aware-llm-pipeline",
28
+ "prompt-optimizer",
29
+ "context-budget",
30
+ "code-tour",
31
+ "codebase-onboarding",
32
+ "git-workflow",
33
+ "github-ops",
34
+ "regex-vs-llm-structured-text"
35
+ ],
36
+ "agents": [
37
+ "harness-optimizer",
38
+ "opensource-forker",
39
+ "opensource-sanitizer",
40
+ "opensource-packager",
41
+ "silent-failure-hunter",
42
+ "pr-test-analyzer",
43
+ "doc-updater",
44
+ "code-explorer",
45
+ "conversation-analyzer",
46
+ "comment-analyzer",
47
+ "loop-operator",
48
+ "type-design-analyzer",
49
+ "performance-optimizer",
50
+ "refactor-cleaner",
51
+ "chief-of-staff",
52
+ "docs-lookup",
53
+ "swift-reviewer",
54
+ "swift-build-resolver"
55
+ ],
56
+ "commands": [
57
+ "harness-audit",
58
+ "checkpoint",
59
+ "evolve",
60
+ "quality-gate",
61
+ "update-codemaps",
62
+ "update-docs",
63
+ "prp-prd",
64
+ "prp-plan",
65
+ "prp-implement",
66
+ "prp-pr",
67
+ "prp-commit",
68
+ "model-route",
69
+ "feature-dev",
70
+ "resume-session",
71
+ "save-session",
72
+ "sessions",
73
+ "aside",
74
+ "prune",
75
+ "hookify",
76
+ "hookify-list",
77
+ "hookify-configure",
78
+ "hookify-help"
79
+ ]
80
+ }
@@ -0,0 +1,113 @@
1
+ {
2
+ "_comment": "Unified governance manifest — the single authoritative source for cross-source policy: per-source priority, per-source install allowlist, content patches, and conflict resolution. Authority order for allowlist: explicit config (plan apply) > this file's inline allowlist > .omc-curation/<name>-selection.json. Patches (sources.<name>.patches['<type>/<artifact>']) edit the winning artifact's content at install: frontmatter overrides, replace (find/with), prepend, append. Priority and conflict here override legacy templates/merge-config.json.",
3
+ "sources": {
4
+ "local": {
5
+ "priority": 1
6
+ },
7
+ "oh-my-claudecode": {
8
+ "priority": 2
9
+ },
10
+ "superpowers": {
11
+ "priority": 3
12
+ },
13
+ "ecc": {
14
+ "priority": 4,
15
+ "allowlist": {
16
+ "skills": [
17
+ "workspace-surface-audit",
18
+ "agent-eval",
19
+ "agent-harness-construction",
20
+ "agent-introspection-debugging",
21
+ "agent-sort",
22
+ "agentic-engineering",
23
+ "ai-first-engineering",
24
+ "ai-regression-testing",
25
+ "autonomous-agent-harness",
26
+ "autonomous-loops",
27
+ "continuous-agent-loop",
28
+ "eval-harness",
29
+ "gan-style-harness",
30
+ "iterative-retrieval",
31
+ "mcp-server-patterns",
32
+ "santa-method",
33
+ "skill-comply",
34
+ "skill-stocktake",
35
+ "strategic-compact",
36
+ "team-builder",
37
+ "token-budget-advisor",
38
+ "verification-loop",
39
+ "council",
40
+ "cost-aware-llm-pipeline",
41
+ "prompt-optimizer",
42
+ "context-budget",
43
+ "code-tour",
44
+ "codebase-onboarding",
45
+ "git-workflow",
46
+ "github-ops",
47
+ "regex-vs-llm-structured-text"
48
+ ],
49
+ "agents": [
50
+ "harness-optimizer",
51
+ "opensource-forker",
52
+ "opensource-sanitizer",
53
+ "opensource-packager",
54
+ "silent-failure-hunter",
55
+ "pr-test-analyzer",
56
+ "doc-updater",
57
+ "code-explorer",
58
+ "conversation-analyzer",
59
+ "comment-analyzer",
60
+ "loop-operator",
61
+ "type-design-analyzer",
62
+ "performance-optimizer",
63
+ "refactor-cleaner",
64
+ "chief-of-staff",
65
+ "docs-lookup",
66
+ "swift-reviewer",
67
+ "swift-build-resolver"
68
+ ],
69
+ "commands": [
70
+ "harness-audit",
71
+ "checkpoint",
72
+ "evolve",
73
+ "quality-gate",
74
+ "update-codemaps",
75
+ "update-docs",
76
+ "prp-prd",
77
+ "prp-plan",
78
+ "prp-implement",
79
+ "prp-pr",
80
+ "prp-commit",
81
+ "model-route",
82
+ "feature-dev",
83
+ "resume-session",
84
+ "save-session",
85
+ "sessions",
86
+ "aside",
87
+ "prune",
88
+ "hookify",
89
+ "hookify-list",
90
+ "hookify-configure",
91
+ "hookify-help"
92
+ ]
93
+ }
94
+ },
95
+ "anthropic-skills": {
96
+ "priority": 99
97
+ }
98
+ },
99
+ "conflict": {
100
+ "preferences": {},
101
+ "exclude": {
102
+ "skills": [
103
+ "ask",
104
+ "ccg",
105
+ "multi-model-research",
106
+ "test-gen",
107
+ "release",
108
+ "omc-teams",
109
+ "using-superpowers"
110
+ ]
111
+ }
112
+ }
113
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "_comment": "Pinned upstream commits for reproducible `source sync --frozen`. Update with `omc-manage source lock`.",
3
+ "sources": {
4
+ "superpowers": {
5
+ "commit": "6fd4507659784c351abbd2bc264c7162cfd386dc",
6
+ "ref": "main",
7
+ "lockedAt": "2026-06-05T08:06:28.114Z"
8
+ },
9
+ "anthropic-skills": {
10
+ "commit": "da20c92503b2e8ff1cf28ca81a0df4673debdbf7",
11
+ "ref": "main",
12
+ "lockedAt": "2026-06-05T08:06:28.114Z"
13
+ },
14
+ "oh-my-claudecode": {
15
+ "commit": "3e945671dcf3ed1c1bcc422862815f92c1999143",
16
+ "ref": "main",
17
+ "lockedAt": "2026-06-05T08:06:28.113Z"
18
+ },
19
+ "ecc": {
20
+ "commit": "bc8e12bb80c904a5a9864797ef1fd1212aa82f3d",
21
+ "ref": "main",
22
+ "lockedAt": "2026-06-05T08:06:28.114Z"
23
+ }
24
+ }
25
+ }
package/README.md CHANGED
@@ -17,7 +17,7 @@ Defaults (only the bundled sources, no extras):
17
17
 
18
18
  | Artifact | Count | Sources |
19
19
  |----------|-------|---------|
20
- | Skills | ~62 | oh-my-claudecode + superpowers |
20
+ | Skills | ~70 | oh-my-claudecode + superpowers + iOS/SwiftUI pack |
21
21
  | Agents | ~19 | oh-my-claudecode + superpowers |
22
22
  | Hooks | ~8 | oh-my-claudecode (standalone) |
23
23
  | Commands | ~3 | superpowers |
@@ -25,7 +25,7 @@ Defaults (only the bundled sources, no extras):
25
25
 
26
26
  All artifacts are installed to `~/.claude/` where Claude Code discovers them automatically.
27
27
  Adding a curated subset of [everything-claude-code](https://github.com/affaan-m/everything-claude-code)
28
- on top can take totals to ~94 skills / ~35 agents / ~26 commands — see
28
+ on top can take totals to ~102 skills / ~35 agents / ~26 commands — see
29
29
  [Distribution-Repo Sources](#distribution-repo-sources) below.
30
30
 
31
31
  The bundled guidelines install into `~/.claude/CLAUDE.md` and add lightweight
@@ -34,6 +34,23 @@ adapted from [andrej-karpathy-skills](https://github.com/forrestchang/andrej-kar
34
34
  think before coding, prefer simple solutions, make surgical changes, and verify
35
35
  completion with concrete evidence.
36
36
 
37
+ ### 🆕 iOS/SwiftUI Skills Pack (v5.6.8)
38
+
39
+ The latest release includes 8 specialized iOS/SwiftUI skills from MIT-licensed sources:
40
+
41
+ | Skill | Author | Purpose |
42
+ |-------|--------|---------|
43
+ | `swiftui-expert-skill` | [AvdLee](https://github.com/AvdLee) | Comprehensive SwiftUI patterns, accessibility, animations |
44
+ | `swiftui-pro` | [twostraws](https://github.com/twostraws) | Professional SwiftUI development best practices |
45
+ | `ios-debugger-agent` | [Dimillian](https://github.com/Dimillian) | Advanced iOS debugging and troubleshooting |
46
+ | `swift-concurrency-expert` | [Dimillian](https://github.com/Dimillian) | Swift concurrency, async/await patterns |
47
+ | `swiftui-liquid-glass` | [Dimillian](https://github.com/Dimillian) | Modern liquid glass UI effects |
48
+ | `swiftui-performance-audit` | [Dimillian](https://github.com/Dimillian) | Performance profiling and optimization |
49
+ | `swiftui-ui-patterns` | [Dimillian](https://github.com/Dimillian) | Common UI patterns and components |
50
+ | `swiftui-view-refactor` | [Dimillian](https://github.com/Dimillian) | View architecture and refactoring |
51
+
52
+ All skills include comprehensive reference materials and follow ECC standards for seamless integration.
53
+
37
54
  ## Commands
38
55
 
39
56
  | Command | Description |
@@ -41,7 +58,9 @@ completion with concrete evidence.
41
58
  | `omc-manage setup [--force] [--dry-run] [--type <type>] [--source <name>]` | Install merged artifacts |
42
59
  | `omc-manage doctor` | Health checks; reports each source's `kind`, `profile`, and `allowlist`, and flags `staged` distribution sources awaiting `plan apply` |
43
60
  | `omc-manage source list` | Show configured sources |
44
- | `omc-manage source sync [<name>]` | Update upstream sources to latest |
61
+ | `omc-manage source sync [<name>] [--frozen]` | Update upstream sources to latest, or (`--frozen`) to the commits pinned in `.omc-curation/sources.lock.json` |
62
+ | `omc-manage source lock [<name>]` | Pin sources to their currently-synced upstream commit for reproducible installs |
63
+ | `omc-manage source drift [<name>] [--json]` | Detect local edits / upstream changes vs the per-file hashes recorded at sync (exits non-zero on drift) |
45
64
  | `omc-manage source add <name> <url> [--kind ...] [--artifacts ...] [--manifests ...] [--profiles ...]` | Add a new source, including `guidelines` and `distribution-repo` sources |
46
65
  | `omc-manage source remove <name>` | Remove a registered source |
47
66
  | `omc-manage source inspect <name>` | Inspect a source as a bundle/catalog instead of only as flat artifacts |
@@ -59,7 +78,53 @@ completion with concrete evidence.
59
78
  | local | 1 (highest) | yes | Your custom artifacts in `~/.omc-manage/local/` |
60
79
  | oh-my-claudecode | 2 | yes | Multi-agent orchestration framework |
61
80
  | superpowers | 3 | yes | Engineering process guardrails (TDD, debugging, etc.) |
62
- | ecc / your own | 4+ | opt-in | Distribution-style repos added via `source add --kind distribution-repo` |
81
+ | ecc | 4 | yes | [everything-claude-code](https://github.com/affaan-m/everything-claude-code) distribution; ships a curated subset via `.omc-curation/ecc-selection.json` (not all 251 skills) |
82
+ | your own | 5+ | opt-in | Distribution-style repos added via `source add --kind distribution-repo` |
83
+
84
+ ### Governance manifest
85
+
86
+ `.omc-curation/governance.json` is the single authoritative manifest for
87
+ cross-source policy — per-source **priority**, per-source install **allowlist**,
88
+ content **patches**, and **conflict** resolution (`preferences`, `exclude`) — in
89
+ one place:
90
+
91
+ ```json
92
+ {
93
+ "sources": {
94
+ "local": { "priority": 1 },
95
+ "ecc": {
96
+ "priority": 4,
97
+ "allowlist": { "skills": ["…"], "agents": ["…"] },
98
+ "patches": {
99
+ "agents/swift-reviewer": {
100
+ "frontmatter": { "model": "opus" },
101
+ "replace": [{ "find": "MUST BE USED for Swift", "with": "Use for Swift" }],
102
+ "append": "\n## Project note\nFollow our SwiftLint config.\n"
103
+ }
104
+ }
105
+ },
106
+ "anthropic-skills": { "priority": 99 }
107
+ },
108
+ "conflict": { "preferences": {}, "exclude": { "skills": ["ask", "ccg"] } }
109
+ }
110
+ ```
111
+
112
+ **Content patches** edit a winning artifact's content as it installs, without
113
+ forking the whole file: `frontmatter` (override scalar YAML keys like `model`/
114
+ `description`), `replace` (literal body find→replace; a missing target warns,
115
+ never crashes), and `prepend`/`append` (body text). Keyed by `<type>/<name>`
116
+ (a skill patch targets its `SKILL.md`). Remove the patch and re-run `setup` to
117
+ revert.
118
+
119
+ It supersedes the legacy `templates/merge-config.json` (still read as a fallback
120
+ when `governance.json` declares no `conflict` block).
121
+
122
+ **Allowlist authority order** (highest first): an explicit allowlist written by
123
+ `omc-manage plan apply <source>` → `governance.json`'s inline `allowlist` →
124
+ `.omc-curation/<source>-selection.json` → none (install everything). So any
125
+ source — not just ECC — can be curated either inline in `governance.json` or in
126
+ its own `<source>-selection.json`; `ecc-selection.json` is just the first
127
+ instance of that per-source mechanism.
63
128
 
64
129
  Local artifacts always win conflicts. Sources added via `source add` are
65
130
  appended at the next free priority. Add your own skills:
@@ -1,9 +1,9 @@
1
1
  {
2
- "bundledAt": "2026-05-19T08:53:42Z",
2
+ "bundledAt": "2026-06-05T08:48:56Z",
3
3
  "sources": {
4
- "anthropic-skills": { "artifacts": 2 },
5
- "ecc": { "artifacts": 139 },
6
- "oh-my-claudecode": { "artifacts": 22 },
7
- "superpowers": { "artifacts": 6 }
4
+ "anthropic-skills": { "artifacts": 4 },
5
+ "ecc": { "artifacts": 147 },
6
+ "oh-my-claudecode": { "artifacts": 23 },
7
+ "superpowers": { "artifacts": 7 }
8
8
  }
9
9
  }
@@ -0,0 +1,18 @@
1
+ {
2
+ "syncedAt": "2026-06-05T08:00:45.198Z",
3
+ "sourceName": "anthropic-skills",
4
+ "remote": "https://github.com/anthropics/skills.git",
5
+ "ref": "main",
6
+ "commit": "da20c92503b2e8ff1cf28ca81a0df4673debdbf7",
7
+ "kind": "content-repo",
8
+ "harnesses": [
9
+ "claude"
10
+ ],
11
+ "artifacts": [
12
+ "skills"
13
+ ],
14
+ "manifests": [],
15
+ "profiles": [
16
+ "reference-only"
17
+ ]
18
+ }