ctxora 6.2.2 → 6.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 (835) hide show
  1. package/.claude-plugin/plugin.json +11 -0
  2. package/README.md +102 -16
  3. package/README.vi.md +93 -7
  4. package/THIRD_PARTY_NOTICES.md +12 -0
  5. package/agents/ctxora-context-engineer.md +6 -0
  6. package/agents/ctxora-maintainer.md +6 -0
  7. package/agents/ctxora-reviewer.md +6 -0
  8. package/bin/ctxora.mjs +1 -1
  9. package/commands/context.md +15 -0
  10. package/commands/guide.md +8 -0
  11. package/commands/handoff.md +8 -0
  12. package/commands/health.md +14 -0
  13. package/commands/learn.md +8 -0
  14. package/commands/plan.md +15 -0
  15. package/commands/review.md +8 -0
  16. package/commands/route.md +6 -0
  17. package/docs/COMMAND-SKILL-MAP.md +25 -0
  18. package/docs/third-party/ECC-LICENSE +21 -0
  19. package/package.json +14 -1
  20. package/pyproject.toml +6 -1
  21. package/schemas/README.md +3 -0
  22. package/schemas/mcp-v2/context_stats.request.schema.json +10 -0
  23. package/schemas/mcp-v2/context_stats.response.schema.json +5 -0
  24. package/schemas/mcp-v2/delete_conversation_handoff.request.schema.json +17 -0
  25. package/schemas/mcp-v2/delete_conversation_handoff.response.schema.json +5 -0
  26. package/schemas/mcp-v2/ecc_search.request.schema.json +16 -0
  27. package/schemas/mcp-v2/ecc_search.response.schema.json +5 -0
  28. package/schemas/mcp-v2/ecc_status.request.schema.json +6 -0
  29. package/schemas/mcp-v2/ecc_status.response.schema.json +5 -0
  30. package/schemas/mcp-v2/error.response.schema.json +40 -0
  31. package/schemas/mcp-v2/handoff_conversation.request.schema.json +29 -0
  32. package/schemas/mcp-v2/handoff_conversation.response.schema.json +5 -0
  33. package/schemas/mcp-v2/invalidate_context.request.schema.json +17 -0
  34. package/schemas/mcp-v2/invalidate_context.response.schema.json +5 -0
  35. package/schemas/mcp-v2/list_conversation_handoffs.request.schema.json +16 -0
  36. package/schemas/mcp-v2/list_conversation_handoffs.response.schema.json +8 -0
  37. package/schemas/mcp-v2/memory_delete.request.schema.json +20 -0
  38. package/schemas/mcp-v2/memory_delete.response.schema.json +5 -0
  39. package/schemas/mcp-v2/memory_list.request.schema.json +19 -0
  40. package/schemas/mcp-v2/memory_list.response.schema.json +7 -0
  41. package/schemas/mcp-v2/memory_save.request.schema.json +42 -0
  42. package/schemas/mcp-v2/memory_save.response.schema.json +5 -0
  43. package/schemas/mcp-v2/memory_search.request.schema.json +26 -0
  44. package/schemas/mcp-v2/memory_search.response.schema.json +8 -0
  45. package/schemas/mcp-v2/plan_context.request.schema.json +24 -0
  46. package/schemas/mcp-v2/plan_context.response.schema.json +5 -0
  47. package/schemas/mcp-v2/prepare_context.request.schema.json +42 -0
  48. package/schemas/mcp-v2/prepare_context.response.schema.json +72 -0
  49. package/schemas/mcp-v2/purge_expired_handoffs.request.schema.json +6 -0
  50. package/schemas/mcp-v2/purge_expired_handoffs.response.schema.json +5 -0
  51. package/schemas/mcp-v2/refresh_workspace.request.schema.json +19 -0
  52. package/schemas/mcp-v2/refresh_workspace.response.schema.json +5 -0
  53. package/schemas/mcp-v2/register_workspace.request.schema.json +23 -0
  54. package/schemas/mcp-v2/register_workspace.response.schema.json +5 -0
  55. package/schemas/mcp-v2/restore_conversation_handoff.request.schema.json +17 -0
  56. package/schemas/mcp-v2/restore_conversation_handoff.response.schema.json +5 -0
  57. package/schemas/mcp-v2/retrieve_context.request.schema.json +26 -0
  58. package/schemas/mcp-v2/retrieve_context.response.schema.json +5 -0
  59. package/schemas/mcp-v2/route_skills.request.schema.json +29 -0
  60. package/schemas/mcp-v2/route_skills.response.schema.json +5 -0
  61. package/schemas/mcp-v2/skill_feedback.request.schema.json +33 -0
  62. package/schemas/mcp-v2/skill_feedback.response.schema.json +5 -0
  63. package/schemas/mcp-v2/skill_learning_status.request.schema.json +16 -0
  64. package/schemas/mcp-v2/skill_learning_status.response.schema.json +5 -0
  65. package/skills/ctxora-context-health/SKILL.md +29 -0
  66. package/skills/ctxora-continuous-learning/SKILL.md +26 -0
  67. package/skills/ctxora-navigation/SKILL.md +20 -0
  68. package/skills/ctxora-repository-context/SKILL.md +33 -0
  69. package/skills/ctxora-setup/SKILL.md +26 -0
  70. package/skills/ctxora-workflow-profiles/SKILL.md +30 -0
  71. package/src/harness_context/api/v2/contracts.py +9 -0
  72. package/src/harness_context/application/container.py +2 -0
  73. package/src/harness_context/application/context_service.py +11 -2
  74. package/src/harness_context/application/protocols.py +5 -0
  75. package/src/harness_context/bootstrap.py +4 -1
  76. package/src/harness_context/cli/app.py +112 -0
  77. package/src/harness_context/mcp/capabilities.py +1 -0
  78. package/src/harness_context/mcp/tool_handlers/__init__.py +5 -1
  79. package/src/harness_context/mcp/tool_handlers/skills.py +29 -0
  80. package/src/harness_context/mcp/tools.py +2 -0
  81. package/src/harness_context/skills/__init__.py +4 -0
  82. package/src/harness_context/skills/catalog.py +245 -0
  83. package/src/harness_context/skills/ecc/accessibility/LICENSE.ecc +21 -0
  84. package/src/harness_context/skills/ecc/accessibility/SKILL.md +147 -0
  85. package/src/harness_context/skills/ecc/agent-architecture-audit/LICENSE.ecc +21 -0
  86. package/src/harness_context/skills/ecc/agent-architecture-audit/SKILL.md +257 -0
  87. package/src/harness_context/skills/ecc/agent-eval/LICENSE.ecc +21 -0
  88. package/src/harness_context/skills/ecc/agent-eval/SKILL.md +147 -0
  89. package/src/harness_context/skills/ecc/agent-harness-construction/LICENSE.ecc +21 -0
  90. package/src/harness_context/skills/ecc/agent-harness-construction/SKILL.md +74 -0
  91. package/src/harness_context/skills/ecc/agent-introspection-debugging/LICENSE.ecc +21 -0
  92. package/src/harness_context/skills/ecc/agent-introspection-debugging/SKILL.md +154 -0
  93. package/src/harness_context/skills/ecc/agent-payment-x402/LICENSE.ecc +21 -0
  94. package/src/harness_context/skills/ecc/agent-payment-x402/SKILL.md +225 -0
  95. package/src/harness_context/skills/ecc/agent-self-evaluation/LICENSE.ecc +21 -0
  96. package/src/harness_context/skills/ecc/agent-self-evaluation/SKILL.md +182 -0
  97. package/src/harness_context/skills/ecc/agent-self-evaluation/examples/high-score-example.md +87 -0
  98. package/src/harness_context/skills/ecc/agent-self-evaluation/examples/low-score-example.md +86 -0
  99. package/src/harness_context/skills/ecc/agent-self-evaluation/references/evaluation-criteria.md +71 -0
  100. package/src/harness_context/skills/ecc/agent-self-evaluation/references/hook-integration.md +64 -0
  101. package/src/harness_context/skills/ecc/agent-self-evaluation/scripts/evaluate.py +408 -0
  102. package/src/harness_context/skills/ecc/agent-self-evaluation/templates/evaluation-report.md +86 -0
  103. package/src/harness_context/skills/ecc/agent-sort/LICENSE.ecc +21 -0
  104. package/src/harness_context/skills/ecc/agent-sort/SKILL.md +216 -0
  105. package/src/harness_context/skills/ecc/agentic-engineering/LICENSE.ecc +21 -0
  106. package/src/harness_context/skills/ecc/agentic-engineering/SKILL.md +64 -0
  107. package/src/harness_context/skills/ecc/agentic-os/LICENSE.ecc +21 -0
  108. package/src/harness_context/skills/ecc/agentic-os/SKILL.md +388 -0
  109. package/src/harness_context/skills/ecc/ai-first-engineering/LICENSE.ecc +21 -0
  110. package/src/harness_context/skills/ecc/ai-first-engineering/SKILL.md +52 -0
  111. package/src/harness_context/skills/ecc/ai-regression-testing/LICENSE.ecc +21 -0
  112. package/src/harness_context/skills/ecc/ai-regression-testing/SKILL.md +386 -0
  113. package/src/harness_context/skills/ecc/android-clean-architecture/LICENSE.ecc +21 -0
  114. package/src/harness_context/skills/ecc/android-clean-architecture/SKILL.md +340 -0
  115. package/src/harness_context/skills/ecc/angular-developer/LICENSE.ecc +21 -0
  116. package/src/harness_context/skills/ecc/angular-developer/SKILL.md +155 -0
  117. package/src/harness_context/skills/ecc/angular-developer/references/angular-animations.md +160 -0
  118. package/src/harness_context/skills/ecc/angular-developer/references/angular-aria.md +410 -0
  119. package/src/harness_context/skills/ecc/angular-developer/references/cli.md +86 -0
  120. package/src/harness_context/skills/ecc/angular-developer/references/component-harnesses.md +59 -0
  121. package/src/harness_context/skills/ecc/angular-developer/references/component-styling.md +91 -0
  122. package/src/harness_context/skills/ecc/angular-developer/references/components.md +117 -0
  123. package/src/harness_context/skills/ecc/angular-developer/references/creating-services.md +97 -0
  124. package/src/harness_context/skills/ecc/angular-developer/references/data-resolvers.md +69 -0
  125. package/src/harness_context/skills/ecc/angular-developer/references/define-routes.md +67 -0
  126. package/src/harness_context/skills/ecc/angular-developer/references/defining-providers.md +72 -0
  127. package/src/harness_context/skills/ecc/angular-developer/references/di-fundamentals.md +120 -0
  128. package/src/harness_context/skills/ecc/angular-developer/references/e2e-testing.md +56 -0
  129. package/src/harness_context/skills/ecc/angular-developer/references/effects.md +83 -0
  130. package/src/harness_context/skills/ecc/angular-developer/references/hierarchical-injectors.md +43 -0
  131. package/src/harness_context/skills/ecc/angular-developer/references/host-elements.md +80 -0
  132. package/src/harness_context/skills/ecc/angular-developer/references/injection-context.md +63 -0
  133. package/src/harness_context/skills/ecc/angular-developer/references/inputs.md +101 -0
  134. package/src/harness_context/skills/ecc/angular-developer/references/linked-signal.md +59 -0
  135. package/src/harness_context/skills/ecc/angular-developer/references/loading-strategies.md +61 -0
  136. package/src/harness_context/skills/ecc/angular-developer/references/mcp.md +108 -0
  137. package/src/harness_context/skills/ecc/angular-developer/references/navigate-to-routes.md +69 -0
  138. package/src/harness_context/skills/ecc/angular-developer/references/outputs.md +86 -0
  139. package/src/harness_context/skills/ecc/angular-developer/references/reactive-forms.md +122 -0
  140. package/src/harness_context/skills/ecc/angular-developer/references/rendering-strategies.md +44 -0
  141. package/src/harness_context/skills/ecc/angular-developer/references/resource.md +77 -0
  142. package/src/harness_context/skills/ecc/angular-developer/references/route-animations.md +56 -0
  143. package/src/harness_context/skills/ecc/angular-developer/references/route-guards.md +52 -0
  144. package/src/harness_context/skills/ecc/angular-developer/references/router-lifecycle.md +45 -0
  145. package/src/harness_context/skills/ecc/angular-developer/references/router-testing.md +87 -0
  146. package/src/harness_context/skills/ecc/angular-developer/references/show-routes-with-outlets.md +68 -0
  147. package/src/harness_context/skills/ecc/angular-developer/references/signal-forms.md +795 -0
  148. package/src/harness_context/skills/ecc/angular-developer/references/signals-overview.md +94 -0
  149. package/src/harness_context/skills/ecc/angular-developer/references/tailwind-css.md +69 -0
  150. package/src/harness_context/skills/ecc/angular-developer/references/template-driven-forms.md +114 -0
  151. package/src/harness_context/skills/ecc/angular-developer/references/testing-fundamentals.md +65 -0
  152. package/src/harness_context/skills/ecc/api-connector-builder/LICENSE.ecc +21 -0
  153. package/src/harness_context/skills/ecc/api-connector-builder/SKILL.md +121 -0
  154. package/src/harness_context/skills/ecc/api-design/LICENSE.ecc +21 -0
  155. package/src/harness_context/skills/ecc/api-design/SKILL.md +524 -0
  156. package/src/harness_context/skills/ecc/architecture-decision-records/LICENSE.ecc +21 -0
  157. package/src/harness_context/skills/ecc/architecture-decision-records/SKILL.md +180 -0
  158. package/src/harness_context/skills/ecc/article-writing/LICENSE.ecc +21 -0
  159. package/src/harness_context/skills/ecc/article-writing/SKILL.md +80 -0
  160. package/src/harness_context/skills/ecc/automation-audit-ops/LICENSE.ecc +21 -0
  161. package/src/harness_context/skills/ecc/automation-audit-ops/SKILL.md +143 -0
  162. package/src/harness_context/skills/ecc/autonomous-agent-harness/LICENSE.ecc +21 -0
  163. package/src/harness_context/skills/ecc/autonomous-agent-harness/SKILL.md +274 -0
  164. package/src/harness_context/skills/ecc/autonomous-loops/LICENSE.ecc +21 -0
  165. package/src/harness_context/skills/ecc/autonomous-loops/SKILL.md +611 -0
  166. package/src/harness_context/skills/ecc/backend-patterns/LICENSE.ecc +21 -0
  167. package/src/harness_context/skills/ecc/backend-patterns/SKILL.md +562 -0
  168. package/src/harness_context/skills/ecc/benchmark/LICENSE.ecc +21 -0
  169. package/src/harness_context/skills/ecc/benchmark/SKILL.md +95 -0
  170. package/src/harness_context/skills/ecc/benchmark-methodology/LICENSE.ecc +21 -0
  171. package/src/harness_context/skills/ecc/benchmark-methodology/SKILL.md +191 -0
  172. package/src/harness_context/skills/ecc/benchmark-optimization-loop/LICENSE.ecc +21 -0
  173. package/src/harness_context/skills/ecc/benchmark-optimization-loop/SKILL.md +71 -0
  174. package/src/harness_context/skills/ecc/blender-motion-state-inspection/LICENSE.ecc +21 -0
  175. package/src/harness_context/skills/ecc/blender-motion-state-inspection/SKILL.md +165 -0
  176. package/src/harness_context/skills/ecc/blueprint/LICENSE.ecc +21 -0
  177. package/src/harness_context/skills/ecc/blueprint/SKILL.md +106 -0
  178. package/src/harness_context/skills/ecc/brand-discovery/LICENSE.ecc +21 -0
  179. package/src/harness_context/skills/ecc/brand-discovery/SKILL.md +145 -0
  180. package/src/harness_context/skills/ecc/brand-discovery/references/10_purpose-why.md +40 -0
  181. package/src/harness_context/skills/ecc/brand-discovery/references/20_positioning.md +44 -0
  182. package/src/harness_context/skills/ecc/brand-discovery/references/30_audience-niche.md +52 -0
  183. package/src/harness_context/skills/ecc/brand-discovery/references/40_personality-archetype.md +57 -0
  184. package/src/harness_context/skills/ecc/brand-discovery/references/50_voice-tone.md +59 -0
  185. package/src/harness_context/skills/ecc/brand-discovery/references/60_narrative-story.md +50 -0
  186. package/src/harness_context/skills/ecc/brand-discovery/references/70_founder-tension.md +49 -0
  187. package/src/harness_context/skills/ecc/brand-discovery/references/90_SYNTHESIS.md +133 -0
  188. package/src/harness_context/skills/ecc/brand-voice/LICENSE.ecc +21 -0
  189. package/src/harness_context/skills/ecc/brand-voice/SKILL.md +98 -0
  190. package/src/harness_context/skills/ecc/brand-voice/references/voice-profile-schema.md +55 -0
  191. package/src/harness_context/skills/ecc/browser-qa/LICENSE.ecc +21 -0
  192. package/src/harness_context/skills/ecc/browser-qa/SKILL.md +105 -0
  193. package/src/harness_context/skills/ecc/bun-runtime/LICENSE.ecc +21 -0
  194. package/src/harness_context/skills/ecc/bun-runtime/SKILL.md +85 -0
  195. package/src/harness_context/skills/ecc/canary-watch/LICENSE.ecc +21 -0
  196. package/src/harness_context/skills/ecc/canary-watch/SKILL.md +108 -0
  197. package/src/harness_context/skills/ecc/carrier-relationship-management/LICENSE.ecc +21 -0
  198. package/src/harness_context/skills/ecc/carrier-relationship-management/SKILL.md +212 -0
  199. package/src/harness_context/skills/ecc/cisco-ios-patterns/LICENSE.ecc +21 -0
  200. package/src/harness_context/skills/ecc/cisco-ios-patterns/SKILL.md +164 -0
  201. package/src/harness_context/skills/ecc/ck/LICENSE.ecc +21 -0
  202. package/src/harness_context/skills/ecc/ck/SKILL.md +148 -0
  203. package/src/harness_context/skills/ecc/ck/commands/forget.mjs +44 -0
  204. package/src/harness_context/skills/ecc/ck/commands/info.mjs +24 -0
  205. package/src/harness_context/skills/ecc/ck/commands/init.mjs +143 -0
  206. package/src/harness_context/skills/ecc/ck/commands/list.mjs +40 -0
  207. package/src/harness_context/skills/ecc/ck/commands/migrate.mjs +202 -0
  208. package/src/harness_context/skills/ecc/ck/commands/resume.mjs +36 -0
  209. package/src/harness_context/skills/ecc/ck/commands/save.mjs +210 -0
  210. package/src/harness_context/skills/ecc/ck/commands/shared.mjs +387 -0
  211. package/src/harness_context/skills/ecc/ck/hooks/session-start.mjs +224 -0
  212. package/src/harness_context/skills/ecc/claude-devfleet/LICENSE.ecc +21 -0
  213. package/src/harness_context/skills/ecc/claude-devfleet/SKILL.md +112 -0
  214. package/src/harness_context/skills/ecc/click-path-audit/LICENSE.ecc +21 -0
  215. package/src/harness_context/skills/ecc/click-path-audit/SKILL.md +245 -0
  216. package/src/harness_context/skills/ecc/clickhouse-io/LICENSE.ecc +21 -0
  217. package/src/harness_context/skills/ecc/clickhouse-io/SKILL.md +445 -0
  218. package/src/harness_context/skills/ecc/code-tour/LICENSE.ecc +21 -0
  219. package/src/harness_context/skills/ecc/code-tour/SKILL.md +254 -0
  220. package/src/harness_context/skills/ecc/codebase-onboarding/LICENSE.ecc +21 -0
  221. package/src/harness_context/skills/ecc/codebase-onboarding/SKILL.md +234 -0
  222. package/src/harness_context/skills/ecc/codehealth-mcp/LICENSE.ecc +21 -0
  223. package/src/harness_context/skills/ecc/codehealth-mcp/SKILL.md +167 -0
  224. package/src/harness_context/skills/ecc/coding-standards/LICENSE.ecc +21 -0
  225. package/src/harness_context/skills/ecc/coding-standards/SKILL.md +551 -0
  226. package/src/harness_context/skills/ecc/competitive-platform-analysis/LICENSE.ecc +21 -0
  227. package/src/harness_context/skills/ecc/competitive-platform-analysis/SKILL.md +214 -0
  228. package/src/harness_context/skills/ecc/competitive-report-structure/LICENSE.ecc +21 -0
  229. package/src/harness_context/skills/ecc/competitive-report-structure/SKILL.md +162 -0
  230. package/src/harness_context/skills/ecc/compose-multiplatform-patterns/LICENSE.ecc +21 -0
  231. package/src/harness_context/skills/ecc/compose-multiplatform-patterns/SKILL.md +300 -0
  232. package/src/harness_context/skills/ecc/config-gc/LICENSE.ecc +21 -0
  233. package/src/harness_context/skills/ecc/config-gc/SKILL.md +120 -0
  234. package/src/harness_context/skills/ecc/configure-ecc/LICENSE.ecc +21 -0
  235. package/src/harness_context/skills/ecc/configure-ecc/SKILL.md +206 -0
  236. package/src/harness_context/skills/ecc/connections-optimizer/LICENSE.ecc +21 -0
  237. package/src/harness_context/skills/ecc/connections-optimizer/SKILL.md +190 -0
  238. package/src/harness_context/skills/ecc/content-engine/LICENSE.ecc +21 -0
  239. package/src/harness_context/skills/ecc/content-engine/SKILL.md +132 -0
  240. package/src/harness_context/skills/ecc/content-hash-cache-pattern/LICENSE.ecc +21 -0
  241. package/src/harness_context/skills/ecc/content-hash-cache-pattern/SKILL.md +162 -0
  242. package/src/harness_context/skills/ecc/context-budget/LICENSE.ecc +21 -0
  243. package/src/harness_context/skills/ecc/context-budget/SKILL.md +136 -0
  244. package/src/harness_context/skills/ecc/continuous-agent-loop/LICENSE.ecc +21 -0
  245. package/src/harness_context/skills/ecc/continuous-agent-loop/SKILL.md +46 -0
  246. package/src/harness_context/skills/ecc/continuous-learning/LICENSE.ecc +21 -0
  247. package/src/harness_context/skills/ecc/continuous-learning/SKILL.md +132 -0
  248. package/src/harness_context/skills/ecc/continuous-learning/config.json +18 -0
  249. package/src/harness_context/skills/ecc/continuous-learning/evaluate-session.sh +69 -0
  250. package/src/harness_context/skills/ecc/continuous-learning-v2/LICENSE.ecc +21 -0
  251. package/src/harness_context/skills/ecc/continuous-learning-v2/SKILL.md +377 -0
  252. package/src/harness_context/skills/ecc/continuous-learning-v2/agents/observer-loop.sh +372 -0
  253. package/src/harness_context/skills/ecc/continuous-learning-v2/agents/observer.md +189 -0
  254. package/src/harness_context/skills/ecc/continuous-learning-v2/agents/session-guardian.sh +150 -0
  255. package/src/harness_context/skills/ecc/continuous-learning-v2/agents/start-observer.sh +252 -0
  256. package/src/harness_context/skills/ecc/continuous-learning-v2/config.json +8 -0
  257. package/src/harness_context/skills/ecc/continuous-learning-v2/hooks/observe.sh +675 -0
  258. package/src/harness_context/skills/ecc/continuous-learning-v2/scripts/detect-project.sh +334 -0
  259. package/src/harness_context/skills/ecc/continuous-learning-v2/scripts/instinct-cli.py +2290 -0
  260. package/src/harness_context/skills/ecc/continuous-learning-v2/scripts/lib/homunculus-dir.sh +31 -0
  261. package/src/harness_context/skills/ecc/continuous-learning-v2/scripts/migrate-homunculus.sh +68 -0
  262. package/src/harness_context/skills/ecc/continuous-learning-v2/scripts/test_parse_instinct.py +1420 -0
  263. package/src/harness_context/skills/ecc/contract-first/LICENSE.ecc +21 -0
  264. package/src/harness_context/skills/ecc/contract-first/SKILL.md +287 -0
  265. package/src/harness_context/skills/ecc/cost-aware-llm-pipeline/LICENSE.ecc +21 -0
  266. package/src/harness_context/skills/ecc/cost-aware-llm-pipeline/SKILL.md +188 -0
  267. package/src/harness_context/skills/ecc/cost-tracking/LICENSE.ecc +21 -0
  268. package/src/harness_context/skills/ecc/cost-tracking/SKILL.md +97 -0
  269. package/src/harness_context/skills/ecc/council/LICENSE.ecc +21 -0
  270. package/src/harness_context/skills/ecc/council/SKILL.md +204 -0
  271. package/src/harness_context/skills/ecc/council-multi-model/LICENSE.ecc +21 -0
  272. package/src/harness_context/skills/ecc/council-multi-model/SKILL.md +167 -0
  273. package/src/harness_context/skills/ecc/council-multi-model/scripts/review-with-codex.js +305 -0
  274. package/src/harness_context/skills/ecc/cpp-coding-standards/LICENSE.ecc +21 -0
  275. package/src/harness_context/skills/ecc/cpp-coding-standards/SKILL.md +724 -0
  276. package/src/harness_context/skills/ecc/cpp-testing/LICENSE.ecc +21 -0
  277. package/src/harness_context/skills/ecc/cpp-testing/SKILL.md +325 -0
  278. package/src/harness_context/skills/ecc/crosspost/LICENSE.ecc +21 -0
  279. package/src/harness_context/skills/ecc/crosspost/SKILL.md +123 -0
  280. package/src/harness_context/skills/ecc/csharp-testing/LICENSE.ecc +21 -0
  281. package/src/harness_context/skills/ecc/csharp-testing/SKILL.md +322 -0
  282. package/src/harness_context/skills/ecc/customer-billing-ops/LICENSE.ecc +21 -0
  283. package/src/harness_context/skills/ecc/customer-billing-ops/SKILL.md +141 -0
  284. package/src/harness_context/skills/ecc/customs-trade-compliance/LICENSE.ecc +21 -0
  285. package/src/harness_context/skills/ecc/customs-trade-compliance/SKILL.md +263 -0
  286. package/src/harness_context/skills/ecc/dart-flutter-patterns/LICENSE.ecc +21 -0
  287. package/src/harness_context/skills/ecc/dart-flutter-patterns/SKILL.md +564 -0
  288. package/src/harness_context/skills/ecc/dashboard-builder/LICENSE.ecc +21 -0
  289. package/src/harness_context/skills/ecc/dashboard-builder/SKILL.md +109 -0
  290. package/src/harness_context/skills/ecc/data-scraper-agent/LICENSE.ecc +21 -0
  291. package/src/harness_context/skills/ecc/data-scraper-agent/SKILL.md +776 -0
  292. package/src/harness_context/skills/ecc/data-throughput-accelerator/LICENSE.ecc +21 -0
  293. package/src/harness_context/skills/ecc/data-throughput-accelerator/SKILL.md +74 -0
  294. package/src/harness_context/skills/ecc/database-migrations/LICENSE.ecc +21 -0
  295. package/src/harness_context/skills/ecc/database-migrations/SKILL.md +430 -0
  296. package/src/harness_context/skills/ecc/deep-research/LICENSE.ecc +21 -0
  297. package/src/harness_context/skills/ecc/deep-research/SKILL.md +170 -0
  298. package/src/harness_context/skills/ecc/defi-amm-security/LICENSE.ecc +21 -0
  299. package/src/harness_context/skills/ecc/defi-amm-security/SKILL.md +167 -0
  300. package/src/harness_context/skills/ecc/delivery-gate/LICENSE.ecc +21 -0
  301. package/src/harness_context/skills/ecc/delivery-gate/SKILL.md +126 -0
  302. package/src/harness_context/skills/ecc/delivery-gate/hooks/quality-gate.py +220 -0
  303. package/src/harness_context/skills/ecc/deployment-patterns/LICENSE.ecc +21 -0
  304. package/src/harness_context/skills/ecc/deployment-patterns/SKILL.md +428 -0
  305. package/src/harness_context/skills/ecc/design-system/LICENSE.ecc +21 -0
  306. package/src/harness_context/skills/ecc/design-system/SKILL.md +83 -0
  307. package/src/harness_context/skills/ecc/dev-team/LICENSE.ecc +21 -0
  308. package/src/harness_context/skills/ecc/dev-team/SKILL.md +203 -0
  309. package/src/harness_context/skills/ecc/django-celery/LICENSE.ecc +21 -0
  310. package/src/harness_context/skills/ecc/django-celery/SKILL.md +458 -0
  311. package/src/harness_context/skills/ecc/django-patterns/LICENSE.ecc +21 -0
  312. package/src/harness_context/skills/ecc/django-patterns/SKILL.md +735 -0
  313. package/src/harness_context/skills/ecc/django-security/LICENSE.ecc +21 -0
  314. package/src/harness_context/skills/ecc/django-security/SKILL.md +644 -0
  315. package/src/harness_context/skills/ecc/django-tdd/LICENSE.ecc +21 -0
  316. package/src/harness_context/skills/ecc/django-tdd/SKILL.md +730 -0
  317. package/src/harness_context/skills/ecc/django-verification/LICENSE.ecc +21 -0
  318. package/src/harness_context/skills/ecc/django-verification/SKILL.md +470 -0
  319. package/src/harness_context/skills/ecc/dmux-workflows/LICENSE.ecc +21 -0
  320. package/src/harness_context/skills/ecc/dmux-workflows/SKILL.md +192 -0
  321. package/src/harness_context/skills/ecc/docker-patterns/LICENSE.ecc +21 -0
  322. package/src/harness_context/skills/ecc/docker-patterns/SKILL.md +520 -0
  323. package/src/harness_context/skills/ecc/documentation-lookup/LICENSE.ecc +21 -0
  324. package/src/harness_context/skills/ecc/documentation-lookup/SKILL.md +91 -0
  325. package/src/harness_context/skills/ecc/dotnet-patterns/LICENSE.ecc +21 -0
  326. package/src/harness_context/skills/ecc/dotnet-patterns/SKILL.md +322 -0
  327. package/src/harness_context/skills/ecc/dynamic-workflow-mode/LICENSE.ecc +21 -0
  328. package/src/harness_context/skills/ecc/dynamic-workflow-mode/SKILL.md +124 -0
  329. package/src/harness_context/skills/ecc/e2e-testing/LICENSE.ecc +21 -0
  330. package/src/harness_context/skills/ecc/e2e-testing/SKILL.md +327 -0
  331. package/src/harness_context/skills/ecc/ecc-guide/LICENSE.ecc +21 -0
  332. package/src/harness_context/skills/ecc/ecc-guide/SKILL.md +190 -0
  333. package/src/harness_context/skills/ecc/ecc-recipes/LICENSE.ecc +21 -0
  334. package/src/harness_context/skills/ecc/ecc-recipes/SKILL.md +150 -0
  335. package/src/harness_context/skills/ecc/ecc-tools-cost-audit/LICENSE.ecc +21 -0
  336. package/src/harness_context/skills/ecc/ecc-tools-cost-audit/SKILL.md +161 -0
  337. package/src/harness_context/skills/ecc/email-ops/LICENSE.ecc +21 -0
  338. package/src/harness_context/skills/ecc/email-ops/SKILL.md +133 -0
  339. package/src/harness_context/skills/ecc/energy-procurement/LICENSE.ecc +21 -0
  340. package/src/harness_context/skills/ecc/energy-procurement/SKILL.md +228 -0
  341. package/src/harness_context/skills/ecc/enterprise-agent-ops/LICENSE.ecc +21 -0
  342. package/src/harness_context/skills/ecc/enterprise-agent-ops/SKILL.md +51 -0
  343. package/src/harness_context/skills/ecc/error-handling/LICENSE.ecc +21 -0
  344. package/src/harness_context/skills/ecc/error-handling/SKILL.md +377 -0
  345. package/src/harness_context/skills/ecc/eval-harness/LICENSE.ecc +21 -0
  346. package/src/harness_context/skills/ecc/eval-harness/SKILL.md +271 -0
  347. package/src/harness_context/skills/ecc/evm-token-decimals/LICENSE.ecc +21 -0
  348. package/src/harness_context/skills/ecc/evm-token-decimals/SKILL.md +131 -0
  349. package/src/harness_context/skills/ecc/exa-search/LICENSE.ecc +21 -0
  350. package/src/harness_context/skills/ecc/exa-search/SKILL.md +117 -0
  351. package/src/harness_context/skills/ecc/fal-ai-media/LICENSE.ecc +21 -0
  352. package/src/harness_context/skills/ecc/fal-ai-media/SKILL.md +289 -0
  353. package/src/harness_context/skills/ecc/fastapi-patterns/LICENSE.ecc +21 -0
  354. package/src/harness_context/skills/ecc/fastapi-patterns/SKILL.md +514 -0
  355. package/src/harness_context/skills/ecc/finance-billing-ops/LICENSE.ecc +21 -0
  356. package/src/harness_context/skills/ecc/finance-billing-ops/SKILL.md +128 -0
  357. package/src/harness_context/skills/ecc/flox-environments/LICENSE.ecc +21 -0
  358. package/src/harness_context/skills/ecc/flox-environments/SKILL.md +497 -0
  359. package/src/harness_context/skills/ecc/flutter-dart-code-review/LICENSE.ecc +21 -0
  360. package/src/harness_context/skills/ecc/flutter-dart-code-review/SKILL.md +436 -0
  361. package/src/harness_context/skills/ecc/foundation-models-on-device/LICENSE.ecc +21 -0
  362. package/src/harness_context/skills/ecc/foundation-models-on-device/SKILL.md +243 -0
  363. package/src/harness_context/skills/ecc/frontend-a11y/LICENSE.ecc +21 -0
  364. package/src/harness_context/skills/ecc/frontend-a11y/SKILL.md +446 -0
  365. package/src/harness_context/skills/ecc/frontend-design-direction/LICENSE.ecc +21 -0
  366. package/src/harness_context/skills/ecc/frontend-design-direction/SKILL.md +93 -0
  367. package/src/harness_context/skills/ecc/frontend-patterns/LICENSE.ecc +21 -0
  368. package/src/harness_context/skills/ecc/frontend-patterns/SKILL.md +657 -0
  369. package/src/harness_context/skills/ecc/frontend-slides/LICENSE.ecc +21 -0
  370. package/src/harness_context/skills/ecc/frontend-slides/SKILL.md +185 -0
  371. package/src/harness_context/skills/ecc/frontend-slides/STYLE_PRESETS.md +330 -0
  372. package/src/harness_context/skills/ecc/frontend-slides/animation-patterns.md +122 -0
  373. package/src/harness_context/skills/ecc/frontend-slides/html-template.md +419 -0
  374. package/src/harness_context/skills/ecc/frontend-slides/scripts/export-pdf.sh +418 -0
  375. package/src/harness_context/skills/ecc/frontend-slides/scripts/extract-pptx.py +96 -0
  376. package/src/harness_context/skills/ecc/frontend-slides/viewport-base.css +153 -0
  377. package/src/harness_context/skills/ecc/fsharp-testing/LICENSE.ecc +21 -0
  378. package/src/harness_context/skills/ecc/fsharp-testing/SKILL.md +281 -0
  379. package/src/harness_context/skills/ecc/gan-style-harness/LICENSE.ecc +21 -0
  380. package/src/harness_context/skills/ecc/gan-style-harness/SKILL.md +279 -0
  381. package/src/harness_context/skills/ecc/gateguard/LICENSE.ecc +21 -0
  382. package/src/harness_context/skills/ecc/gateguard/SKILL.md +182 -0
  383. package/src/harness_context/skills/ecc/generating-python-installer/LICENSE.ecc +21 -0
  384. package/src/harness_context/skills/ecc/generating-python-installer/SKILL.md +820 -0
  385. package/src/harness_context/skills/ecc/git-workflow/LICENSE.ecc +21 -0
  386. package/src/harness_context/skills/ecc/git-workflow/SKILL.md +716 -0
  387. package/src/harness_context/skills/ecc/github-ops/LICENSE.ecc +21 -0
  388. package/src/harness_context/skills/ecc/github-ops/SKILL.md +162 -0
  389. package/src/harness_context/skills/ecc/github-ops/references/ecc-release-checklist.md +211 -0
  390. package/src/harness_context/skills/ecc/golang-patterns/LICENSE.ecc +21 -0
  391. package/src/harness_context/skills/ecc/golang-patterns/SKILL.md +676 -0
  392. package/src/harness_context/skills/ecc/golang-testing/LICENSE.ecc +21 -0
  393. package/src/harness_context/skills/ecc/golang-testing/SKILL.md +721 -0
  394. package/src/harness_context/skills/ecc/google-workspace-ops/LICENSE.ecc +21 -0
  395. package/src/harness_context/skills/ecc/google-workspace-ops/SKILL.md +96 -0
  396. package/src/harness_context/skills/ecc/growth-log/LICENSE.ecc +21 -0
  397. package/src/harness_context/skills/ecc/growth-log/SKILL.md +128 -0
  398. package/src/harness_context/skills/ecc/healthcare-cdss-patterns/LICENSE.ecc +21 -0
  399. package/src/harness_context/skills/ecc/healthcare-cdss-patterns/SKILL.md +246 -0
  400. package/src/harness_context/skills/ecc/healthcare-emr-patterns/LICENSE.ecc +21 -0
  401. package/src/harness_context/skills/ecc/healthcare-emr-patterns/SKILL.md +160 -0
  402. package/src/harness_context/skills/ecc/healthcare-eval-harness/LICENSE.ecc +21 -0
  403. package/src/harness_context/skills/ecc/healthcare-eval-harness/SKILL.md +208 -0
  404. package/src/harness_context/skills/ecc/healthcare-phi-compliance/LICENSE.ecc +21 -0
  405. package/src/harness_context/skills/ecc/healthcare-phi-compliance/SKILL.md +146 -0
  406. package/src/harness_context/skills/ecc/hermes-imports/LICENSE.ecc +21 -0
  407. package/src/harness_context/skills/ecc/hermes-imports/SKILL.md +89 -0
  408. package/src/harness_context/skills/ecc/hexagonal-architecture/LICENSE.ecc +21 -0
  409. package/src/harness_context/skills/ecc/hexagonal-architecture/SKILL.md +277 -0
  410. package/src/harness_context/skills/ecc/hipaa-compliance/LICENSE.ecc +21 -0
  411. package/src/harness_context/skills/ecc/hipaa-compliance/SKILL.md +79 -0
  412. package/src/harness_context/skills/ecc/homelab-network-readiness/LICENSE.ecc +21 -0
  413. package/src/harness_context/skills/ecc/homelab-network-readiness/SKILL.md +170 -0
  414. package/src/harness_context/skills/ecc/homelab-network-setup/LICENSE.ecc +21 -0
  415. package/src/harness_context/skills/ecc/homelab-network-setup/SKILL.md +130 -0
  416. package/src/harness_context/skills/ecc/homelab-pihole-dns/LICENSE.ecc +21 -0
  417. package/src/harness_context/skills/ecc/homelab-pihole-dns/SKILL.md +275 -0
  418. package/src/harness_context/skills/ecc/homelab-vlan-segmentation/LICENSE.ecc +21 -0
  419. package/src/harness_context/skills/ecc/homelab-vlan-segmentation/SKILL.md +312 -0
  420. package/src/harness_context/skills/ecc/homelab-wireguard-vpn/LICENSE.ecc +21 -0
  421. package/src/harness_context/skills/ecc/homelab-wireguard-vpn/SKILL.md +306 -0
  422. package/src/harness_context/skills/ecc/hookify-rules/LICENSE.ecc +21 -0
  423. package/src/harness_context/skills/ecc/hookify-rules/SKILL.md +128 -0
  424. package/src/harness_context/skills/ecc/inherit-legacy-style/LICENSE.ecc +21 -0
  425. package/src/harness_context/skills/ecc/inherit-legacy-style/SKILL.md +157 -0
  426. package/src/harness_context/skills/ecc/intent-driven-development/LICENSE.ecc +21 -0
  427. package/src/harness_context/skills/ecc/intent-driven-development/SKILL.md +360 -0
  428. package/src/harness_context/skills/ecc/inventory-demand-planning/LICENSE.ecc +21 -0
  429. package/src/harness_context/skills/ecc/inventory-demand-planning/SKILL.md +247 -0
  430. package/src/harness_context/skills/ecc/investor-materials/LICENSE.ecc +21 -0
  431. package/src/harness_context/skills/ecc/investor-materials/SKILL.md +97 -0
  432. package/src/harness_context/skills/ecc/investor-outreach/LICENSE.ecc +21 -0
  433. package/src/harness_context/skills/ecc/investor-outreach/SKILL.md +92 -0
  434. package/src/harness_context/skills/ecc/ios-icon-gen/LICENSE.ecc +21 -0
  435. package/src/harness_context/skills/ecc/ios-icon-gen/SKILL.md +158 -0
  436. package/src/harness_context/skills/ecc/ios-icon-gen/scripts/generate_icons.swift +258 -0
  437. package/src/harness_context/skills/ecc/ios-icon-gen/scripts/iconify_gen.sh +235 -0
  438. package/src/harness_context/skills/ecc/iterative-retrieval/LICENSE.ecc +21 -0
  439. package/src/harness_context/skills/ecc/iterative-retrieval/SKILL.md +212 -0
  440. package/src/harness_context/skills/ecc/ito-baskets/LICENSE.ecc +21 -0
  441. package/src/harness_context/skills/ecc/ito-baskets/SKILL.md +263 -0
  442. package/src/harness_context/skills/ecc/ito-baskets/agents/openai.yaml +4 -0
  443. package/src/harness_context/skills/ecc/ito-baskets/scripts/ito-baskets.js +195 -0
  444. package/src/harness_context/skills/ecc/ito-compute/LICENSE.ecc +21 -0
  445. package/src/harness_context/skills/ecc/ito-compute/SKILL.md +165 -0
  446. package/src/harness_context/skills/ecc/ito-compute/agents/openai.yaml +4 -0
  447. package/src/harness_context/skills/ecc/ito-inference/LICENSE.ecc +21 -0
  448. package/src/harness_context/skills/ecc/ito-inference/SKILL.md +119 -0
  449. package/src/harness_context/skills/ecc/ito-training/LICENSE.ecc +21 -0
  450. package/src/harness_context/skills/ecc/ito-training/SKILL.md +123 -0
  451. package/src/harness_context/skills/ecc/java-coding-standards/LICENSE.ecc +21 -0
  452. package/src/harness_context/skills/ecc/java-coding-standards/SKILL.md +384 -0
  453. package/src/harness_context/skills/ecc/jira-integration/LICENSE.ecc +21 -0
  454. package/src/harness_context/skills/ecc/jira-integration/SKILL.md +312 -0
  455. package/src/harness_context/skills/ecc/jpa-patterns/LICENSE.ecc +21 -0
  456. package/src/harness_context/skills/ecc/jpa-patterns/SKILL.md +152 -0
  457. package/src/harness_context/skills/ecc/knowledge-ops/LICENSE.ecc +21 -0
  458. package/src/harness_context/skills/ecc/knowledge-ops/SKILL.md +155 -0
  459. package/src/harness_context/skills/ecc/kotlin-coroutines-flows/LICENSE.ecc +21 -0
  460. package/src/harness_context/skills/ecc/kotlin-coroutines-flows/SKILL.md +285 -0
  461. package/src/harness_context/skills/ecc/kotlin-exposed-patterns/LICENSE.ecc +21 -0
  462. package/src/harness_context/skills/ecc/kotlin-exposed-patterns/SKILL.md +720 -0
  463. package/src/harness_context/skills/ecc/kotlin-ktor-patterns/LICENSE.ecc +21 -0
  464. package/src/harness_context/skills/ecc/kotlin-ktor-patterns/SKILL.md +690 -0
  465. package/src/harness_context/skills/ecc/kotlin-patterns/LICENSE.ecc +21 -0
  466. package/src/harness_context/skills/ecc/kotlin-patterns/SKILL.md +712 -0
  467. package/src/harness_context/skills/ecc/kotlin-testing/LICENSE.ecc +21 -0
  468. package/src/harness_context/skills/ecc/kotlin-testing/SKILL.md +825 -0
  469. package/src/harness_context/skills/ecc/kubernetes-patterns/LICENSE.ecc +21 -0
  470. package/src/harness_context/skills/ecc/kubernetes-patterns/SKILL.md +756 -0
  471. package/src/harness_context/skills/ecc/laravel-patterns/LICENSE.ecc +21 -0
  472. package/src/harness_context/skills/ecc/laravel-patterns/SKILL.md +416 -0
  473. package/src/harness_context/skills/ecc/laravel-plugin-discovery/LICENSE.ecc +21 -0
  474. package/src/harness_context/skills/ecc/laravel-plugin-discovery/SKILL.md +230 -0
  475. package/src/harness_context/skills/ecc/laravel-security/LICENSE.ecc +21 -0
  476. package/src/harness_context/skills/ecc/laravel-security/SKILL.md +948 -0
  477. package/src/harness_context/skills/ecc/laravel-tdd/LICENSE.ecc +21 -0
  478. package/src/harness_context/skills/ecc/laravel-tdd/SKILL.md +675 -0
  479. package/src/harness_context/skills/ecc/laravel-verification/LICENSE.ecc +21 -0
  480. package/src/harness_context/skills/ecc/laravel-verification/SKILL.md +180 -0
  481. package/src/harness_context/skills/ecc/latency-critical-systems/LICENSE.ecc +21 -0
  482. package/src/harness_context/skills/ecc/latency-critical-systems/SKILL.md +75 -0
  483. package/src/harness_context/skills/ecc/lead-intelligence/LICENSE.ecc +21 -0
  484. package/src/harness_context/skills/ecc/lead-intelligence/SKILL.md +333 -0
  485. package/src/harness_context/skills/ecc/lead-intelligence/agents/enrichment-agent.md +85 -0
  486. package/src/harness_context/skills/ecc/lead-intelligence/agents/mutual-mapper.md +75 -0
  487. package/src/harness_context/skills/ecc/lead-intelligence/agents/outreach-drafter.md +98 -0
  488. package/src/harness_context/skills/ecc/lead-intelligence/agents/signal-scorer.md +60 -0
  489. package/src/harness_context/skills/ecc/liquid-glass-design/LICENSE.ecc +21 -0
  490. package/src/harness_context/skills/ecc/liquid-glass-design/SKILL.md +279 -0
  491. package/src/harness_context/skills/ecc/living-docs-governance/LICENSE.ecc +21 -0
  492. package/src/harness_context/skills/ecc/living-docs-governance/SKILL.md +137 -0
  493. package/src/harness_context/skills/ecc/llm-trading-agent-security/LICENSE.ecc +21 -0
  494. package/src/harness_context/skills/ecc/llm-trading-agent-security/SKILL.md +147 -0
  495. package/src/harness_context/skills/ecc/logistics-exception-management/LICENSE.ecc +21 -0
  496. package/src/harness_context/skills/ecc/logistics-exception-management/SKILL.md +222 -0
  497. package/src/harness_context/skills/ecc/loop-design-check/LICENSE.ecc +21 -0
  498. package/src/harness_context/skills/ecc/loop-design-check/SKILL.md +143 -0
  499. package/src/harness_context/skills/ecc/mailtrap-email-integration/LICENSE.ecc +21 -0
  500. package/src/harness_context/skills/ecc/mailtrap-email-integration/SKILL.md +77 -0
  501. package/src/harness_context/skills/ecc/make-interfaces-feel-better/LICENSE.ecc +21 -0
  502. package/src/harness_context/skills/ecc/make-interfaces-feel-better/SKILL.md +152 -0
  503. package/src/harness_context/skills/ecc/manim-video/LICENSE.ecc +21 -0
  504. package/src/harness_context/skills/ecc/manim-video/SKILL.md +90 -0
  505. package/src/harness_context/skills/ecc/manim-video/assets/network_graph_scene.py +52 -0
  506. package/src/harness_context/skills/ecc/market-research/LICENSE.ecc +21 -0
  507. package/src/harness_context/skills/ecc/market-research/SKILL.md +87 -0
  508. package/src/harness_context/skills/ecc/marketing-campaign/LICENSE.ecc +21 -0
  509. package/src/harness_context/skills/ecc/marketing-campaign/SKILL.md +114 -0
  510. package/src/harness_context/skills/ecc/mcp-server-patterns/LICENSE.ecc +21 -0
  511. package/src/harness_context/skills/ecc/mcp-server-patterns/SKILL.md +70 -0
  512. package/src/harness_context/skills/ecc/messages-ops/LICENSE.ecc +21 -0
  513. package/src/harness_context/skills/ecc/messages-ops/SKILL.md +105 -0
  514. package/src/harness_context/skills/ecc/ml-adoption-playbook/LICENSE.ecc +21 -0
  515. package/src/harness_context/skills/ecc/ml-adoption-playbook/SKILL.md +57 -0
  516. package/src/harness_context/skills/ecc/mle-workflow/LICENSE.ecc +21 -0
  517. package/src/harness_context/skills/ecc/mle-workflow/SKILL.md +348 -0
  518. package/src/harness_context/skills/ecc/motion-advanced/LICENSE.ecc +21 -0
  519. package/src/harness_context/skills/ecc/motion-advanced/SKILL.md +597 -0
  520. package/src/harness_context/skills/ecc/motion-foundations/LICENSE.ecc +21 -0
  521. package/src/harness_context/skills/ecc/motion-foundations/SKILL.md +300 -0
  522. package/src/harness_context/skills/ecc/motion-patterns/LICENSE.ecc +21 -0
  523. package/src/harness_context/skills/ecc/motion-patterns/SKILL.md +435 -0
  524. package/src/harness_context/skills/ecc/motion-ui/LICENSE.ecc +21 -0
  525. package/src/harness_context/skills/ecc/motion-ui/SKILL.md +576 -0
  526. package/src/harness_context/skills/ecc/mysql-patterns/LICENSE.ecc +21 -0
  527. package/src/harness_context/skills/ecc/mysql-patterns/SKILL.md +413 -0
  528. package/src/harness_context/skills/ecc/nanoclaw-repl/LICENSE.ecc +21 -0
  529. package/src/harness_context/skills/ecc/nanoclaw-repl/SKILL.md +34 -0
  530. package/src/harness_context/skills/ecc/nasiko-control-plane/LICENSE.ecc +21 -0
  531. package/src/harness_context/skills/ecc/nasiko-control-plane/SKILL.md +49 -0
  532. package/src/harness_context/skills/ecc/nasiko-control-plane/agents/openai.yaml +4 -0
  533. package/src/harness_context/skills/ecc/nestjs-patterns/LICENSE.ecc +21 -0
  534. package/src/harness_context/skills/ecc/nestjs-patterns/SKILL.md +231 -0
  535. package/src/harness_context/skills/ecc/netmiko-ssh-automation/LICENSE.ecc +21 -0
  536. package/src/harness_context/skills/ecc/netmiko-ssh-automation/SKILL.md +174 -0
  537. package/src/harness_context/skills/ecc/network-bgp-diagnostics/LICENSE.ecc +21 -0
  538. package/src/harness_context/skills/ecc/network-bgp-diagnostics/SKILL.md +168 -0
  539. package/src/harness_context/skills/ecc/network-config-validation/LICENSE.ecc +21 -0
  540. package/src/harness_context/skills/ecc/network-config-validation/SKILL.md +211 -0
  541. package/src/harness_context/skills/ecc/network-interface-health/LICENSE.ecc +21 -0
  542. package/src/harness_context/skills/ecc/network-interface-health/SKILL.md +153 -0
  543. package/src/harness_context/skills/ecc/nextjs-turbopack/LICENSE.ecc +21 -0
  544. package/src/harness_context/skills/ecc/nextjs-turbopack/SKILL.md +58 -0
  545. package/src/harness_context/skills/ecc/nodejs-keccak256/LICENSE.ecc +21 -0
  546. package/src/harness_context/skills/ecc/nodejs-keccak256/SKILL.md +103 -0
  547. package/src/harness_context/skills/ecc/nutrient-document-processing/LICENSE.ecc +21 -0
  548. package/src/harness_context/skills/ecc/nutrient-document-processing/SKILL.md +168 -0
  549. package/src/harness_context/skills/ecc/nuxt4-patterns/LICENSE.ecc +21 -0
  550. package/src/harness_context/skills/ecc/nuxt4-patterns/SKILL.md +101 -0
  551. package/src/harness_context/skills/ecc/openclaw-persona-forge/LICENSE.ecc +21 -0
  552. package/src/harness_context/skills/ecc/openclaw-persona-forge/SKILL.md +289 -0
  553. package/src/harness_context/skills/ecc/openclaw-persona-forge/gacha.py +224 -0
  554. package/src/harness_context/skills/ecc/openclaw-persona-forge/gacha.sh +5 -0
  555. package/src/harness_context/skills/ecc/openclaw-persona-forge/references/avatar-style.md +124 -0
  556. package/src/harness_context/skills/ecc/openclaw-persona-forge/references/boundary-rules.md +53 -0
  557. package/src/harness_context/skills/ecc/openclaw-persona-forge/references/error-handling.md +53 -0
  558. package/src/harness_context/skills/ecc/openclaw-persona-forge/references/identity-tension.md +48 -0
  559. package/src/harness_context/skills/ecc/openclaw-persona-forge/references/naming-system.md +39 -0
  560. package/src/harness_context/skills/ecc/openclaw-persona-forge/references/output-template.md +166 -0
  561. package/src/harness_context/skills/ecc/opensource-pipeline/LICENSE.ecc +21 -0
  562. package/src/harness_context/skills/ecc/opensource-pipeline/SKILL.md +256 -0
  563. package/src/harness_context/skills/ecc/orch-add-feature/LICENSE.ecc +21 -0
  564. package/src/harness_context/skills/ecc/orch-add-feature/SKILL.md +45 -0
  565. package/src/harness_context/skills/ecc/orch-build-mvp/LICENSE.ecc +21 -0
  566. package/src/harness_context/skills/ecc/orch-build-mvp/SKILL.md +49 -0
  567. package/src/harness_context/skills/ecc/orch-change-feature/LICENSE.ecc +21 -0
  568. package/src/harness_context/skills/ecc/orch-change-feature/SKILL.md +43 -0
  569. package/src/harness_context/skills/ecc/orch-fix-defect/LICENSE.ecc +21 -0
  570. package/src/harness_context/skills/ecc/orch-fix-defect/SKILL.md +43 -0
  571. package/src/harness_context/skills/ecc/orch-pipeline/LICENSE.ecc +21 -0
  572. package/src/harness_context/skills/ecc/orch-pipeline/SKILL.md +121 -0
  573. package/src/harness_context/skills/ecc/orch-refine-code/LICENSE.ecc +21 -0
  574. package/src/harness_context/skills/ecc/orch-refine-code/SKILL.md +44 -0
  575. package/src/harness_context/skills/ecc/parallel-execution-optimizer/LICENSE.ecc +21 -0
  576. package/src/harness_context/skills/ecc/parallel-execution-optimizer/SKILL.md +74 -0
  577. package/src/harness_context/skills/ecc/perl-patterns/LICENSE.ecc +21 -0
  578. package/src/harness_context/skills/ecc/perl-patterns/SKILL.md +505 -0
  579. package/src/harness_context/skills/ecc/perl-security/LICENSE.ecc +21 -0
  580. package/src/harness_context/skills/ecc/perl-security/SKILL.md +504 -0
  581. package/src/harness_context/skills/ecc/perl-testing/LICENSE.ecc +21 -0
  582. package/src/harness_context/skills/ecc/perl-testing/SKILL.md +476 -0
  583. package/src/harness_context/skills/ecc/plan-canvas/LICENSE.ecc +21 -0
  584. package/src/harness_context/skills/ecc/plan-canvas/SKILL.md +196 -0
  585. package/src/harness_context/skills/ecc/plan-orchestrate/LICENSE.ecc +21 -0
  586. package/src/harness_context/skills/ecc/plan-orchestrate/SKILL.md +263 -0
  587. package/src/harness_context/skills/ecc/plankton-code-quality/LICENSE.ecc +21 -0
  588. package/src/harness_context/skills/ecc/plankton-code-quality/SKILL.md +237 -0
  589. package/src/harness_context/skills/ecc/postgres-patterns/LICENSE.ecc +21 -0
  590. package/src/harness_context/skills/ecc/postgres-patterns/SKILL.md +148 -0
  591. package/src/harness_context/skills/ecc/prediction-market-oracle-research/LICENSE.ecc +21 -0
  592. package/src/harness_context/skills/ecc/prediction-market-oracle-research/SKILL.md +64 -0
  593. package/src/harness_context/skills/ecc/prediction-market-risk-review/LICENSE.ecc +21 -0
  594. package/src/harness_context/skills/ecc/prediction-market-risk-review/SKILL.md +61 -0
  595. package/src/harness_context/skills/ecc/prisma-patterns/LICENSE.ecc +21 -0
  596. package/src/harness_context/skills/ecc/prisma-patterns/SKILL.md +401 -0
  597. package/src/harness_context/skills/ecc/product-capability/LICENSE.ecc +21 -0
  598. package/src/harness_context/skills/ecc/product-capability/SKILL.md +142 -0
  599. package/src/harness_context/skills/ecc/product-lens/LICENSE.ecc +21 -0
  600. package/src/harness_context/skills/ecc/product-lens/SKILL.md +93 -0
  601. package/src/harness_context/skills/ecc/production-audit/LICENSE.ecc +21 -0
  602. package/src/harness_context/skills/ecc/production-audit/SKILL.md +207 -0
  603. package/src/harness_context/skills/ecc/production-scheduling/LICENSE.ecc +21 -0
  604. package/src/harness_context/skills/ecc/production-scheduling/SKILL.md +238 -0
  605. package/src/harness_context/skills/ecc/project-flow-ops/LICENSE.ecc +21 -0
  606. package/src/harness_context/skills/ecc/project-flow-ops/SKILL.md +112 -0
  607. package/src/harness_context/skills/ecc/prompt-optimizer/LICENSE.ecc +21 -0
  608. package/src/harness_context/skills/ecc/prompt-optimizer/SKILL.md +398 -0
  609. package/src/harness_context/skills/ecc/python-patterns/LICENSE.ecc +21 -0
  610. package/src/harness_context/skills/ecc/python-patterns/SKILL.md +751 -0
  611. package/src/harness_context/skills/ecc/python-testing/LICENSE.ecc +21 -0
  612. package/src/harness_context/skills/ecc/python-testing/SKILL.md +817 -0
  613. package/src/harness_context/skills/ecc/pytorch-patterns/LICENSE.ecc +21 -0
  614. package/src/harness_context/skills/ecc/pytorch-patterns/SKILL.md +397 -0
  615. package/src/harness_context/skills/ecc/quality-nonconformance/LICENSE.ecc +21 -0
  616. package/src/harness_context/skills/ecc/quality-nonconformance/SKILL.md +260 -0
  617. package/src/harness_context/skills/ecc/quarkus-patterns/LICENSE.ecc +21 -0
  618. package/src/harness_context/skills/ecc/quarkus-patterns/SKILL.md +723 -0
  619. package/src/harness_context/skills/ecc/quarkus-security/LICENSE.ecc +21 -0
  620. package/src/harness_context/skills/ecc/quarkus-security/SKILL.md +468 -0
  621. package/src/harness_context/skills/ecc/quarkus-tdd/LICENSE.ecc +21 -0
  622. package/src/harness_context/skills/ecc/quarkus-tdd/SKILL.md +812 -0
  623. package/src/harness_context/skills/ecc/quarkus-verification/LICENSE.ecc +21 -0
  624. package/src/harness_context/skills/ecc/quarkus-verification/SKILL.md +481 -0
  625. package/src/harness_context/skills/ecc/ralphinho-rfc-pipeline/LICENSE.ecc +21 -0
  626. package/src/harness_context/skills/ecc/ralphinho-rfc-pipeline/SKILL.md +68 -0
  627. package/src/harness_context/skills/ecc/react-native-patterns/LICENSE.ecc +21 -0
  628. package/src/harness_context/skills/ecc/react-native-patterns/SKILL.md +326 -0
  629. package/src/harness_context/skills/ecc/react-patterns/LICENSE.ecc +21 -0
  630. package/src/harness_context/skills/ecc/react-patterns/SKILL.md +342 -0
  631. package/src/harness_context/skills/ecc/react-performance/LICENSE.ecc +21 -0
  632. package/src/harness_context/skills/ecc/react-performance/SKILL.md +575 -0
  633. package/src/harness_context/skills/ecc/react-testing/LICENSE.ecc +21 -0
  634. package/src/harness_context/skills/ecc/react-testing/SKILL.md +424 -0
  635. package/src/harness_context/skills/ecc/recsys-pipeline-architect/LICENSE.ecc +21 -0
  636. package/src/harness_context/skills/ecc/recsys-pipeline-architect/SKILL.md +115 -0
  637. package/src/harness_context/skills/ecc/recursive-decision-ledger/LICENSE.ecc +21 -0
  638. package/src/harness_context/skills/ecc/recursive-decision-ledger/SKILL.md +81 -0
  639. package/src/harness_context/skills/ecc/redis-patterns/LICENSE.ecc +21 -0
  640. package/src/harness_context/skills/ecc/redis-patterns/SKILL.md +404 -0
  641. package/src/harness_context/skills/ecc/regex-vs-llm-structured-text/LICENSE.ecc +21 -0
  642. package/src/harness_context/skills/ecc/regex-vs-llm-structured-text/SKILL.md +221 -0
  643. package/src/harness_context/skills/ecc/remotion-video-creation/LICENSE.ecc +21 -0
  644. package/src/harness_context/skills/ecc/remotion-video-creation/SKILL.md +43 -0
  645. package/src/harness_context/skills/ecc/remotion-video-creation/rules/3d.md +86 -0
  646. package/src/harness_context/skills/ecc/remotion-video-creation/rules/animations.md +29 -0
  647. package/src/harness_context/skills/ecc/remotion-video-creation/rules/assets/charts-bar-chart.tsx +173 -0
  648. package/src/harness_context/skills/ecc/remotion-video-creation/rules/assets/text-animations-typewriter.tsx +100 -0
  649. package/src/harness_context/skills/ecc/remotion-video-creation/rules/assets/text-animations-word-highlight.tsx +108 -0
  650. package/src/harness_context/skills/ecc/remotion-video-creation/rules/assets.md +78 -0
  651. package/src/harness_context/skills/ecc/remotion-video-creation/rules/audio.md +172 -0
  652. package/src/harness_context/skills/ecc/remotion-video-creation/rules/calculate-metadata.md +104 -0
  653. package/src/harness_context/skills/ecc/remotion-video-creation/rules/can-decode.md +75 -0
  654. package/src/harness_context/skills/ecc/remotion-video-creation/rules/charts.md +58 -0
  655. package/src/harness_context/skills/ecc/remotion-video-creation/rules/compositions.md +146 -0
  656. package/src/harness_context/skills/ecc/remotion-video-creation/rules/display-captions.md +126 -0
  657. package/src/harness_context/skills/ecc/remotion-video-creation/rules/extract-frames.md +229 -0
  658. package/src/harness_context/skills/ecc/remotion-video-creation/rules/fonts.md +152 -0
  659. package/src/harness_context/skills/ecc/remotion-video-creation/rules/get-audio-duration.md +58 -0
  660. package/src/harness_context/skills/ecc/remotion-video-creation/rules/get-video-dimensions.md +68 -0
  661. package/src/harness_context/skills/ecc/remotion-video-creation/rules/get-video-duration.md +58 -0
  662. package/src/harness_context/skills/ecc/remotion-video-creation/rules/gifs.md +138 -0
  663. package/src/harness_context/skills/ecc/remotion-video-creation/rules/images.md +130 -0
  664. package/src/harness_context/skills/ecc/remotion-video-creation/rules/import-srt-captions.md +67 -0
  665. package/src/harness_context/skills/ecc/remotion-video-creation/rules/lottie.md +67 -0
  666. package/src/harness_context/skills/ecc/remotion-video-creation/rules/measuring-dom-nodes.md +34 -0
  667. package/src/harness_context/skills/ecc/remotion-video-creation/rules/measuring-text.md +143 -0
  668. package/src/harness_context/skills/ecc/remotion-video-creation/rules/sequencing.md +106 -0
  669. package/src/harness_context/skills/ecc/remotion-video-creation/rules/tailwind.md +11 -0
  670. package/src/harness_context/skills/ecc/remotion-video-creation/rules/text-animations.md +20 -0
  671. package/src/harness_context/skills/ecc/remotion-video-creation/rules/timing.md +179 -0
  672. package/src/harness_context/skills/ecc/remotion-video-creation/rules/transcribe-captions.md +19 -0
  673. package/src/harness_context/skills/ecc/remotion-video-creation/rules/transitions.md +122 -0
  674. package/src/harness_context/skills/ecc/remotion-video-creation/rules/trimming.md +52 -0
  675. package/src/harness_context/skills/ecc/remotion-video-creation/rules/videos.md +171 -0
  676. package/src/harness_context/skills/ecc/repo-scan/LICENSE.ecc +21 -0
  677. package/src/harness_context/skills/ecc/repo-scan/SKILL.md +170 -0
  678. package/src/harness_context/skills/ecc/research-ops/LICENSE.ecc +21 -0
  679. package/src/harness_context/skills/ecc/research-ops/SKILL.md +113 -0
  680. package/src/harness_context/skills/ecc/returns-reverse-logistics/LICENSE.ecc +21 -0
  681. package/src/harness_context/skills/ecc/returns-reverse-logistics/SKILL.md +240 -0
  682. package/src/harness_context/skills/ecc/rules-distill/LICENSE.ecc +21 -0
  683. package/src/harness_context/skills/ecc/rules-distill/SKILL.md +265 -0
  684. package/src/harness_context/skills/ecc/rules-distill/scripts/scan-rules.sh +58 -0
  685. package/src/harness_context/skills/ecc/rules-distill/scripts/scan-skills.sh +129 -0
  686. package/src/harness_context/skills/ecc/rust-patterns/LICENSE.ecc +21 -0
  687. package/src/harness_context/skills/ecc/rust-patterns/SKILL.md +500 -0
  688. package/src/harness_context/skills/ecc/rust-testing/LICENSE.ecc +21 -0
  689. package/src/harness_context/skills/ecc/rust-testing/SKILL.md +501 -0
  690. package/src/harness_context/skills/ecc/safety-guard/LICENSE.ecc +21 -0
  691. package/src/harness_context/skills/ecc/safety-guard/SKILL.md +76 -0
  692. package/src/harness_context/skills/ecc/santa-method/LICENSE.ecc +21 -0
  693. package/src/harness_context/skills/ecc/santa-method/SKILL.md +307 -0
  694. package/src/harness_context/skills/ecc/scientific-db-pubmed-database/LICENSE.ecc +21 -0
  695. package/src/harness_context/skills/ecc/scientific-db-pubmed-database/SKILL.md +176 -0
  696. package/src/harness_context/skills/ecc/scientific-db-uspto-database/LICENSE.ecc +21 -0
  697. package/src/harness_context/skills/ecc/scientific-db-uspto-database/SKILL.md +178 -0
  698. package/src/harness_context/skills/ecc/scientific-pkg-gget/LICENSE.ecc +21 -0
  699. package/src/harness_context/skills/ecc/scientific-pkg-gget/SKILL.md +167 -0
  700. package/src/harness_context/skills/ecc/scientific-thinking-literature-review/LICENSE.ecc +21 -0
  701. package/src/harness_context/skills/ecc/scientific-thinking-literature-review/SKILL.md +193 -0
  702. package/src/harness_context/skills/ecc/scientific-thinking-scholar-evaluation/LICENSE.ecc +21 -0
  703. package/src/harness_context/skills/ecc/scientific-thinking-scholar-evaluation/SKILL.md +161 -0
  704. package/src/harness_context/skills/ecc/search-first/LICENSE.ecc +21 -0
  705. package/src/harness_context/skills/ecc/search-first/SKILL.md +183 -0
  706. package/src/harness_context/skills/ecc/security-bounty-hunter/LICENSE.ecc +21 -0
  707. package/src/harness_context/skills/ecc/security-bounty-hunter/SKILL.md +100 -0
  708. package/src/harness_context/skills/ecc/security-review/LICENSE.ecc +21 -0
  709. package/src/harness_context/skills/ecc/security-review/SKILL.md +504 -0
  710. package/src/harness_context/skills/ecc/security-review/cloud-infrastructure-security.md +361 -0
  711. package/src/harness_context/skills/ecc/security-scan/LICENSE.ecc +21 -0
  712. package/src/harness_context/skills/ecc/security-scan/SKILL.md +166 -0
  713. package/src/harness_context/skills/ecc/seo/LICENSE.ecc +21 -0
  714. package/src/harness_context/skills/ecc/seo/SKILL.md +155 -0
  715. package/src/harness_context/skills/ecc/skill-comply/LICENSE.ecc +21 -0
  716. package/src/harness_context/skills/ecc/skill-comply/SKILL.md +59 -0
  717. package/src/harness_context/skills/ecc/skill-comply/fixtures/compliant_trace.jsonl +5 -0
  718. package/src/harness_context/skills/ecc/skill-comply/fixtures/noncompliant_trace.jsonl +3 -0
  719. package/src/harness_context/skills/ecc/skill-comply/fixtures/tdd_spec.yaml +44 -0
  720. package/src/harness_context/skills/ecc/skill-comply/prompts/classifier.md +24 -0
  721. package/src/harness_context/skills/ecc/skill-comply/prompts/scenario_generator.md +62 -0
  722. package/src/harness_context/skills/ecc/skill-comply/prompts/spec_generator.md +42 -0
  723. package/src/harness_context/skills/ecc/skill-comply/pyproject.toml +16 -0
  724. package/src/harness_context/skills/ecc/skill-comply/scripts/__init__.py +0 -0
  725. package/src/harness_context/skills/ecc/skill-comply/scripts/classifier.py +85 -0
  726. package/src/harness_context/skills/ecc/skill-comply/scripts/grader.py +124 -0
  727. package/src/harness_context/skills/ecc/skill-comply/scripts/parser.py +107 -0
  728. package/src/harness_context/skills/ecc/skill-comply/scripts/report.py +170 -0
  729. package/src/harness_context/skills/ecc/skill-comply/scripts/run.py +127 -0
  730. package/src/harness_context/skills/ecc/skill-comply/scripts/runner.py +245 -0
  731. package/src/harness_context/skills/ecc/skill-comply/scripts/scenario_generator.py +70 -0
  732. package/src/harness_context/skills/ecc/skill-comply/scripts/spec_generator.py +72 -0
  733. package/src/harness_context/skills/ecc/skill-comply/scripts/utils.py +13 -0
  734. package/src/harness_context/skills/ecc/skill-comply/tests/test_grader.py +197 -0
  735. package/src/harness_context/skills/ecc/skill-comply/tests/test_parser.py +90 -0
  736. package/src/harness_context/skills/ecc/skill-comply/tests/test_runner.py +316 -0
  737. package/src/harness_context/skills/ecc/skill-scout/LICENSE.ecc +21 -0
  738. package/src/harness_context/skills/ecc/skill-scout/SKILL.md +141 -0
  739. package/src/harness_context/skills/ecc/skill-stocktake/LICENSE.ecc +21 -0
  740. package/src/harness_context/skills/ecc/skill-stocktake/SKILL.md +195 -0
  741. package/src/harness_context/skills/ecc/skill-stocktake/scripts/quick-diff.sh +118 -0
  742. package/src/harness_context/skills/ecc/skill-stocktake/scripts/save-results.sh +56 -0
  743. package/src/harness_context/skills/ecc/skill-stocktake/scripts/scan.sh +211 -0
  744. package/src/harness_context/skills/ecc/social-graph-ranker/LICENSE.ecc +21 -0
  745. package/src/harness_context/skills/ecc/social-graph-ranker/SKILL.md +155 -0
  746. package/src/harness_context/skills/ecc/social-publisher/LICENSE.ecc +21 -0
  747. package/src/harness_context/skills/ecc/social-publisher/SKILL.md +139 -0
  748. package/src/harness_context/skills/ecc/springboot-patterns/LICENSE.ecc +21 -0
  749. package/src/harness_context/skills/ecc/springboot-patterns/SKILL.md +315 -0
  750. package/src/harness_context/skills/ecc/springboot-security/LICENSE.ecc +21 -0
  751. package/src/harness_context/skills/ecc/springboot-security/SKILL.md +273 -0
  752. package/src/harness_context/skills/ecc/springboot-tdd/LICENSE.ecc +21 -0
  753. package/src/harness_context/skills/ecc/springboot-tdd/SKILL.md +159 -0
  754. package/src/harness_context/skills/ecc/springboot-verification/LICENSE.ecc +21 -0
  755. package/src/harness_context/skills/ecc/springboot-verification/SKILL.md +232 -0
  756. package/src/harness_context/skills/ecc/strategic-compact/LICENSE.ecc +21 -0
  757. package/src/harness_context/skills/ecc/strategic-compact/SKILL.md +156 -0
  758. package/src/harness_context/skills/ecc/swift-actor-persistence/LICENSE.ecc +21 -0
  759. package/src/harness_context/skills/ecc/swift-actor-persistence/SKILL.md +144 -0
  760. package/src/harness_context/skills/ecc/swift-concurrency-6-2/LICENSE.ecc +21 -0
  761. package/src/harness_context/skills/ecc/swift-concurrency-6-2/SKILL.md +216 -0
  762. package/src/harness_context/skills/ecc/swift-protocol-di-testing/LICENSE.ecc +21 -0
  763. package/src/harness_context/skills/ecc/swift-protocol-di-testing/SKILL.md +191 -0
  764. package/src/harness_context/skills/ecc/swiftui-patterns/LICENSE.ecc +21 -0
  765. package/src/harness_context/skills/ecc/swiftui-patterns/SKILL.md +259 -0
  766. package/src/harness_context/skills/ecc/taste/LICENSE.ecc +21 -0
  767. package/src/harness_context/skills/ecc/taste/SKILL.md +264 -0
  768. package/src/harness_context/skills/ecc/taste/references/genre-taxonomy.md +87 -0
  769. package/src/harness_context/skills/ecc/tasteforge-video/LICENSE.ecc +21 -0
  770. package/src/harness_context/skills/ecc/tasteforge-video/SKILL.md +192 -0
  771. package/src/harness_context/skills/ecc/tdd-workflow/LICENSE.ecc +21 -0
  772. package/src/harness_context/skills/ecc/tdd-workflow/SKILL.md +583 -0
  773. package/src/harness_context/skills/ecc/team-agent-orchestration/LICENSE.ecc +21 -0
  774. package/src/harness_context/skills/ecc/team-agent-orchestration/SKILL.md +111 -0
  775. package/src/harness_context/skills/ecc/team-builder/LICENSE.ecc +21 -0
  776. package/src/harness_context/skills/ecc/team-builder/SKILL.md +169 -0
  777. package/src/harness_context/skills/ecc/terminal-opener/LICENSE.ecc +21 -0
  778. package/src/harness_context/skills/ecc/terminal-opener/SKILL.md +55 -0
  779. package/src/harness_context/skills/ecc/terminal-opener/agents/openai.yaml +4 -0
  780. package/src/harness_context/skills/ecc/terminal-opener/scripts/open-terminal.js +396 -0
  781. package/src/harness_context/skills/ecc/terminal-ops/LICENSE.ecc +21 -0
  782. package/src/harness_context/skills/ecc/terminal-ops/SKILL.md +110 -0
  783. package/src/harness_context/skills/ecc/tinystruct-patterns/LICENSE.ecc +21 -0
  784. package/src/harness_context/skills/ecc/tinystruct-patterns/SKILL.md +279 -0
  785. package/src/harness_context/skills/ecc/tinystruct-patterns/references/architecture.md +90 -0
  786. package/src/harness_context/skills/ecc/tinystruct-patterns/references/data-handling.md +60 -0
  787. package/src/harness_context/skills/ecc/tinystruct-patterns/references/database.md +99 -0
  788. package/src/harness_context/skills/ecc/tinystruct-patterns/references/routing.md +64 -0
  789. package/src/harness_context/skills/ecc/tinystruct-patterns/references/system-usage.md +97 -0
  790. package/src/harness_context/skills/ecc/tinystruct-patterns/references/testing.md +72 -0
  791. package/src/harness_context/skills/ecc/token-budget-advisor/LICENSE.ecc +21 -0
  792. package/src/harness_context/skills/ecc/token-budget-advisor/SKILL.md +134 -0
  793. package/src/harness_context/skills/ecc/ui-demo/LICENSE.ecc +21 -0
  794. package/src/harness_context/skills/ecc/ui-demo/SKILL.md +466 -0
  795. package/src/harness_context/skills/ecc/ui-to-vue/LICENSE.ecc +21 -0
  796. package/src/harness_context/skills/ecc/ui-to-vue/SKILL.md +135 -0
  797. package/src/harness_context/skills/ecc/uncloud/LICENSE.ecc +21 -0
  798. package/src/harness_context/skills/ecc/uncloud/SKILL.md +344 -0
  799. package/src/harness_context/skills/ecc/unified-memory/LICENSE.ecc +21 -0
  800. package/src/harness_context/skills/ecc/unified-memory/SKILL.md +170 -0
  801. package/src/harness_context/skills/ecc/unified-notifications-ops/LICENSE.ecc +21 -0
  802. package/src/harness_context/skills/ecc/unified-notifications-ops/SKILL.md +188 -0
  803. package/src/harness_context/skills/ecc/verification-loop/LICENSE.ecc +21 -0
  804. package/src/harness_context/skills/ecc/verification-loop/SKILL.md +129 -0
  805. package/src/harness_context/skills/ecc/video-editing/LICENSE.ecc +21 -0
  806. package/src/harness_context/skills/ecc/video-editing/SKILL.md +311 -0
  807. package/src/harness_context/skills/ecc/videodb/LICENSE.ecc +21 -0
  808. package/src/harness_context/skills/ecc/videodb/SKILL.md +375 -0
  809. package/src/harness_context/skills/ecc/videodb/reference/api-reference.md +550 -0
  810. package/src/harness_context/skills/ecc/videodb/reference/capture-reference.md +407 -0
  811. package/src/harness_context/skills/ecc/videodb/reference/capture.md +101 -0
  812. package/src/harness_context/skills/ecc/videodb/reference/editor.md +443 -0
  813. package/src/harness_context/skills/ecc/videodb/reference/generative.md +331 -0
  814. package/src/harness_context/skills/ecc/videodb/reference/rtstream-reference.md +564 -0
  815. package/src/harness_context/skills/ecc/videodb/reference/rtstream.md +65 -0
  816. package/src/harness_context/skills/ecc/videodb/reference/search.md +230 -0
  817. package/src/harness_context/skills/ecc/videodb/reference/streaming.md +406 -0
  818. package/src/harness_context/skills/ecc/videodb/reference/use-cases.md +118 -0
  819. package/src/harness_context/skills/ecc/videodb/scripts/ws_listener.py +282 -0
  820. package/src/harness_context/skills/ecc/visa-doc-translate/LICENSE.ecc +21 -0
  821. package/src/harness_context/skills/ecc/visa-doc-translate/README.md +86 -0
  822. package/src/harness_context/skills/ecc/visa-doc-translate/SKILL.md +117 -0
  823. package/src/harness_context/skills/ecc/vite-patterns/LICENSE.ecc +21 -0
  824. package/src/harness_context/skills/ecc/vite-patterns/SKILL.md +450 -0
  825. package/src/harness_context/skills/ecc/vue-patterns/LICENSE.ecc +21 -0
  826. package/src/harness_context/skills/ecc/vue-patterns/SKILL.md +471 -0
  827. package/src/harness_context/skills/ecc/windows-desktop-e2e/LICENSE.ecc +21 -0
  828. package/src/harness_context/skills/ecc/windows-desktop-e2e/SKILL.md +888 -0
  829. package/src/harness_context/skills/ecc/workspace-surface-audit/LICENSE.ecc +21 -0
  830. package/src/harness_context/skills/ecc/workspace-surface-audit/SKILL.md +126 -0
  831. package/src/harness_context/skills/ecc/x-api/LICENSE.ecc +21 -0
  832. package/src/harness_context/skills/ecc/x-api/SKILL.md +244 -0
  833. package/src/harness_context/skills/ecc_catalog.json +2233 -0
  834. package/src/harness_context/skills/router.py +394 -0
  835. package/src/harness_context/workspace/roots.py +1 -1
