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,73 @@
1
+ ---
2
+ name: latency-critical-systems
3
+ description: Use for latency-sensitive systems such as realtime dashboards, market data, streaming agents, execution gateways, queues, caches, or HFT-like infrastructure where freshness and p95 latency matter.
4
+ origin: ECC
5
+ tools: Read, Write, Edit, Bash, Grep, Glob
6
+ ---
7
+
8
+ # Latency Critical Systems
9
+
10
+ Use this skill when the user cares about realtime behavior, hot paths, streaming
11
+ freshness, or execution speed. This includes HFT-like infrastructure, but the
12
+ skill is engineering-focused. It does not authorize live trading or financial
13
+ advice.
14
+
15
+ ## Split The Metrics
16
+
17
+ Do not collapse everything into "fast." Track:
18
+
19
+ - p50, p95, and p99 latency;
20
+ - throughput;
21
+ - freshness age;
22
+ - queue depth;
23
+ - cache hit rate;
24
+ - provider/API response time;
25
+ - browser render time;
26
+ - correctness under load;
27
+ - failure and retry behavior.
28
+
29
+ ## Map The Hot Path
30
+
31
+ Write the path from user/event to final visible state:
32
+
33
+ ```text
34
+ source event -> provider API -> ingest worker -> queue -> cache -> edge route
35
+ -> client stream -> browser render -> user-visible state
36
+ ```
37
+
38
+ Then measure each segment separately.
39
+
40
+ ## Optimization Order
41
+
42
+ 1. Remove unnecessary round trips.
43
+ 2. Cache stable reads with freshness metadata.
44
+ 3. Batch small calls and writes.
45
+ 4. Move compute closer to the data or the user.
46
+ 5. Split hot and cold paths.
47
+ 6. Apply backpressure before queues grow unbounded.
48
+ 7. Use streaming only when it improves freshness or user experience.
49
+ 8. Add canaries for stale data, degraded providers, and bad cache state.
50
+
51
+ ## Verification
52
+
53
+ Use live readbacks when a deployed surface exists:
54
+
55
+ - HTTP timing and response headers;
56
+ - provider freshness timestamp;
57
+ - queue or job state;
58
+ - edge/cache state;
59
+ - browser verification for actual UI freshness;
60
+ - logs around retries and degraded mode.
61
+
62
+ For market-data or execution-adjacent paths, also verify orderbook age, VWAP
63
+ assumptions, provider status, and kill-switch behavior before calling the path
64
+ ready.
65
+
66
+ ## Guardrails
67
+
68
+ - Do not optimize latency by dropping required validation.
69
+ - Do not hide stale data behind fast cache hits.
70
+ - Do not claim millisecond behavior from client labels without measurement.
71
+ - Do not run live orders, destructive migrations, or customer-impacting deploys
72
+ without an explicit approval gate.
73
+ - Keep secrets and private payloads out of logs and benchmark artifacts.
@@ -0,0 +1,113 @@
1
+ ---
2
+ name: marketing-campaign
3
+ description: End-to-end marketing campaign planning and execution. Covers audience research, positioning, campaign angle definition, landing page copy, email sequences, social posts, ad copy, short-form video scripts, and content calendars. Use as the orchestration layer for multi-channel product launches.
4
+ origin: ECC
5
+ ---
6
+
7
+ # Marketing Campaign
8
+
9
+ Plan and execute launch campaigns that convert — not just campaigns that ship.
10
+
11
+ ## When to Activate
12
+
13
+ - planning a product or feature launch
14
+ - building a full content suite from a single product brief
15
+ - defining positioning and campaign angle before writing any copy
16
+ - orchestrating multiple content types across channels
17
+ - reviewing copy for conversion quality and brand consistency
18
+
19
+ ## Non-Negotiables
20
+
21
+ 1. Define positioning before writing any copy. All copy flows from the angle.
22
+ 2. Research the audience before assuming you know their language or fears.
23
+ 3. Each deliverable must serve one clear purpose in the campaign arc.
24
+ 4. Specificity beats adjectives in every format and on every channel.
25
+ 5. The same voice must run across every channel and every piece.
26
+ 6. No copy ships without passing the quality gate.
27
+
28
+ ## Campaign Workflow
29
+
30
+ ### Phase 1: Research
31
+
32
+ Use `market-research` to:
33
+ - profile the target audience (jobs-to-be-done, fears, language, alternatives they use)
34
+ - map 3+ direct or adjacent competitors (positioning, gaps, messaging weaknesses)
35
+ - identify 1–3 audience insights the campaign angle will exploit
36
+
37
+ Deliverable: a short research brief (audience profile + competitive summary + key insights).
38
+
39
+ ### Phase 2: Positioning
40
+
41
+ Produce:
42
+ - core benefit statement (one sentence, no feature list, no jargon)
43
+ - positioning formula: "[Product] helps [audience] [achieve outcome] by [mechanism]"
44
+ - campaign angle: the specific tension, insight, or moment the whole campaign lives in
45
+ - tone profile: lock before writing (delegate to `brand-voice` for durable, session-reusable voice capture)
46
+
47
+ Do not write any copy until positioning and angle are approved.
48
+
49
+ ### Phase 3: Content Production
50
+
51
+ Produce in this order — each layer informs the next:
52
+
53
+ 1. **Landing page copy** (all sections: hero, problem, solution, features, how it works, proof, CTA)
54
+ 2. **Email sequence** (each email has one purpose; follow the arc: problem → education → agitation → solution → proof → urgency → final CTA)
55
+ 3. **Social posts** (platform-native via `content-engine`; LinkedIn and X are different formats, not the same copy resized)
56
+ 4. **Short-form video scripts** (timestamp-blocked; written for screen and ear, not the page)
57
+ 5. **Ad copy variants** (3–4 variants testing different angles or audience segments)
58
+ 6. **Content calendar** (day-by-day schedule with channel, type, timing, and dependencies)
59
+
60
+ ### Phase 4: Review
61
+
62
+ Gate every deliverable:
63
+ - 5-second test on all hero / above-fold copy (clear who it's for, what it does, why act now)
64
+ - CTA audit (one per piece, specific, earned — not demanded)
65
+ - Tone consistency check across all channels
66
+ - Claim audit (every claim is specific and supportable)
67
+ - Cross-channel consistency (ad claims match landing page; email body matches subject)
68
+
69
+ ## Output Contract
70
+
71
+ A full campaign delivers:
72
+
73
+ 1. **Positioning brief** — angle, core benefit statement, tone profile
74
+ 2. **Landing page copy** — hero, problem, solution, features, how it works, proof, CTA
75
+ 3. **Email sequence** — subject + preview + body + CTA for each email, labelled by day and purpose
76
+ 4. **LinkedIn posts** — 3+ platform-native posts with distinct angles
77
+ 5. **X posts** — 5+ standalone posts + 1 thread
78
+ 6. **Short-form video scripts** — 2+ timestamp-blocked scripts with visual direction notes
79
+ 7. **Ad copy variants** — short headline / long headline / body per variant
80
+ 8. **Content calendar** — day-by-day schedule with channel, content type, timing, and dependencies
81
+ 9. **Copy review summary** — flagged issues and open questions before anything goes live
82
+
83
+ ## Quality Gate
84
+
85
+ Before delivering any piece:
86
+
87
+ - every deliverable sounds like the same author
88
+ - no hollow superlatives or filler adjectives remain
89
+ - every CTA is specific and earned (never "learn more" or "click here")
90
+ - no copy is duplicated verbatim across platforms
91
+ - hero copy passes the 5-second test
92
+ - email subjects match email body (no bait-and-switch)
93
+ - ad claims match landing page claims exactly
94
+ - no copy would work unchanged for any other product in the category
95
+
96
+ ## Hard Bans
97
+
98
+ Delete and rewrite any:
99
+
100
+ - "game-changing", "revolutionary", "world-class", "cutting-edge"
101
+ - "In today's competitive landscape"
102
+ - fake urgency not backed by a real deadline
103
+ - hollow social proof without specifics ("thousands trust us")
104
+ - generic CTAs ("learn more", "find out more", "click here")
105
+ - copy that could be unplugged and dropped into a competitor's campaign unchanged
106
+
107
+ ## Related Skills
108
+
109
+ - `brand-voice` — source-derived voice capture (run before content production)
110
+ - `content-engine` — platform-native content production
111
+ - `crosspost` — multi-platform distribution
112
+ - `market-research` — audience and competitive intelligence
113
+ - `seo` — on-page optimisation for landing page copy
@@ -37,6 +37,19 @@ next start
37
37
 
38
38
  Run `next dev` for local development with Turbopack. Use the Bundle Analyzer (see Next.js docs) to optimize code-splitting and trim large dependencies. Prefer App Router and server components where possible.
39
39
 
40
+ ## Middleware File Naming
41
+
42
+ Next.js 16 introduced `proxy.ts` as the middleware filename, replacing the older `middleware.ts` convention:
43
+
44
+ - **Next.js 16+**: use `proxy.ts` at the project root
45
+ - **Pre-Next.js 16**: use `middleware.ts` at the project root
46
+
47
+ The filename change is tied to the **Next.js version**, not to which bundler (Turbopack or webpack) is in use. Always check the official docs for the version you are reviewing.
48
+
49
+ **Do not flag `proxy.ts` as a misnamed or missing middleware file in Next.js 16 projects.** The file is correct and intentional. Suggesting a rename to `middleware.ts` will break middleware execution.
50
+
51
+ Reference: [Next.js proxy docs](https://nextjs.org/docs/app/getting-started/proxy)
52
+
40
53
  ## Best Practices
41
54
 
42
55
  - Stay on a recent Next.js 16.x for stable Turbopack and caching behavior.
@@ -0,0 +1,72 @@
1
+ ---
2
+ name: parallel-execution-optimizer
3
+ description: Use when the user wants a task done much faster through parallel work, concurrent agents, batched tool calls, isolated worktrees, or many independent verification lanes without losing correctness.
4
+ origin: ECC
5
+ tools: Read, Write, Edit, Bash, Grep, Glob
6
+ ---
7
+
8
+ # Parallel Execution Optimizer
9
+
10
+ Use this skill when speed comes from doing independent work at the same time:
11
+ repo inspection, file reads, API checks, browser checks, build/test lanes,
12
+ deploy readbacks, or multi-worktree implementation passes.
13
+
14
+ ## Core Pattern
15
+
16
+ Turn urgency into a dependency graph before acting.
17
+
18
+ 1. Define the objective and done signal.
19
+ 2. Split work into lanes.
20
+ 3. Mark each lane as parallel, sequential, or gated.
21
+ 4. Run independent reads/checks together.
22
+ 5. Keep writes isolated by file, worktree, branch, service, or dataset.
23
+ 6. Merge only after evidence shows the lanes are compatible.
24
+ 7. End with a verification table, not a vague speed claim.
25
+
26
+ ## Lane Matrix
27
+
28
+ Before a large push, write a compact matrix:
29
+
30
+ ```text
31
+ Lane | Can run in parallel? | Write surface | Risk | Verification
32
+ Repo scan | yes | none | low | rg/git status outputs
33
+ Backend patch | maybe | src/api | medium | unit tests
34
+ Frontend patch | maybe | app/components | medium | browser screenshot
35
+ Deploy readback | after build | remote service | high | live URL + logs
36
+ ```
37
+
38
+ Only run lanes in parallel when their write surfaces do not collide.
39
+
40
+ ## Execution Rules
41
+
42
+ - Batch file reads, searches, status checks, and metadata queries.
43
+ - Use isolated worktrees for large unrelated implementation lanes.
44
+ - Start long-running tests, builds, backfills, and deploys in separate sessions,
45
+ then poll them deliberately.
46
+ - If a lane discovers a blocker that changes the plan, pause dependent lanes
47
+ and update the matrix.
48
+ - Never let a background process outlive the turn unless the user explicitly
49
+ asked for a continuing service.
50
+ - Do not parallelize destructive commands, migrations, writes to the same table,
51
+ or live customer-impacting deploys without an explicit gate.
52
+
53
+ ## Output Shape
54
+
55
+ Use this when reporting:
56
+
57
+ ```text
58
+ Parallel execution result:
59
+ - Lanes run: 5
60
+ - Lanes completed: 4
61
+ - Blocked lane: deploy readback, waiting on DNS propagation
62
+ - Fast path found: batched repo scan + focused tests
63
+ - Verification: lint pass, unit pass, live smoke pass
64
+ ```
65
+
66
+ ## Failure Modes
67
+
68
+ - More concurrency that creates conflicting edits.
69
+ - Benchmarking the tool instead of the task.
70
+ - Treating "fast" as done before correctness is proven.
71
+ - Forgetting to poll running sessions.
72
+ - Hiding skipped checks behind a success summary.
@@ -0,0 +1,63 @@
1
+ ---
2
+ name: prediction-market-oracle-research
3
+ description: Research prediction markets as data sources or oracle signals for products, agents, dashboards, and corporate decision intelligence. Use for source-grounded analysis of market-implied probabilities, caveats, and integration patterns without investment advice.
4
+ origin: ECC
5
+ ---
6
+
7
+ # Prediction Market Oracle Research
8
+
9
+ Use this skill when prediction markets are being considered as a data source,
10
+ forecasting input, oracle-like signal, or decision-intelligence layer.
11
+
12
+ ## Guardrails
13
+
14
+ - Do not treat market prices as objective truth.
15
+ - Do not provide investment advice or trading recommendations.
16
+ - Separate venue mechanics, liquidity, incentives, and resolution rules from the
17
+ implied signal.
18
+ - Call out manipulation, thin liquidity, stale markets, and ambiguous outcomes.
19
+ - For on-chain or execution-linked systems, run `llm-trading-agent-security`
20
+ before granting any write authority.
21
+
22
+ ## Research Workflow
23
+
24
+ 1. Define the decision the signal is meant to inform.
25
+ 2. Find relevant markets, events, tags, and venues.
26
+ 3. Record market-implied probabilities with timestamps and source links.
27
+ 4. Evaluate signal quality:
28
+ - liquidity
29
+ - spread
30
+ - market age
31
+ - trader/incentive concentration if known
32
+ - resolution authority
33
+ - geography or account restrictions
34
+ 5. Compare against non-market sources such as filings, news, polls, research,
35
+ customer data, or internal KPIs.
36
+ 6. Recommend whether the signal is usable, weak, or unsuitable for the stated
37
+ decision.
38
+
39
+ ## Integration Patterns
40
+
41
+ - Research assistant: source-grounded context for a human analyst.
42
+ - Dashboard signal: market-implied probability alongside internal metrics.
43
+ - Agent memory input: a time-stamped signal that can be retrieved later.
44
+ - Alerting input: notify when probabilities, spreads, or liquidity cross a
45
+ threshold.
46
+ - Scenario planning: compare multiple event outcomes without automating trades.
47
+
48
+ ## Output Contract
49
+
50
+ Use:
51
+
52
+ 1. decision context
53
+ 2. market sources
54
+ 3. signal quality
55
+ 4. comparison sources
56
+ 5. integration recommendation
57
+ 6. caveats
58
+
59
+ End with:
60
+
61
+ ```text
62
+ Prediction-market signals are informational inputs, not investment advice.
63
+ ```
@@ -0,0 +1,60 @@
1
+ ---
2
+ name: prediction-market-risk-review
3
+ description: Review prediction-market, basket, oracle, and trading-agent workflows for compliance, safety, data-quality, privacy, and execution risk. Use before any workflow handles venue auth, user portfolio data, API keys, or trade planning.
4
+ origin: ECC
5
+ ---
6
+
7
+ # Prediction Market Risk Review
8
+
9
+ Use this skill before a prediction-market workflow touches user financial
10
+ context, venue authentication, portfolio data, automation, or execution-capable
11
+ tools.
12
+
13
+ ## Review Gates
14
+
15
+ ### Advice Boundary
16
+
17
+ - Confirm the output is informational.
18
+ - Remove buy/sell/hold/size recommendations.
19
+ - Keep manual user decision points explicit.
20
+
21
+ ### Venue And Regulatory Boundary
22
+
23
+ - Identify venue terms, geography restrictions, account limits, and API rules.
24
+ - Flag betting, derivatives, securities, or commodities ambiguity for legal
25
+ review when relevant.
26
+ - Do not bypass venue restrictions or rate limits.
27
+
28
+ ### Data Quality
29
+
30
+ - Check market liquidity, spread, resolution rules, stale prices, and source
31
+ timestamps.
32
+ - Separate public venue data from Itô gated data.
33
+ - Do not mix public and private sources without labels.
34
+
35
+ ### Security
36
+
37
+ - Do not request or store private keys, seed phrases, or passwords.
38
+ - Keep `ITO_API_KEY` and venue API keys out of logs and docs.
39
+ - Use read-only scopes by default.
40
+ - Require circuit breakers, spend limits, dry runs, and human approval before
41
+ any private implementation adds execution.
42
+
43
+ ### Privacy
44
+
45
+ - Minimize user portfolio, financial, and knowledge-base data.
46
+ - Redact private sources in public artifacts.
47
+ - Preserve only the fields needed for the review.
48
+
49
+ ## Output Contract
50
+
51
+ Return:
52
+
53
+ 1. scope reviewed
54
+ 2. pass/warn/fail findings
55
+ 3. blocked actions
56
+ 4. required mitigations
57
+ 5. safe next step
58
+
59
+ If any execution-capable step is requested, require a separate implementation
60
+ plan and explicit user approval.