@@ -0,0 +1,145 @@
1
+ ---
2
+ name: brand-discovery
3
+ description: >-
4
+ Use when a brand needs to discover or articulate its identity through
5
+ structured multi-session interviews. Covers purpose, positioning, audience,
6
+ personality, voice, narrative, and founder-brand tension across 8 modules
7
+ using laddering, 5 Whys, and projective techniques. Produces a resumable
8
+ session with disk-persisted state and a master brandbook (90_SYNTHESIS.md).
9
+ ---
10
+
11
+ # Brand Discovery
12
+
13
+ Use this skill to conduct a structured, adaptive brand identity interview.
14
+ The goal is a complete `90_SYNTHESIS.md` — a master brandbook the
15
+ organization can use to brief designers, writers, and external
16
+ collaborators.
17
+
18
+ The interview runs across multiple sessions. Capture answers to disk as you
19
+ go so that no elicited knowledge is lost when a conversation ends, and so a
20
+ later session can resume from where the last one stopped.
21
+
22
+ ## When to Activate
23
+
24
+ - A brand is being created, repositioned, or needs a written identity reference to brief collaborators.
25
+ - Multiple sessions are expected — the conversation will span days or weeks.
26
+ - Multiple founders or stakeholders need individual interviews before a reconciliation pass.
27
+ - The user wants a structured, repeatable method rather than an ad-hoc chat.
28
+ - Existing brand documentation is scattered, implicit, or founder-dependent and needs to be made explicit.
29
+
30
+ ## Session start protocol
31
+
32
+ On every activation, perform these steps **before** asking any interview
33
+ question:
34
+
35
+ 1. **Check for prior progress.** Look for an existing set of module files
36
+ and a `state.json` checkpoint in the project's brand-identity directory.
37
+ If none exists, this is a fresh start — confirm the brand name,
38
+ participants, and where to save the brand-identity files, then begin at
39
+ the first module.
40
+ 2. **Read the current module file** if one is in progress, and scan its Raw
41
+ section for previously captured answers.
42
+ 3. **Report to the user** in two or three sentences: which module we are
43
+ in, its status, and what remains. Then ask: "Continue here, or switch
44
+ module?"
45
+
46
+ ## Interview discipline
47
+
48
+ Apply these rules throughout every module:
49
+
50
+ 1. **One question at a time.** Never present a list of questions.
51
+ 2. **After each answer:** short paraphrase → one deepening probe OR close
52
+ the thread if the topic is saturated. Never move on silently.
53
+ 3. **Laddering:** for every "what" answer, follow with "Why does that
54
+ matter to you?" until a core value surfaces (typically two to four
55
+ iterations).
56
+ 4. **5 Whys:** for beliefs or positioning claims — push until the root
57
+ reason, not the surface declaration, is on the table.
58
+ 5. **Detect thin answers:** if generic, jargon-heavy, or vague, ask for
59
+ one concrete example, a client story, or a number.
60
+ 6. **Projective techniques** (use once per module to break a plateau):
61
+ - "If the brand were a person, how would they walk into a room?"
62
+ - Brand obituary: "If the organization closed in five years, what would
63
+ customers miss? What would you regret not having said?"
64
+ - Competitive contrast: "Name one peer you admire but would never want
65
+ to become. What specifically makes them the wrong model?"
66
+ 7. **Saturation signal:** when two consecutive probes produce no new
67
+ information, summarise and close the module.
68
+ 8. **End of module:** write a structured module file with two sections:
69
+ - `## Raw` — verbatim quotes and examples.
70
+ - `## Synthesis` — your interpretation, three candidate formulations,
71
+ open questions, contradictions between participants.
72
+ Then update the `state.json` checkpoint (see State protocol below).
73
+
74
+ ## Module sequence
75
+
76
+ | File | Label | Frameworks used |
77
+ |------|-------|-----------------|
78
+ | `10_purpose-why.md` | Purpose / Why | Sinek Golden Circle, Lencioni |
79
+ | `20_positioning.md` | Positioning | Dunford "Obviously Awesome", Moore template |
80
+ | `30_audience-niche.md` | Audience & Niche | Baker "Business of Expertise", ICP |
81
+ | `40_personality-archetype.md` | Personality & Archetype | Mark & Pearson 12 archetypes, J. Aaker 5 dims |
82
+ | `50_voice-tone.md` | Voice & Tone | Brand voice guidelines |
83
+ | `60_narrative-story.md` | Narrative / Story | Neumeier trueline, brand story arc |
84
+ | `70_founder-tension.md` | Founder Brands vs Studio Brand | Enns "Win Without Pitching" |
85
+ | `90_SYNTHESIS.md` | Master Brandbook | Kapferer prism, Aaker brand system |
86
+
87
+ Complete modules in order. Honour a user request to jump modules and note
88
+ the skip in `state.json`.
89
+
90
+ ## State write protocol
91
+
92
+ After each module reaches saturation or done status, write two files:
93
+
94
+ **Module file** at `modules/{moduleFile}` — full Raw and Synthesis content.
95
+
96
+ **`state.json`** — a lightweight checkpoint so a later session can resume.
97
+ Update `completedModules`, `inProgressModule`, `nextModule`, `lastUpdated`.
98
+ Schema:
99
+
100
+ ```json
101
+ {
102
+ "session": "{brand_name}-brand-{YYYY-MM}",
103
+ "outputPath": "{path_to_brand_identity_directory}",
104
+ "completedModules": [],
105
+ "inProgressModule": "10_purpose-why.md",
106
+ "nextModule": "20_positioning.md",
107
+ "participants": ["founder-A"],
108
+ "lastUpdated": "{ISO-8601}"
109
+ }
110
+ ```
111
+
112
+ After writing, confirm: "Module X saved. State updated. Next: Y."
113
+
114
+ **Terminal module (90_SYNTHESIS.md):** when writing the final synthesis,
115
+ set `inProgressModule` to `"90_SYNTHESIS.md"` and `nextModule` to `null`
116
+ in `state.json`. After writing, set `completedModules` to include
117
+ `"90_SYNTHESIS.md"`, then set `inProgressModule` to `null` — leaving it
118
+ populated would cause a future resumption to treat the completed brandbook
119
+ as still in progress. Confirm: "Brandbook complete. All modules saved."
120
+
121
+ ## Multi-founder mode
122
+
123
+ When more than one founder participates, write each founder's answers to
124
+ `founders/{participant}.md` instead of the main module files. Validate the
125
+ `participant` name before writing: accept only alphanumeric characters and
126
+ hyphens (e.g. `founder-a`, `anna`); reject names containing path separators
127
+ (`/`, `\`, `..`) or special characters. Validate `moduleFile` against the
128
+ enumerated module sequence (10 through 90 only). Validate `outputPath` to
129
+ ensure it is an absolute path within the project directory — reject relative
130
+ paths and paths that escape via `..` segments. After all founders complete a
131
+ module, run a reconciliation pass: summarise convergences and divergences in
132
+ the module file, flag "productive tensions" for the group alignment workshop.
133
+
134
+ ## Anti-Patterns
135
+
136
+ - **Starting without reading state first.** Every session must open by checking for existing module files and `state.json`. Skipping this loses all continuity from prior sessions.
137
+ - **Asking multiple questions at once.** One question at a time is not optional — lists produce checklist answers, not real insight.
138
+ - **Moving to Synthesis before saturation.** If the last two probes produced no new information, the module is done. If they did — it isn't.
139
+ - **Skipping multi-founder reconciliation.** When multiple stakeholders are involved, individual interviews must complete before reconciliation. Discussing the brand collectively first introduces anchoring bias.
140
+ - **Treating this as a one-shot session.** This skill is designed for multiple sessions. Rushing to `90_SYNTHESIS.md` in one conversation produces shallow output.
141
+
142
+ ## Related Skills
143
+
144
+ - `competitive-platform-analysis` — after brand-discovery establishes the positioning brief, use this to scope and categorise the competitor set.
145
+ - `brand-voice` (ECC) — if the brand-discovery voice-and-tone module needs a separate, source-derived writing-style profile.
@@ -0,0 +1,40 @@
1
+ # Module 10 — Purpose / Why
2
+
3
+ > **Frameworks:** Sinek Golden Circle · Lencioni organisational purpose
4
+ >
5
+ > **Goal:** Surface the brand's core belief — the Why that exists independently
6
+ > of what the organisation sells or how it delivers. Captures the founding
7
+ > conviction, not the elevator pitch.
8
+
9
+ ---
10
+
11
+ ## Raw
12
+
13
+ <!-- Verbatim quotes, stories, and examples captured during the interview.
14
+ Record exact language — paraphrase belongs in Synthesis, not here.
15
+ Include speaker attribution if multi-founder session. -->
16
+
17
+ ### Core belief (why does this exist?)
18
+
19
+ ### The behavioural How (values in action, not poster slogans)
20
+
21
+ ### What the brand refuses to be or do
22
+
23
+ ### Founder quotes strong enough to become internal anchors
24
+
25
+ ---
26
+
27
+ ## Synthesis
28
+
29
+ <!-- Your interpretation of the raw material.
30
+ Write three sections: formulations, open questions, contradictions. -->
31
+
32
+ ### Candidate Why formulations (offer 2–3 versions, vary register and specificity)
33
+
34
+ 1.
35
+ 2.
36
+ 3. ### Open questions / threads to pursue in later modules
37
+
38
+ ### Contradictions or tensions between participants (multi-founder only)
39
+
40
+ ### How does this Why constrain or enable positioning? (bridge to Module 20)
@@ -0,0 +1,44 @@
1
+ # Module 20 — Positioning
2
+
3
+ > **Frameworks:** Dunford *Obviously Awesome* · Moore crossing-the-chasm template ·
4
+ > Jobs-to-be-done lens
5
+ >
6
+ > **Goal:** Define the brand's competitive frame — who it's for, what category it
7
+ > competes in, what it does uniquely, and why that matters to the target client.
8
+ > Output is the raw material for a positioning statement the brand can act on.
9
+
10
+ ---
11
+
12
+ ## Raw
13
+
14
+ <!-- Verbatim quotes and examples. Record exact language. -->
15
+
16
+ ### Who is the target client? (role, company type, situation)
17
+
18
+ ### What category does the brand compete in? (how clients currently solve this problem)
19
+
20
+ ### What makes the brand different from alternatives in that category?
21
+
22
+ ### What does the target client care about most? (the value they get that others can't match)
23
+
24
+ ### Competitive alternatives named by the founder (include "do nothing" / "hire in-house")
25
+
26
+ ### Phrases or metaphors the founder uses naturally to describe what they do
27
+
28
+ ---
29
+
30
+ ## Synthesis
31
+
32
+ ### Positioning statement draft (Dunford template)
33
+ > For **[target client]** who **[situation / JTBD]**, **[brand name]** is the
34
+ > **[category]** that **[unique value]**. Unlike **[alternatives]**, we
35
+ > **[key differentiator]**.
36
+
37
+ ### Alternative framings (vary the category or the differentiator)
38
+
39
+ 1.
40
+ 2. ### White-space hypothesis (what no competitor is claiming that this brand could own)
41
+
42
+ ### Open questions / ambiguities
43
+
44
+ ### Tensions with Module 10 Why (flag any contradictions for Module 90 reconciliation)
@@ -0,0 +1,52 @@
1
+ # Module 30 — Audience & Niche
2
+
3
+ > **Frameworks:** Baker *The Business of Expertise* · Ideal Client Profile (ICP) ·
4
+ > Pain / trigger / desired outcome lens
5
+ >
6
+ > **Goal:** Make the target audience concrete enough to brief a copywriter or run
7
+ > a paid campaign — not a demographic sketch, but a psychographic and situational
8
+ > portrait of the best client the brand wants more of.
9
+
10
+ ---
11
+
12
+ ## Raw
13
+
14
+ <!-- Verbatim quotes and examples. -->
15
+
16
+ ### Who is the ideal client? (describe a specific person, not a segment)
17
+
18
+ ### What situation or trigger brings them to look for help?
19
+
20
+ ### What have they tried before and why did it fall short?
21
+
22
+ ### What does success look like to them? (in their words, not the brand's)
23
+
24
+ ### What do they fear or want to avoid?
25
+
26
+ ### Worst-fit clients (who the brand doesn't want to work with, and why)
27
+
28
+ ### Quotes or stories from real past clients that illustrate the ideal fit
29
+
30
+ ---
31
+
32
+ ## Synthesis
33
+
34
+ ### Ideal Client Profile (ICP)
35
+
36
+ | Dimension | Description |
37
+ |---|---|
38
+ | Role / title | |
39
+ | Organisation type & size | |
40
+ | Trigger situation | |
41
+ | Primary pain | |
42
+ | Desired outcome | |
43
+ | Budget signal | |
44
+ | Red-flag / disqualifier | |
45
+
46
+ ### Psychographic portrait (2–3 sentences: how this person thinks, what they value, what they distrust)
47
+
48
+ ### Niche hypothesis (the smallest viable market the brand could credibly own)
49
+
50
+ ### Audience segments to test (if there is ambiguity about primary vs secondary ICP)
51
+
52
+ ### Open questions / threads for Module 20 positioning reconciliation
@@ -0,0 +1,57 @@
1
+ # Module 40 — Personality & Archetype
2
+
3
+ > **Frameworks:** Mark & Pearson 12 brand archetypes · J. Aaker 5 brand personality
4
+ > dimensions (sincerity / excitement / competence / sophistication / ruggedness)
5
+ >
6
+ > **Goal:** Establish the brand's character — how it would behave if it were a
7
+ > person. Personality governs tone, visual register, and what feels "on brand"
8
+ > versus "wrong". A sharp archetype makes a hundred small decisions automatic.
9
+
10
+ ---
11
+
12
+ ## Raw
13
+
14
+ <!-- Verbatim quotes and projective-technique responses. -->
15
+
16
+ ### "If the brand were a person, how would they walk into a room?"
17
+
18
+ ### Archetype instinct (which of the 12 resonates immediately, and why?)
19
+ > Creator · Caregiver · Ruler · Jester · Regular Person · Lover · Hero ·
20
+ > Outlaw · Magician · Innocent · Sage · Explorer
21
+
22
+ ### Three adjectives the founder uses most naturally to describe the brand's character
23
+
24
+ ### One brand or public figure the founder admires but the brand should NOT become (and specifically what to avoid)
25
+
26
+ ### One brand or public figure whose personality register the brand aspires to
27
+
28
+ ### How should the brand make clients feel? (not think — feel)
29
+
30
+ ---
31
+
32
+ ## Synthesis
33
+
34
+ ### Primary archetype + shadow
35
+
36
+ | | |
37
+ |---|---|
38
+ | **Primary archetype** | (name + 1-line why) |
39
+ | **Secondary / shadow** | (what the primary archetype risks becoming; what keeps it honest) |
40
+
41
+ ### J. Aaker personality scores (1–5, 5 = strongly applies)
42
+
43
+ | Dimension | Score | Evidence |
44
+ |---|---|---|
45
+ | Sincerity (warm, honest, down-to-earth) | | |
46
+ | Excitement (daring, spirited, imaginative) | | |
47
+ | Competence (reliable, intelligent, successful) | | |
48
+ | Sophistication (upper-class, charming) | | |
49
+ | Ruggedness (outdoorsy, tough) | | |
50
+
51
+ ### Personality in action (3 behavioural guidelines derived from the archetype)
52
+
53
+ 1.
54
+ 2.
55
+ 3. ### What the brand must never sound or look like (the anti-personality)
56
+
57
+ ### Open questions / tensions with Module 50 Voice
@@ -0,0 +1,59 @@
1
+ # Module 50 — Voice & Tone
2
+
3
+ > **Frameworks:** Brand voice spectrum (formal <-> casual, serious <-> playful,
4
+ > distant <-> warm, conventional <-> irreverent) · Content-type tone matrix
5
+ >
6
+ > **Goal:** Codify the brand's verbal register precisely enough that two different
7
+ > writers produce copy that sounds like the same person. Voice is constant;
8
+ > tone shifts by context (home page vs. error message vs. proposal cover).
9
+
10
+ ---
11
+
12
+ ## Raw
13
+
14
+ <!-- Verbatim quotes and examples from the interview.
15
+ Collect actual copy samples the founder likes or hates. -->
16
+
17
+ ### Copy the founder admires (from their own brand or others) — include the source
18
+
19
+ ### Copy the founder dislikes or finds "wrong register" — what specifically is wrong?
20
+
21
+ ### Words or phrases the brand uses all the time (even informally)
22
+
23
+ ### Words or phrases the brand actively avoids
24
+
25
+ ### How should the brand sound on: a sales page? an error message? a proposal?
26
+
27
+ ### "We always…" / "We never…" statements about how the brand communicates
28
+
29
+ ---
30
+
31
+ ## Synthesis
32
+
33
+ ### Voice spectrum (mark the brand's position on each axis)
34
+
35
+ | Axis | 1 | 2 | 3 | 4 | 5 | Notes |
36
+ |---|---|---|---|---|---|---|
37
+ | Formal ←→ Casual | | | | | | |
38
+ | Serious ←→ Playful | | | | | | |
39
+ | Distant ←→ Warm | | | | | | |
40
+ | Conventional ←→ Irreverent | | | | | | |
41
+ | Minimal ←→ Expressive | | | | | | |
42
+
43
+ ### Voice statement (one paragraph a writer can internalise)
44
+
45
+ ### Tone matrix by content type
46
+
47
+ | Content type | Tone shift | Example phrase |
48
+ |---|---|---|
49
+ | Homepage headline | | |
50
+ | Case study / evidence | | |
51
+ | Proposal / commercial | | |
52
+ | Error / apology | | |
53
+ | Social / informal | | |
54
+
55
+ ### The three things to check every draft against
56
+
57
+ 1.
58
+ 2.
59
+ 3. ### Open questions / tensions with Module 40 Personality
@@ -0,0 +1,50 @@
1
+ # Module 60 — Narrative / Story
2
+
3
+ > **Frameworks:** Neumeier trueline · Brand story arc (context → conflict →
4
+ > resolution → invitation) · Hero's journey (brand as guide, client as hero)
5
+ >
6
+ > **Goal:** Crystallise the brand's founding story and its narrative arc — the
7
+ > conflict it was built to resolve, the transformation it delivers, and the
8
+ > invitation it extends to clients. The trueline is the single sentence that
9
+ > holds every story the brand tells.
10
+
11
+ ---
12
+
13
+ ## Raw
14
+
15
+ <!-- Verbatim quotes and stories. -->
16
+
17
+ ### The founding story (what happened, when, why this — not the polished version)
18
+
19
+ ### The conflict or frustration that made the brand necessary
20
+
21
+ ### What the world looks like when the brand's work succeeds (the transformation)
22
+
23
+ ### A client story that best illustrates what the brand does and why it matters
24
+
25
+ ### What would be lost if the brand didn't exist? (brand obituary prompt)
26
+
27
+ ### The invitation: what does the brand ask clients to do or believe?
28
+
29
+ ---
30
+
31
+ ## Synthesis
32
+
33
+ ### Trueline draft (Neumeier: "[Brand] is the only [category] that [unique claim].")
34
+
35
+ > ### Alternative truelines (2–3 variations, vary level of abstraction)
36
+
37
+ 1.
38
+ 2.
39
+ 3. ### Brand story arc
40
+
41
+ | Beat | Content |
42
+ |---|---|
43
+ | **Context** (the world before) | |
44
+ | **Conflict** (what's broken / wrong) | |
45
+ | **Resolution** (what the brand does about it) | |
46
+ | **Invitation** (what the client is asked to do) | |
47
+
48
+ ### The brand as guide (not hero) — what the client achieves, not the brand
49
+
50
+ ### Open questions / tensions with Module 20 Positioning and Module 10 Why
@@ -0,0 +1,49 @@
1
+ # Module 70 — Founder Brand vs Organisation Brand
2
+
3
+ > **Frameworks:** Enns *Win Without Pitching* · Personal brand vs institutional
4
+ > brand spectrum
5
+ >
6
+ > **Goal:** Map the relationship between the founder's personal reputation and the
7
+ > organisation's brand. Clarify how much equity each carries, what the healthy
8
+ > boundary is, and how to sequence personal vs organisation brand investment.
9
+ > Unresolved founder-brand tension is a common scaling bottleneck.
10
+
11
+ ---
12
+
13
+ ## Raw
14
+
15
+ <!-- Verbatim quotes. -->
16
+
17
+ ### Is the founder personally known in the market? How?
18
+
19
+ ### Do clients buy the founder or the organisation? (ask for evidence, not instinct)
20
+
21
+ ### What happens to the brand if the founder steps back or is unavailable?
22
+
23
+ ### What does the founder want for their personal brand in 3–5 years?
24
+
25
+ ### What does the organisation's brand need to be able to do independently?
26
+
27
+ ### Where has the founder-brand been an asset? Where has it been a constraint?
28
+
29
+ ---
30
+
31
+ ## Synthesis
32
+
33
+ ### Current state: where on the spectrum?
34
+
35
+ ```
36
+ [Founder IS the brand] ←————————→ [Organisation brand stands alone]
37
+ 1 2 3 4 5
38
+ ```
39
+ Current position: `___` Target position (3-year): `___`
40
+
41
+ ### What the founder brand should own (and keeps owning)
42
+
43
+ ### What the organisation brand needs to own (independently of the founder)
44
+
45
+ ### Transition plan sketch (if moving from founder-centric toward institutional)
46
+
47
+ ### Risk if nothing changes
48
+
49
+ ### Open questions / threads for Module 90 Synthesis
@@ -0,0 +1,133 @@
1
+ # Module 90 — Master Brandbook (Synthesis)
2
+
3
+ > **Frameworks:** Kapferer Brand Identity Prism · Aaker brand system (identity /
4
+ > personality / associations / equity)
5
+ >
6
+ > **Goal:** Reconcile all seven preceding modules into a single, actionable
7
+ > brandbook. This document is the source of truth the brand uses to brief
8
+ > designers, writers, and external collaborators. It resolves tensions between
9
+ > modules, commits to specific formulations, and translates them into practical
10
+ > guidelines.
11
+
12
+ ---
13
+
14
+ ## Raw
15
+
16
+ <!-- Module 90 consolidates outputs from Modules 10–70; minimal new raw input is
17
+ collected here. Capture any final founder statements or corrections made
18
+ during the synthesis pass below. -->
19
+
20
+ ---
21
+
22
+ ## Synthesis
23
+
24
+ ### 1. The Why (from Module 10)
25
+
26
+ > **Core belief:**
27
+ >
28
+ > **Behavioural How (values in action):**
29
+ >
30
+ > **What we refuse to be:**
31
+
32
+ ---
33
+
34
+ ### 2. Positioning (from Module 20)
35
+
36
+ > **Positioning statement:**
37
+ > For **[target client]** who **[situation]**, **[brand name]** is the
38
+ > **[category]** that **[unique value]**. Unlike **[alternatives]**, we
39
+ > **[key differentiator]**.
40
+ >
41
+ > **White-space the brand owns:**
42
+
43
+ ---
44
+
45
+ ### 3. Audience (from Module 30)
46
+
47
+ > **Ideal Client Profile (one-paragraph portrait):**
48
+ >
49
+ > **Niche the brand is building toward:**
50
+ >
51
+ > **Red-flag / disqualifier:**
52
+
53
+ ---
54
+
55
+ ### 4. Kapferer Brand Identity Prism
56
+
57
+ | Facet | Content |
58
+ |---|---|
59
+ | **Physique** (visible, tangible brand attributes) | |
60
+ | **Personality** (character if the brand were a person) | |
61
+ | **Culture** (values and principles behind the brand) | |
62
+ | **Relationship** (how the brand relates to clients) | |
63
+ | **Reflection** (how clients see themselves using this brand) | |
64
+ | **Self-image** (how clients feel inside when using this brand) | |
65
+
66
+ ---
67
+
68
+ ### 4b. Aaker Brand System (from Module 40)
69
+
70
+ > **Primary archetype** (Mark & Pearson):
71
+ >
72
+ > **Secondary archetype** (if present):
73
+ >
74
+ > **Aaker brand identity** — four dimensions:
75
+ > - *Brand as product:*
76
+ > - *Brand as organisation:*
77
+ > - *Brand as person (personality):*
78
+ > - *Brand as symbol:*
79
+ >
80
+ > **Brand associations** (3–5 key associations the brand should own):
81
+ >
82
+ > **Brand equity signals** (what clients would lose if this brand disappeared):
83
+
84
+ ---
85
+
86
+ ### 5. Voice & Tone summary (from Module 50)
87
+
88
+ > **Voice statement (one paragraph):**
89
+ >
90
+ > **The three checks every draft must pass:**
91
+ > 1.
92
+ > 2.
93
+ > 3.
94
+
95
+ ---
96
+
97
+ ### 6. Narrative assets (from Module 60)
98
+
99
+ > **Trueline:**
100
+ >
101
+ > **Brand story arc (one paragraph, usable as an About page starting point):**
102
+
103
+ ---
104
+
105
+ ### 7. Founder / organisation brand boundary (from Module 70)
106
+
107
+ > **What the founder brand owns:**
108
+ >
109
+ > **What the organisation brand owns:**
110
+
111
+ ---
112
+
113
+ ### 8. Tensions resolved (record any module-to-module conflicts and how they were settled)
114
+
115
+ | Tension | Module A | Module B | Resolution |
116
+ |---|---|---|---|
117
+ | | | | |
118
+
119
+ ---
120
+
121
+ ### 9. Open questions deferred to next session
122
+
123
+ <!-- Anything that couldn't be resolved with the current data. -->
124
+
125
+ ---
126
+
127
+ ### 10. Practical next steps
128
+
129
+ <!-- 3–5 concrete actions the brand can take based on this brandbook. -->
130
+
131
+ 1.
132
+ 2.
133
+ 3.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Affaan Mustafa
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.