arkaos 2.0.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (486) hide show
  1. package/CONSTITUTION.md +81 -0
  2. package/LICENSE +21 -0
  3. package/README.md +154 -0
  4. package/VERSION +1 -0
  5. package/arka/SKILL.md +134 -0
  6. package/bin/arkaos +107 -0
  7. package/config/constitution.yaml +168 -0
  8. package/config/hooks/post-tool-use-v2.sh +116 -0
  9. package/config/hooks/post-tool-use.sh +188 -0
  10. package/config/hooks/pre-compact-v2.sh +43 -0
  11. package/config/hooks/pre-compact.sh +99 -0
  12. package/config/hooks/user-prompt-submit-v2.sh +119 -0
  13. package/config/hooks/user-prompt-submit.sh +312 -0
  14. package/core/__init__.py +3 -0
  15. package/core/__pycache__/__init__.cpython-313.pyc +0 -0
  16. package/core/agents/__init__.py +14 -0
  17. package/core/agents/__pycache__/__init__.cpython-313.pyc +0 -0
  18. package/core/agents/__pycache__/loader.cpython-313.pyc +0 -0
  19. package/core/agents/__pycache__/registry_gen.cpython-313.pyc +0 -0
  20. package/core/agents/__pycache__/schema.cpython-313.pyc +0 -0
  21. package/core/agents/__pycache__/validator.cpython-313.pyc +0 -0
  22. package/core/agents/loader.py +88 -0
  23. package/core/agents/registry_gen.py +118 -0
  24. package/core/agents/schema.py +265 -0
  25. package/core/agents/validator.py +141 -0
  26. package/core/conclave/__init__.py +12 -0
  27. package/core/conclave/__pycache__/__init__.cpython-313.pyc +0 -0
  28. package/core/conclave/__pycache__/advisor_db.cpython-313.pyc +0 -0
  29. package/core/conclave/__pycache__/display.cpython-313.pyc +0 -0
  30. package/core/conclave/__pycache__/matcher.cpython-313.pyc +0 -0
  31. package/core/conclave/__pycache__/persistence.cpython-313.pyc +0 -0
  32. package/core/conclave/__pycache__/profiler.cpython-313.pyc +0 -0
  33. package/core/conclave/__pycache__/prompts.cpython-313.pyc +0 -0
  34. package/core/conclave/__pycache__/schema.cpython-313.pyc +0 -0
  35. package/core/conclave/advisor_db.py +373 -0
  36. package/core/conclave/display.py +104 -0
  37. package/core/conclave/matcher.py +104 -0
  38. package/core/conclave/persistence.py +61 -0
  39. package/core/conclave/profiler.py +298 -0
  40. package/core/conclave/prompts.py +77 -0
  41. package/core/conclave/schema.py +132 -0
  42. package/core/governance/__init__.py +5 -0
  43. package/core/governance/__pycache__/__init__.cpython-313.pyc +0 -0
  44. package/core/governance/__pycache__/constitution.cpython-313.pyc +0 -0
  45. package/core/governance/constitution.py +152 -0
  46. package/core/registry/__init__.py +1 -0
  47. package/core/registry/__pycache__/__init__.cpython-313.pyc +0 -0
  48. package/core/registry/__pycache__/generator.cpython-313.pyc +0 -0
  49. package/core/registry/generator.py +199 -0
  50. package/core/runtime/__init__.py +6 -0
  51. package/core/runtime/__pycache__/__init__.cpython-313.pyc +0 -0
  52. package/core/runtime/__pycache__/base.cpython-313.pyc +0 -0
  53. package/core/runtime/__pycache__/claude_code.cpython-313.pyc +0 -0
  54. package/core/runtime/__pycache__/codex_cli.cpython-313.pyc +0 -0
  55. package/core/runtime/__pycache__/cursor.cpython-313.pyc +0 -0
  56. package/core/runtime/__pycache__/gemini_cli.cpython-313.pyc +0 -0
  57. package/core/runtime/__pycache__/registry.cpython-313.pyc +0 -0
  58. package/core/runtime/__pycache__/subagent.cpython-313.pyc +0 -0
  59. package/core/runtime/base.py +143 -0
  60. package/core/runtime/claude_code.py +104 -0
  61. package/core/runtime/codex_cli.py +71 -0
  62. package/core/runtime/cursor.py +71 -0
  63. package/core/runtime/gemini_cli.py +68 -0
  64. package/core/runtime/registry.py +86 -0
  65. package/core/runtime/subagent.py +201 -0
  66. package/core/specs/__init__.py +10 -0
  67. package/core/specs/__pycache__/__init__.cpython-313.pyc +0 -0
  68. package/core/specs/__pycache__/manager.cpython-313.pyc +0 -0
  69. package/core/specs/__pycache__/schema.cpython-313.pyc +0 -0
  70. package/core/specs/manager.py +164 -0
  71. package/core/specs/schema.py +199 -0
  72. package/core/squads/__init__.py +7 -0
  73. package/core/squads/__pycache__/__init__.cpython-313.pyc +0 -0
  74. package/core/squads/__pycache__/loader.cpython-313.pyc +0 -0
  75. package/core/squads/__pycache__/registry.cpython-313.pyc +0 -0
  76. package/core/squads/__pycache__/schema.cpython-313.pyc +0 -0
  77. package/core/squads/loader.py +40 -0
  78. package/core/squads/registry.py +145 -0
  79. package/core/squads/schema.py +93 -0
  80. package/core/synapse/__init__.py +11 -0
  81. package/core/synapse/__pycache__/__init__.cpython-313.pyc +0 -0
  82. package/core/synapse/__pycache__/cache.cpython-313.pyc +0 -0
  83. package/core/synapse/__pycache__/engine.cpython-313.pyc +0 -0
  84. package/core/synapse/__pycache__/layers.cpython-313.pyc +0 -0
  85. package/core/synapse/cache.py +82 -0
  86. package/core/synapse/engine.py +184 -0
  87. package/core/synapse/layers.py +441 -0
  88. package/core/tasks/__init__.py +6 -0
  89. package/core/tasks/__pycache__/__init__.cpython-313.pyc +0 -0
  90. package/core/tasks/__pycache__/manager.cpython-313.pyc +0 -0
  91. package/core/tasks/__pycache__/schema.cpython-313.pyc +0 -0
  92. package/core/tasks/manager.py +150 -0
  93. package/core/tasks/schema.py +108 -0
  94. package/core/workflow/__init__.py +10 -0
  95. package/core/workflow/__pycache__/__init__.cpython-313.pyc +0 -0
  96. package/core/workflow/__pycache__/engine.cpython-313.pyc +0 -0
  97. package/core/workflow/__pycache__/loader.cpython-313.pyc +0 -0
  98. package/core/workflow/__pycache__/schema.cpython-313.pyc +0 -0
  99. package/core/workflow/engine.py +216 -0
  100. package/core/workflow/loader.py +28 -0
  101. package/core/workflow/schema.py +129 -0
  102. package/departments/brand/SKILL.md +85 -0
  103. package/departments/brand/agents/brand-director.yaml +77 -0
  104. package/departments/brand/agents/brand-strategist.md +182 -0
  105. package/departments/brand/agents/brand-strategist.yaml +58 -0
  106. package/departments/brand/agents/creative-director.md +149 -0
  107. package/departments/brand/agents/motion-designer.md +113 -0
  108. package/departments/brand/agents/ux-designer.yaml +60 -0
  109. package/departments/brand/agents/visual-designer.md +187 -0
  110. package/departments/brand/agents/visual-designer.yaml +58 -0
  111. package/departments/brand/references/brand-creation-guide.md +559 -0
  112. package/departments/brand/scripts/provider-call.sh +262 -0
  113. package/departments/brand/skills/archetype-finder/SKILL.md +18 -0
  114. package/departments/brand/skills/colors/SKILL.md +18 -0
  115. package/departments/brand/skills/design-system/SKILL.md +18 -0
  116. package/departments/brand/skills/identity-system/SKILL.md +18 -0
  117. package/departments/brand/skills/logo-brief/SKILL.md +18 -0
  118. package/departments/brand/skills/mockup-generate/SKILL.md +18 -0
  119. package/departments/brand/skills/naming-evaluate/SKILL.md +50 -0
  120. package/departments/brand/skills/positioning-statement/SKILL.md +18 -0
  121. package/departments/brand/skills/primal-audit/SKILL.md +43 -0
  122. package/departments/brand/skills/ux-audit/SKILL.md +18 -0
  123. package/departments/brand/skills/voice-guide/SKILL.md +18 -0
  124. package/departments/brand/skills/wireframe/SKILL.md +18 -0
  125. package/departments/brand/squad.yaml +39 -0
  126. package/departments/brand/workflows/identity.yaml +113 -0
  127. package/departments/brand/workflows/naming.yaml +58 -0
  128. package/departments/community/SKILL.md +62 -0
  129. package/departments/community/agents/community-manager.yaml +57 -0
  130. package/departments/community/agents/community-strategist.yaml +74 -0
  131. package/departments/community/agents/engagement-designer.yaml +56 -0
  132. package/departments/community/skills/ai-community/SKILL.md +18 -0
  133. package/departments/community/skills/betting-setup/SKILL.md +18 -0
  134. package/departments/community/skills/business-model/SKILL.md +53 -0
  135. package/departments/community/skills/content-calendar/SKILL.md +18 -0
  136. package/departments/community/skills/events-plan/SKILL.md +18 -0
  137. package/departments/community/skills/gamification-design/SKILL.md +18 -0
  138. package/departments/community/skills/growth-plan/SKILL.md +18 -0
  139. package/departments/community/skills/metrics-track/SKILL.md +18 -0
  140. package/departments/community/skills/moderation/SKILL.md +18 -0
  141. package/departments/community/skills/monetize-plan/SKILL.md +18 -0
  142. package/departments/community/skills/niche-setup/SKILL.md +18 -0
  143. package/departments/community/skills/onboarding-flow/SKILL.md +18 -0
  144. package/departments/community/skills/platform-select/SKILL.md +18 -0
  145. package/departments/community/skills/retention-system/SKILL.md +48 -0
  146. package/departments/community/squad.yaml +32 -0
  147. package/departments/community/workflows/setup.yaml +62 -0
  148. package/departments/content/SKILL.md +65 -0
  149. package/departments/content/agents/content-strategist.yaml +74 -0
  150. package/departments/content/agents/repurpose-distributor.yaml +57 -0
  151. package/departments/content/agents/scriptwriter.yaml +56 -0
  152. package/departments/content/agents/viral-engineer.yaml +56 -0
  153. package/departments/content/skills/ai-workflow/SKILL.md +18 -0
  154. package/departments/content/skills/analytics/SKILL.md +18 -0
  155. package/departments/content/skills/calendar/SKILL.md +18 -0
  156. package/departments/content/skills/content-system/SKILL.md +75 -0
  157. package/departments/content/skills/hook-write/SKILL.md +43 -0
  158. package/departments/content/skills/monetization-plan/SKILL.md +18 -0
  159. package/departments/content/skills/newsletter-write/SKILL.md +18 -0
  160. package/departments/content/skills/platform-optimize/SKILL.md +18 -0
  161. package/departments/content/skills/repurpose-plan/SKILL.md +18 -0
  162. package/departments/content/skills/script-structure/SKILL.md +18 -0
  163. package/departments/content/skills/short-form/SKILL.md +18 -0
  164. package/departments/content/skills/thumbnail-package/SKILL.md +18 -0
  165. package/departments/content/skills/viral-design/SKILL.md +45 -0
  166. package/departments/content/skills/youtube-strategy/SKILL.md +18 -0
  167. package/departments/content/squad.yaml +39 -0
  168. package/departments/content/workflows/viral.yaml +99 -0
  169. package/departments/dev/SKILL.md +135 -0
  170. package/departments/dev/agents/analyst.md +184 -0
  171. package/departments/dev/agents/architect.md +184 -0
  172. package/departments/dev/agents/architect.yaml +74 -0
  173. package/departments/dev/agents/backend-dev.yaml +70 -0
  174. package/departments/dev/agents/cto.md +140 -0
  175. package/departments/dev/agents/cto.yaml +77 -0
  176. package/departments/dev/agents/dba.yaml +72 -0
  177. package/departments/dev/agents/devops-eng.yaml +72 -0
  178. package/departments/dev/agents/devops.md +204 -0
  179. package/departments/dev/agents/frontend-dev.md +213 -0
  180. package/departments/dev/agents/frontend-dev.yaml +71 -0
  181. package/departments/dev/agents/qa-eng.yaml +72 -0
  182. package/departments/dev/agents/qa.md +231 -0
  183. package/departments/dev/agents/security-eng.yaml +72 -0
  184. package/departments/dev/agents/security.md +174 -0
  185. package/departments/dev/agents/senior-dev.md +177 -0
  186. package/departments/dev/agents/tech-lead.md +188 -0
  187. package/departments/dev/agents/tech-lead.yaml +72 -0
  188. package/departments/dev/skills/adversarial-review/SKILL.md +117 -0
  189. package/departments/dev/skills/agent-design/SKILL.md +127 -0
  190. package/departments/dev/skills/agent-workflow/SKILL.md +116 -0
  191. package/departments/dev/skills/ai-assisted-dev/SKILL.md +18 -0
  192. package/departments/dev/skills/ai-security/SKILL.md +112 -0
  193. package/departments/dev/skills/api-design/SKILL.md +59 -0
  194. package/departments/dev/skills/architecture-design/SKILL.md +89 -0
  195. package/departments/dev/skills/changelog/SKILL.md +110 -0
  196. package/departments/dev/skills/ci-cd-pipeline/SKILL.md +130 -0
  197. package/departments/dev/skills/clean-code-review/SKILL.md +65 -0
  198. package/departments/dev/skills/code-review/SKILL.md +18 -0
  199. package/departments/dev/skills/codebase-onboard/SKILL.md +109 -0
  200. package/departments/dev/skills/db-design/SKILL.md +18 -0
  201. package/departments/dev/skills/db-schema/SKILL.md +130 -0
  202. package/departments/dev/skills/ddd-model/SKILL.md +18 -0
  203. package/departments/dev/skills/dependency-audit/SKILL.md +118 -0
  204. package/departments/dev/skills/deploy/SKILL.md +18 -0
  205. package/departments/dev/skills/devops-pipeline/SKILL.md +18 -0
  206. package/departments/dev/skills/docs/SKILL.md +18 -0
  207. package/departments/dev/skills/env-secrets/SKILL.md +89 -0
  208. package/departments/dev/skills/incident/SKILL.md +125 -0
  209. package/departments/dev/skills/mcp/SKILL.md +106 -0
  210. package/departments/dev/skills/mcp-builder/SKILL.md +121 -0
  211. package/departments/dev/skills/observability/SKILL.md +119 -0
  212. package/departments/dev/skills/onboard/SKILL.md +389 -0
  213. package/departments/dev/skills/onboard/scripts/detect-stack.py +472 -0
  214. package/departments/dev/skills/performance-audit/SKILL.md +49 -0
  215. package/departments/dev/skills/performance-profiler/SKILL.md +128 -0
  216. package/departments/dev/skills/rag-architect/SKILL.md +125 -0
  217. package/departments/dev/skills/red-team/SKILL.md +112 -0
  218. package/departments/dev/skills/refactor-plan/SKILL.md +18 -0
  219. package/departments/dev/skills/release/SKILL.md +130 -0
  220. package/departments/dev/skills/research/SKILL.md +18 -0
  221. package/departments/dev/skills/runbook/SKILL.md +103 -0
  222. package/departments/dev/skills/scaffold/SKILL.md +249 -0
  223. package/departments/dev/skills/security-audit/SKILL.md +68 -0
  224. package/departments/dev/skills/skill-audit/SKILL.md +96 -0
  225. package/departments/dev/skills/spec/SKILL.md +218 -0
  226. package/departments/dev/skills/stack-check/SKILL.md +18 -0
  227. package/departments/dev/skills/tdd-cycle/SKILL.md +56 -0
  228. package/departments/dev/skills/tech-debt/SKILL.md +100 -0
  229. package/departments/dev/squad.yaml +62 -0
  230. package/departments/dev/workflows/debug.yaml +63 -0
  231. package/departments/dev/workflows/feature.yaml +129 -0
  232. package/departments/dev/workflows/refactor.yaml +64 -0
  233. package/departments/ecom/SKILL.md +39 -0
  234. package/departments/ecom/agents/commerce-engineer.yaml +58 -0
  235. package/departments/ecom/agents/cro-specialist.yaml +56 -0
  236. package/departments/ecom/agents/ecom-director.yaml +73 -0
  237. package/departments/ecom/agents/retention-manager.yaml +59 -0
  238. package/departments/ecom/skills/analytics/SKILL.md +18 -0
  239. package/departments/ecom/skills/cart-recovery/SKILL.md +18 -0
  240. package/departments/ecom/skills/cro-optimize/SKILL.md +58 -0
  241. package/departments/ecom/skills/customer-journey/SKILL.md +18 -0
  242. package/departments/ecom/skills/fulfillment-plan/SKILL.md +18 -0
  243. package/departments/ecom/skills/marketplace-manage/SKILL.md +18 -0
  244. package/departments/ecom/skills/pricing-strategy/SKILL.md +18 -0
  245. package/departments/ecom/skills/product-launch/SKILL.md +18 -0
  246. package/departments/ecom/skills/rfm-segment/SKILL.md +44 -0
  247. package/departments/ecom/skills/social-commerce/SKILL.md +18 -0
  248. package/departments/ecom/skills/store-audit/SKILL.md +18 -0
  249. package/departments/ecom/skills/subscription-model/SKILL.md +18 -0
  250. package/departments/ecom/squad.yaml +39 -0
  251. package/departments/ecom/workflows/product-page.yaml +62 -0
  252. package/departments/ecommerce/SKILL.md +363 -0
  253. package/departments/ecommerce/agents/ecommerce-manager.md +91 -0
  254. package/departments/finance/SKILL.md +37 -0
  255. package/departments/finance/agents/cfo.md +85 -0
  256. package/departments/finance/agents/cfo.yaml +77 -0
  257. package/departments/finance/agents/financial-analyst.yaml +57 -0
  258. package/departments/finance/agents/investment-strategist.yaml +58 -0
  259. package/departments/finance/skills/budget-plan/SKILL.md +18 -0
  260. package/departments/finance/skills/cashflow-forecast/SKILL.md +18 -0
  261. package/departments/finance/skills/ciso-advisor/SKILL.md +113 -0
  262. package/departments/finance/skills/financial-model/SKILL.md +70 -0
  263. package/departments/finance/skills/pitch-deck/SKILL.md +18 -0
  264. package/departments/finance/skills/scenario-analysis/SKILL.md +18 -0
  265. package/departments/finance/skills/unit-economics/SKILL.md +44 -0
  266. package/departments/finance/skills/valuation-model/SKILL.md +18 -0
  267. package/departments/finance/squad.yaml +37 -0
  268. package/departments/finance/workflows/cashflow.yaml +47 -0
  269. package/departments/finance/workflows/model.yaml +83 -0
  270. package/departments/kb/SKILL.md +38 -0
  271. package/departments/kb/agents/knowledge-curator.yaml +60 -0
  272. package/departments/kb/agents/knowledge-director.yaml +72 -0
  273. package/departments/kb/agents/research-analyst.yaml +58 -0
  274. package/departments/kb/skills/ai-research/SKILL.md +18 -0
  275. package/departments/kb/skills/competitive-intel/SKILL.md +18 -0
  276. package/departments/kb/skills/knowledge-review/SKILL.md +18 -0
  277. package/departments/kb/skills/learn-content/SKILL.md +18 -0
  278. package/departments/kb/skills/moc-create/SKILL.md +18 -0
  279. package/departments/kb/skills/persona-build/SKILL.md +18 -0
  280. package/departments/kb/skills/research-plan/SKILL.md +51 -0
  281. package/departments/kb/skills/search-kb/SKILL.md +18 -0
  282. package/departments/kb/skills/source-evaluate/SKILL.md +18 -0
  283. package/departments/kb/skills/taxonomy-manage/SKILL.md +18 -0
  284. package/departments/kb/skills/write-as-persona/SKILL.md +18 -0
  285. package/departments/kb/skills/zettelkasten-process/SKILL.md +56 -0
  286. package/departments/kb/squad.yaml +34 -0
  287. package/departments/kb/workflows/learn.yaml +63 -0
  288. package/departments/knowledge/SKILL.md +474 -0
  289. package/departments/knowledge/agents/knowledge-curator.md +89 -0
  290. package/departments/knowledge/scripts/kb-check-capabilities.sh +143 -0
  291. package/departments/knowledge/scripts/kb-cleanup.sh +135 -0
  292. package/departments/knowledge/scripts/kb-queue.sh +156 -0
  293. package/departments/knowledge/scripts/kb-status.sh +195 -0
  294. package/departments/knowledge/scripts/kb-worker.sh +217 -0
  295. package/departments/landing/SKILL.md +65 -0
  296. package/departments/landing/agents/affiliate-manager.yaml +57 -0
  297. package/departments/landing/agents/conversion-strategist.yaml +74 -0
  298. package/departments/landing/agents/cro-specialist.yaml +58 -0
  299. package/departments/landing/agents/sales-copywriter.yaml +61 -0
  300. package/departments/landing/skills/ab-test/SKILL.md +18 -0
  301. package/departments/landing/skills/affiliate-bridge/SKILL.md +18 -0
  302. package/departments/landing/skills/awareness-diagnose/SKILL.md +18 -0
  303. package/departments/landing/skills/copy-framework/SKILL.md +55 -0
  304. package/departments/landing/skills/email-sequence/SKILL.md +18 -0
  305. package/departments/landing/skills/funnel-design/SKILL.md +49 -0
  306. package/departments/landing/skills/funnel-metrics/SKILL.md +18 -0
  307. package/departments/landing/skills/headline-write/SKILL.md +18 -0
  308. package/departments/landing/skills/landing-gen/SKILL.md +124 -0
  309. package/departments/landing/skills/launch-sequence/SKILL.md +18 -0
  310. package/departments/landing/skills/offer-create/SKILL.md +62 -0
  311. package/departments/landing/skills/optimize-page/SKILL.md +18 -0
  312. package/departments/landing/skills/page-architect/SKILL.md +18 -0
  313. package/departments/landing/skills/persuasion-apply/SKILL.md +18 -0
  314. package/departments/landing/skills/webinar-funnel/SKILL.md +18 -0
  315. package/departments/landing/squad.yaml +39 -0
  316. package/departments/landing/workflows/launch.yaml +72 -0
  317. package/departments/landing/workflows/offer.yaml +99 -0
  318. package/departments/leadership/SKILL.md +35 -0
  319. package/departments/leadership/agents/culture-coach.yaml +59 -0
  320. package/departments/leadership/agents/hr-specialist.yaml +57 -0
  321. package/departments/leadership/agents/leadership-director.yaml +72 -0
  322. package/departments/leadership/skills/change-manage/SKILL.md +18 -0
  323. package/departments/leadership/skills/conflict-resolve/SKILL.md +18 -0
  324. package/departments/leadership/skills/culture-audit/SKILL.md +18 -0
  325. package/departments/leadership/skills/delegation-matrix/SKILL.md +18 -0
  326. package/departments/leadership/skills/disc-assess/SKILL.md +18 -0
  327. package/departments/leadership/skills/feedback-give/SKILL.md +18 -0
  328. package/departments/leadership/skills/hiring-plan/SKILL.md +18 -0
  329. package/departments/leadership/skills/okr-define/SKILL.md +69 -0
  330. package/departments/leadership/skills/performance-review/SKILL.md +18 -0
  331. package/departments/leadership/skills/team-health/SKILL.md +56 -0
  332. package/departments/leadership/squad.yaml +35 -0
  333. package/departments/leadership/workflows/team-build.yaml +55 -0
  334. package/departments/marketing/SKILL.md +61 -0
  335. package/departments/marketing/agents/content-creator.md +85 -0
  336. package/departments/marketing/agents/content-marketer.yaml +58 -0
  337. package/departments/marketing/agents/marketing-director.yaml +75 -0
  338. package/departments/marketing/agents/paid-specialist.yaml +58 -0
  339. package/departments/marketing/agents/seo-specialist.yaml +57 -0
  340. package/departments/marketing/skills/ab-test/SKILL.md +18 -0
  341. package/departments/marketing/skills/analytics-report/SKILL.md +18 -0
  342. package/departments/marketing/skills/audience-segment/SKILL.md +18 -0
  343. package/departments/marketing/skills/calendar-plan/SKILL.md +18 -0
  344. package/departments/marketing/skills/cold-email/SKILL.md +128 -0
  345. package/departments/marketing/skills/competitor-analysis/SKILL.md +18 -0
  346. package/departments/marketing/skills/content-audit/SKILL.md +18 -0
  347. package/departments/marketing/skills/email-sequence/SKILL.md +18 -0
  348. package/departments/marketing/skills/growth-loop/SKILL.md +50 -0
  349. package/departments/marketing/skills/marketing-automation/SKILL.md +18 -0
  350. package/departments/marketing/skills/paid-campaign/SKILL.md +18 -0
  351. package/departments/marketing/skills/programmatic-seo/SKILL.md +123 -0
  352. package/departments/marketing/skills/seo-audit/SKILL.md +48 -0
  353. package/departments/marketing/skills/social-strategy/SKILL.md +18 -0
  354. package/departments/marketing/squad.yaml +39 -0
  355. package/departments/marketing/workflows/campaign.yaml +112 -0
  356. package/departments/marketing/workflows/social.yaml +56 -0
  357. package/departments/operations/SKILL.md +422 -0
  358. package/departments/operations/agents/coo.md +88 -0
  359. package/departments/ops/SKILL.md +37 -0
  360. package/departments/ops/agents/automation-engineer.yaml +58 -0
  361. package/departments/ops/agents/ops-lead.yaml +71 -0
  362. package/departments/ops/skills/bottleneck-find/SKILL.md +49 -0
  363. package/departments/ops/skills/dashboard-build/SKILL.md +18 -0
  364. package/departments/ops/skills/gtd-setup/SKILL.md +18 -0
  365. package/departments/ops/skills/integration-design/SKILL.md +18 -0
  366. package/departments/ops/skills/lean-audit/SKILL.md +18 -0
  367. package/departments/ops/skills/metrics-dashboard/SKILL.md +18 -0
  368. package/departments/ops/skills/n8n-flow/SKILL.md +18 -0
  369. package/departments/ops/skills/sop-create/SKILL.md +18 -0
  370. package/departments/ops/skills/workflow-automate/SKILL.md +39 -0
  371. package/departments/ops/skills/zapier-flow/SKILL.md +18 -0
  372. package/departments/ops/squad.yaml +35 -0
  373. package/departments/ops/workflows/lean-audit.yaml +69 -0
  374. package/departments/org/SKILL.md +34 -0
  375. package/departments/org/agents/coo.yaml +80 -0
  376. package/departments/org/agents/org-designer.yaml +56 -0
  377. package/departments/org/agents/people-ops.yaml +56 -0
  378. package/departments/org/skills/compensation-plan/SKILL.md +18 -0
  379. package/departments/org/skills/culture-define/SKILL.md +18 -0
  380. package/departments/org/skills/decision-framework/SKILL.md +18 -0
  381. package/departments/org/skills/hiring-plan/SKILL.md +18 -0
  382. package/departments/org/skills/meeting-optimize/SKILL.md +18 -0
  383. package/departments/org/skills/onboarding-design/SKILL.md +18 -0
  384. package/departments/org/skills/org-design/SKILL.md +18 -0
  385. package/departments/org/skills/remote-setup/SKILL.md +18 -0
  386. package/departments/org/skills/sop-process/SKILL.md +18 -0
  387. package/departments/org/skills/team-assess/SKILL.md +18 -0
  388. package/departments/org/squad.yaml +33 -0
  389. package/departments/org/workflows/design.yaml +55 -0
  390. package/departments/pm/SKILL.md +39 -0
  391. package/departments/pm/agents/pm-director.yaml +75 -0
  392. package/departments/pm/agents/product-owner.yaml +59 -0
  393. package/departments/pm/agents/scrum-master.yaml +59 -0
  394. package/departments/pm/skills/agile-po/SKILL.md +118 -0
  395. package/departments/pm/skills/backlog-groom/SKILL.md +18 -0
  396. package/departments/pm/skills/discovery-plan/SKILL.md +48 -0
  397. package/departments/pm/skills/estimate-forecast/SKILL.md +18 -0
  398. package/departments/pm/skills/impact-map/SKILL.md +18 -0
  399. package/departments/pm/skills/kanban-setup/SKILL.md +18 -0
  400. package/departments/pm/skills/risk-register/SKILL.md +18 -0
  401. package/departments/pm/skills/roadmap-build/SKILL.md +18 -0
  402. package/departments/pm/skills/shape-pitch/SKILL.md +55 -0
  403. package/departments/pm/skills/sprint-plan/SKILL.md +18 -0
  404. package/departments/pm/skills/stakeholder-map/SKILL.md +18 -0
  405. package/departments/pm/skills/standup-run/SKILL.md +18 -0
  406. package/departments/pm/skills/story-write/SKILL.md +18 -0
  407. package/departments/pm/squad.yaml +37 -0
  408. package/departments/pm/workflows/retro.yaml +33 -0
  409. package/departments/quality/SKILL.md +66 -0
  410. package/departments/quality/agents/copy-director.md +134 -0
  411. package/departments/quality/agents/copy-director.yaml +73 -0
  412. package/departments/quality/agents/cqo.md +134 -0
  413. package/departments/quality/agents/cqo.yaml +76 -0
  414. package/departments/quality/agents/tech-director.yaml +79 -0
  415. package/departments/quality/agents/tech-ux-director.md +193 -0
  416. package/departments/quality/squad.yaml +25 -0
  417. package/departments/saas/SKILL.md +64 -0
  418. package/departments/saas/agents/cs-manager.yaml +57 -0
  419. package/departments/saas/agents/growth-engineer.yaml +57 -0
  420. package/departments/saas/agents/metrics-analyst.yaml +57 -0
  421. package/departments/saas/agents/saas-strategist.yaml +74 -0
  422. package/departments/saas/skills/benchmark-compare/SKILL.md +18 -0
  423. package/departments/saas/skills/churn-analysis/SKILL.md +18 -0
  424. package/departments/saas/skills/customer-success/SKILL.md +18 -0
  425. package/departments/saas/skills/growth-plan/SKILL.md +18 -0
  426. package/departments/saas/skills/gtm-strategy/SKILL.md +18 -0
  427. package/departments/saas/skills/launch-execute/SKILL.md +18 -0
  428. package/departments/saas/skills/metrics-dashboard/SKILL.md +18 -0
  429. package/departments/saas/skills/micro-saas-stack/SKILL.md +18 -0
  430. package/departments/saas/skills/mvp-build/SKILL.md +18 -0
  431. package/departments/saas/skills/niche-evaluate/SKILL.md +18 -0
  432. package/departments/saas/skills/onboarding-optimize/SKILL.md +18 -0
  433. package/departments/saas/skills/plg-setup/SKILL.md +53 -0
  434. package/departments/saas/skills/pricing-strategy/SKILL.md +48 -0
  435. package/departments/saas/skills/saas-scaffold/SKILL.md +127 -0
  436. package/departments/saas/skills/validate-idea/SKILL.md +55 -0
  437. package/departments/saas/squad.yaml +37 -0
  438. package/departments/saas/workflows/metrics.yaml +58 -0
  439. package/departments/saas/workflows/validate.yaml +103 -0
  440. package/departments/sales/SKILL.md +35 -0
  441. package/departments/sales/agents/sales-closer.yaml +58 -0
  442. package/departments/sales/agents/sales-director.yaml +72 -0
  443. package/departments/sales/agents/sales-ops.yaml +55 -0
  444. package/departments/sales/skills/challenger-sell/SKILL.md +18 -0
  445. package/departments/sales/skills/deal-qualify/SKILL.md +18 -0
  446. package/departments/sales/skills/discovery-call/SKILL.md +18 -0
  447. package/departments/sales/skills/forecast-revenue/SKILL.md +18 -0
  448. package/departments/sales/skills/negotiate-plan/SKILL.md +18 -0
  449. package/departments/sales/skills/objection-handle/SKILL.md +18 -0
  450. package/departments/sales/skills/pipeline-manage/SKILL.md +18 -0
  451. package/departments/sales/skills/pricing-negotiate/SKILL.md +18 -0
  452. package/departments/sales/skills/proposal-write/SKILL.md +54 -0
  453. package/departments/sales/skills/spin-sell/SKILL.md +50 -0
  454. package/departments/sales/squad.yaml +35 -0
  455. package/departments/sales/workflows/pipeline.yaml +49 -0
  456. package/departments/strategy/SKILL.md +37 -0
  457. package/departments/strategy/agents/business-model-designer.yaml +58 -0
  458. package/departments/strategy/agents/market-analyst.yaml +58 -0
  459. package/departments/strategy/agents/strategist.md +79 -0
  460. package/departments/strategy/agents/strategy-director.yaml +75 -0
  461. package/departments/strategy/skills/blue-ocean/SKILL.md +56 -0
  462. package/departments/strategy/skills/bmc/SKILL.md +18 -0
  463. package/departments/strategy/skills/board-advisor/SKILL.md +121 -0
  464. package/departments/strategy/skills/cto-advisor/SKILL.md +113 -0
  465. package/departments/strategy/skills/five-forces/SKILL.md +74 -0
  466. package/departments/strategy/skills/growth-strategy/SKILL.md +18 -0
  467. package/departments/strategy/skills/moat-analysis/SKILL.md +18 -0
  468. package/departments/strategy/skills/position/SKILL.md +18 -0
  469. package/departments/strategy/skills/scenario-plan/SKILL.md +18 -0
  470. package/departments/strategy/squad.yaml +37 -0
  471. package/departments/strategy/workflows/analysis.yaml +90 -0
  472. package/departments/strategy/workflows/swot.yaml +47 -0
  473. package/installer/adapters/claude-code.js +73 -0
  474. package/installer/adapters/codex-cli.js +34 -0
  475. package/installer/adapters/cursor.js +34 -0
  476. package/installer/adapters/gemini-cli.js +37 -0
  477. package/installer/cli.js +91 -0
  478. package/installer/detect-runtime.js +122 -0
  479. package/installer/doctor.js +105 -0
  480. package/installer/index.js +199 -0
  481. package/installer/uninstall.js +46 -0
  482. package/installer/update.js +39 -0
  483. package/knowledge/agents-registry-v2.json +2702 -0
  484. package/knowledge/commands-registry-v2.json +3827 -0
  485. package/package.json +58 -0
  486. package/pyproject.toml +64 -0
@@ -0,0 +1,3827 @@
1
+ {
2
+ "_meta": {
3
+ "version": "2.0.0",
4
+ "generated": "2026-04-04T22:56:22.122832",
5
+ "total_commands": 216,
6
+ "generator": "core/registry/generator.py",
7
+ "departments": {
8
+ "brand": 12,
9
+ "community": 14,
10
+ "content": 14,
11
+ "dev": 16,
12
+ "ecom": 12,
13
+ "finance": 10,
14
+ "kb": 12,
15
+ "landing": 14,
16
+ "leadership": 10,
17
+ "marketing": 12,
18
+ "ops": 10,
19
+ "org": 10,
20
+ "pm": 12,
21
+ "saas": 14,
22
+ "sales": 10,
23
+ "strategy": 10,
24
+ "arka": 24
25
+ }
26
+ },
27
+ "commands": [
28
+ {
29
+ "id": "brand-identity",
30
+ "command": "/brand identity <name>",
31
+ "department": "brand",
32
+ "description": "Full brand identity (strategy to visual system)",
33
+ "keywords": [
34
+ "brand",
35
+ "logo",
36
+ "colors",
37
+ "palette",
38
+ "mockup",
39
+ "identity",
40
+ "naming",
41
+ "positioning"
42
+ ],
43
+ "tier": 1,
44
+ "modifies_code": false,
45
+ "requires_branch": false
46
+ },
47
+ {
48
+ "id": "brand-audit",
49
+ "command": "/brand audit",
50
+ "department": "brand",
51
+ "description": "Brand audit against Primal Code completeness",
52
+ "keywords": [
53
+ "brand",
54
+ "logo",
55
+ "colors",
56
+ "palette",
57
+ "mockup",
58
+ "identity",
59
+ "naming",
60
+ "positioning"
61
+ ],
62
+ "tier": 1,
63
+ "modifies_code": false,
64
+ "requires_branch": false
65
+ },
66
+ {
67
+ "id": "brand-naming",
68
+ "command": "/brand naming <project>",
69
+ "department": "brand",
70
+ "description": "Brand naming with SMILE/SCRATCH evaluation",
71
+ "keywords": [
72
+ "brand",
73
+ "logo",
74
+ "colors",
75
+ "palette",
76
+ "mockup",
77
+ "identity",
78
+ "naming",
79
+ "positioning"
80
+ ],
81
+ "tier": 3,
82
+ "modifies_code": false,
83
+ "requires_branch": false
84
+ },
85
+ {
86
+ "id": "brand-positioning",
87
+ "command": "/brand positioning <name>",
88
+ "department": "brand",
89
+ "description": "Positioning statement (Ries/Trout template)",
90
+ "keywords": [
91
+ "brand",
92
+ "logo",
93
+ "colors",
94
+ "palette",
95
+ "mockup",
96
+ "identity",
97
+ "naming",
98
+ "positioning"
99
+ ],
100
+ "tier": 3,
101
+ "modifies_code": false,
102
+ "requires_branch": false
103
+ },
104
+ {
105
+ "id": "brand-voice",
106
+ "command": "/brand voice <context>",
107
+ "department": "brand",
108
+ "description": "Define brand voice and tone guide",
109
+ "keywords": [
110
+ "brand",
111
+ "logo",
112
+ "colors",
113
+ "palette",
114
+ "mockup",
115
+ "identity",
116
+ "naming",
117
+ "positioning"
118
+ ],
119
+ "tier": 3,
120
+ "modifies_code": false,
121
+ "requires_branch": false
122
+ },
123
+ {
124
+ "id": "brand-guidelines",
125
+ "command": "/brand guidelines",
126
+ "department": "brand",
127
+ "description": "Compile brand guidelines document",
128
+ "keywords": [
129
+ "brand",
130
+ "logo",
131
+ "colors",
132
+ "palette",
133
+ "mockup",
134
+ "identity",
135
+ "naming",
136
+ "positioning"
137
+ ],
138
+ "tier": 3,
139
+ "modifies_code": false,
140
+ "requires_branch": false
141
+ },
142
+ {
143
+ "id": "brand-colors",
144
+ "command": "/brand colors <mood>",
145
+ "department": "brand",
146
+ "description": "Color palette design with theory",
147
+ "keywords": [
148
+ "brand",
149
+ "logo",
150
+ "colors",
151
+ "palette",
152
+ "mockup",
153
+ "identity",
154
+ "naming",
155
+ "positioning"
156
+ ],
157
+ "tier": 2,
158
+ "modifies_code": false,
159
+ "requires_branch": false
160
+ },
161
+ {
162
+ "id": "brand-logo",
163
+ "command": "/brand logo <brief>",
164
+ "department": "brand",
165
+ "description": "Logo concept generation with AI",
166
+ "keywords": [
167
+ "brand",
168
+ "logo",
169
+ "colors",
170
+ "palette",
171
+ "mockup",
172
+ "identity",
173
+ "naming",
174
+ "positioning"
175
+ ],
176
+ "tier": 3,
177
+ "modifies_code": false,
178
+ "requires_branch": false
179
+ },
180
+ {
181
+ "id": "brand-mockup",
182
+ "command": "/brand mockup <type>",
183
+ "department": "brand",
184
+ "description": "Generate mockups with AI image generation",
185
+ "keywords": [
186
+ "brand",
187
+ "logo",
188
+ "colors",
189
+ "palette",
190
+ "mockup",
191
+ "identity",
192
+ "naming",
193
+ "positioning"
194
+ ],
195
+ "tier": 3,
196
+ "modifies_code": false,
197
+ "requires_branch": false
198
+ },
199
+ {
200
+ "id": "brand-ux-audit",
201
+ "command": "/brand ux-audit <url>",
202
+ "department": "brand",
203
+ "description": "UX heuristic audit (Nielsen 10)",
204
+ "keywords": [
205
+ "brand",
206
+ "logo",
207
+ "colors",
208
+ "palette",
209
+ "mockup",
210
+ "identity",
211
+ "naming",
212
+ "positioning"
213
+ ],
214
+ "tier": 2,
215
+ "modifies_code": false,
216
+ "requires_branch": false
217
+ },
218
+ {
219
+ "id": "brand-design-system",
220
+ "command": "/brand design-system",
221
+ "department": "brand",
222
+ "description": "Design system specification (Atomic Design)",
223
+ "keywords": [
224
+ "brand",
225
+ "logo",
226
+ "colors",
227
+ "palette",
228
+ "mockup",
229
+ "identity",
230
+ "naming",
231
+ "positioning"
232
+ ],
233
+ "tier": 2,
234
+ "modifies_code": false,
235
+ "requires_branch": false
236
+ },
237
+ {
238
+ "id": "brand-wireframe",
239
+ "command": "/brand wireframe <page>",
240
+ "department": "brand",
241
+ "description": "UI wireframe and information architecture",
242
+ "keywords": [
243
+ "brand",
244
+ "logo",
245
+ "colors",
246
+ "palette",
247
+ "mockup",
248
+ "identity",
249
+ "naming",
250
+ "positioning"
251
+ ],
252
+ "tier": 3,
253
+ "modifies_code": false,
254
+ "requires_branch": false
255
+ },
256
+ {
257
+ "id": "community-model",
258
+ "command": "/community model <niche>",
259
+ "department": "community",
260
+ "description": "Community business model design",
261
+ "keywords": [
262
+ "community",
263
+ "group",
264
+ "membership",
265
+ "discord",
266
+ "telegram",
267
+ "skool",
268
+ "circle",
269
+ "gamification"
270
+ ],
271
+ "tier": 2,
272
+ "modifies_code": false,
273
+ "requires_branch": false
274
+ },
275
+ {
276
+ "id": "community-platform",
277
+ "command": "/community platform <niche>",
278
+ "department": "community",
279
+ "description": "Platform selection (Telegram, Discord, Skool, Circle)",
280
+ "keywords": [
281
+ "community",
282
+ "group",
283
+ "membership",
284
+ "discord",
285
+ "telegram",
286
+ "skool",
287
+ "circle",
288
+ "gamification"
289
+ ],
290
+ "tier": 3,
291
+ "modifies_code": false,
292
+ "requires_branch": false
293
+ },
294
+ {
295
+ "id": "community-setup",
296
+ "command": "/community setup <niche>",
297
+ "department": "community",
298
+ "description": "Full niche community setup",
299
+ "keywords": [
300
+ "community",
301
+ "group",
302
+ "membership",
303
+ "discord",
304
+ "telegram",
305
+ "skool",
306
+ "circle",
307
+ "gamification"
308
+ ],
309
+ "tier": 1,
310
+ "modifies_code": false,
311
+ "requires_branch": false
312
+ },
313
+ {
314
+ "id": "community-betting",
315
+ "command": "/community betting",
316
+ "department": "community",
317
+ "description": "Betting/trading community (Telegram VIP)",
318
+ "keywords": [
319
+ "community",
320
+ "group",
321
+ "membership",
322
+ "discord",
323
+ "telegram",
324
+ "skool",
325
+ "circle",
326
+ "gamification"
327
+ ],
328
+ "tier": 3,
329
+ "modifies_code": false,
330
+ "requires_branch": false
331
+ },
332
+ {
333
+ "id": "community-ai",
334
+ "command": "/community ai",
335
+ "department": "community",
336
+ "description": "AI/tech community (Discord)",
337
+ "keywords": [
338
+ "community",
339
+ "group",
340
+ "membership",
341
+ "discord",
342
+ "telegram",
343
+ "skool",
344
+ "circle",
345
+ "gamification"
346
+ ],
347
+ "tier": 3,
348
+ "modifies_code": false,
349
+ "requires_branch": false
350
+ },
351
+ {
352
+ "id": "community-onboard",
353
+ "command": "/community onboard",
354
+ "department": "community",
355
+ "description": "Member onboarding flow design",
356
+ "keywords": [
357
+ "community",
358
+ "group",
359
+ "membership",
360
+ "discord",
361
+ "telegram",
362
+ "skool",
363
+ "circle",
364
+ "gamification"
365
+ ],
366
+ "tier": 2,
367
+ "modifies_code": false,
368
+ "requires_branch": false
369
+ },
370
+ {
371
+ "id": "community-retain",
372
+ "command": "/community retain",
373
+ "department": "community",
374
+ "description": "Retention system (7 habits, engagement loops)",
375
+ "keywords": [
376
+ "community",
377
+ "group",
378
+ "membership",
379
+ "discord",
380
+ "telegram",
381
+ "skool",
382
+ "circle",
383
+ "gamification"
384
+ ],
385
+ "tier": 3,
386
+ "modifies_code": false,
387
+ "requires_branch": false
388
+ },
389
+ {
390
+ "id": "community-monetize",
391
+ "command": "/community monetize",
392
+ "department": "community",
393
+ "description": "Monetization plan (7 revenue streams)",
394
+ "keywords": [
395
+ "community",
396
+ "group",
397
+ "membership",
398
+ "discord",
399
+ "telegram",
400
+ "skool",
401
+ "circle",
402
+ "gamification"
403
+ ],
404
+ "tier": 3,
405
+ "modifies_code": false,
406
+ "requires_branch": false
407
+ },
408
+ {
409
+ "id": "community-grow",
410
+ "command": "/community grow",
411
+ "department": "community",
412
+ "description": "Growth strategy (1000 True Fans math)",
413
+ "keywords": [
414
+ "community",
415
+ "group",
416
+ "membership",
417
+ "discord",
418
+ "telegram",
419
+ "skool",
420
+ "circle",
421
+ "gamification"
422
+ ],
423
+ "tier": 2,
424
+ "modifies_code": false,
425
+ "requires_branch": false
426
+ },
427
+ {
428
+ "id": "community-calendar",
429
+ "command": "/community calendar <period>",
430
+ "department": "community",
431
+ "description": "Content and events calendar",
432
+ "keywords": [
433
+ "community",
434
+ "group",
435
+ "membership",
436
+ "discord",
437
+ "telegram",
438
+ "skool",
439
+ "circle",
440
+ "gamification"
441
+ ],
442
+ "tier": 3,
443
+ "modifies_code": false,
444
+ "requires_branch": false
445
+ },
446
+ {
447
+ "id": "community-metrics",
448
+ "command": "/community metrics",
449
+ "department": "community",
450
+ "description": "Community health metrics dashboard",
451
+ "keywords": [
452
+ "community",
453
+ "group",
454
+ "membership",
455
+ "discord",
456
+ "telegram",
457
+ "skool",
458
+ "circle",
459
+ "gamification"
460
+ ],
461
+ "tier": 3,
462
+ "modifies_code": false,
463
+ "requires_branch": false
464
+ },
465
+ {
466
+ "id": "community-gamify",
467
+ "command": "/community gamify",
468
+ "department": "community",
469
+ "description": "Gamification system design",
470
+ "keywords": [
471
+ "community",
472
+ "group",
473
+ "membership",
474
+ "discord",
475
+ "telegram",
476
+ "skool",
477
+ "circle",
478
+ "gamification"
479
+ ],
480
+ "tier": 2,
481
+ "modifies_code": false,
482
+ "requires_branch": false
483
+ },
484
+ {
485
+ "id": "community-moderate",
486
+ "command": "/community moderate",
487
+ "department": "community",
488
+ "description": "Moderation rules and escalation",
489
+ "keywords": [
490
+ "community",
491
+ "group",
492
+ "membership",
493
+ "discord",
494
+ "telegram",
495
+ "skool",
496
+ "circle",
497
+ "gamification"
498
+ ],
499
+ "tier": 3,
500
+ "modifies_code": false,
501
+ "requires_branch": false
502
+ },
503
+ {
504
+ "id": "community-event",
505
+ "command": "/community event <type>",
506
+ "department": "community",
507
+ "description": "Event planning (AMA, workshop, challenge)",
508
+ "keywords": [
509
+ "community",
510
+ "group",
511
+ "membership",
512
+ "discord",
513
+ "telegram",
514
+ "skool",
515
+ "circle",
516
+ "gamification"
517
+ ],
518
+ "tier": 3,
519
+ "modifies_code": false,
520
+ "requires_branch": false
521
+ },
522
+ {
523
+ "id": "content-viral",
524
+ "command": "/content viral <topic>",
525
+ "department": "content",
526
+ "description": "Viral content design with STEPPS audit",
527
+ "keywords": [
528
+ "viral",
529
+ "hook",
530
+ "script",
531
+ "repurpose",
532
+ "youtube",
533
+ "tiktok",
534
+ "reels",
535
+ "shorts"
536
+ ],
537
+ "tier": 2,
538
+ "modifies_code": false,
539
+ "requires_branch": false
540
+ },
541
+ {
542
+ "id": "content-hook",
543
+ "command": "/content hook <topic>",
544
+ "department": "content",
545
+ "description": "Hook writing (7 types, 5+ variants)",
546
+ "keywords": [
547
+ "viral",
548
+ "hook",
549
+ "script",
550
+ "repurpose",
551
+ "youtube",
552
+ "tiktok",
553
+ "reels",
554
+ "shorts"
555
+ ],
556
+ "tier": 3,
557
+ "modifies_code": false,
558
+ "requires_branch": false
559
+ },
560
+ {
561
+ "id": "content-script",
562
+ "command": "/content script <topic>",
563
+ "department": "content",
564
+ "description": "Video/podcast script (hook-bridge-body-CTA)",
565
+ "keywords": [
566
+ "viral",
567
+ "hook",
568
+ "script",
569
+ "repurpose",
570
+ "youtube",
571
+ "tiktok",
572
+ "reels",
573
+ "shorts"
574
+ ],
575
+ "tier": 3,
576
+ "modifies_code": false,
577
+ "requires_branch": false
578
+ },
579
+ {
580
+ "id": "content-system",
581
+ "command": "/content system",
582
+ "department": "content",
583
+ "description": "Content Operating System setup",
584
+ "keywords": [
585
+ "viral",
586
+ "hook",
587
+ "script",
588
+ "repurpose",
589
+ "youtube",
590
+ "tiktok",
591
+ "reels",
592
+ "shorts"
593
+ ],
594
+ "tier": 3,
595
+ "modifies_code": false,
596
+ "requires_branch": false
597
+ },
598
+ {
599
+ "id": "content-platform",
600
+ "command": "/content platform <platform>",
601
+ "department": "content",
602
+ "description": "Platform-specific optimization guide",
603
+ "keywords": [
604
+ "viral",
605
+ "hook",
606
+ "script",
607
+ "repurpose",
608
+ "youtube",
609
+ "tiktok",
610
+ "reels",
611
+ "shorts"
612
+ ],
613
+ "tier": 3,
614
+ "modifies_code": false,
615
+ "requires_branch": false
616
+ },
617
+ {
618
+ "id": "content-repurpose",
619
+ "command": "/content repurpose <pillar>",
620
+ "department": "content",
621
+ "description": "1 piece to 30+ platform-native variants",
622
+ "keywords": [
623
+ "viral",
624
+ "hook",
625
+ "script",
626
+ "repurpose",
627
+ "youtube",
628
+ "tiktok",
629
+ "reels",
630
+ "shorts"
631
+ ],
632
+ "tier": 3,
633
+ "modifies_code": false,
634
+ "requires_branch": false
635
+ },
636
+ {
637
+ "id": "content-ai",
638
+ "command": "/content ai <task>",
639
+ "department": "content",
640
+ "description": "AI-augmented content workflow",
641
+ "keywords": [
642
+ "viral",
643
+ "hook",
644
+ "script",
645
+ "repurpose",
646
+ "youtube",
647
+ "tiktok",
648
+ "reels",
649
+ "shorts"
650
+ ],
651
+ "tier": 3,
652
+ "modifies_code": false,
653
+ "requires_branch": false
654
+ },
655
+ {
656
+ "id": "content-youtube",
657
+ "command": "/content youtube <topic>",
658
+ "department": "content",
659
+ "description": "YouTube strategy (title, thumb, script, SEO)",
660
+ "keywords": [
661
+ "viral",
662
+ "hook",
663
+ "script",
664
+ "repurpose",
665
+ "youtube",
666
+ "tiktok",
667
+ "reels",
668
+ "shorts"
669
+ ],
670
+ "tier": 2,
671
+ "modifies_code": false,
672
+ "requires_branch": false
673
+ },
674
+ {
675
+ "id": "content-short",
676
+ "command": "/content short <topic>",
677
+ "department": "content",
678
+ "description": "Short-form content (Reels, TikTok, Shorts)",
679
+ "keywords": [
680
+ "viral",
681
+ "hook",
682
+ "script",
683
+ "repurpose",
684
+ "youtube",
685
+ "tiktok",
686
+ "reels",
687
+ "shorts"
688
+ ],
689
+ "tier": 3,
690
+ "modifies_code": false,
691
+ "requires_branch": false
692
+ },
693
+ {
694
+ "id": "content-newsletter",
695
+ "command": "/content newsletter <topic>",
696
+ "department": "content",
697
+ "description": "Newsletter writing and growth",
698
+ "keywords": [
699
+ "viral",
700
+ "hook",
701
+ "script",
702
+ "repurpose",
703
+ "youtube",
704
+ "tiktok",
705
+ "reels",
706
+ "shorts"
707
+ ],
708
+ "tier": 3,
709
+ "modifies_code": false,
710
+ "requires_branch": false
711
+ },
712
+ {
713
+ "id": "content-analytics",
714
+ "command": "/content analytics",
715
+ "department": "content",
716
+ "description": "Content performance analytics review",
717
+ "keywords": [
718
+ "viral",
719
+ "hook",
720
+ "script",
721
+ "repurpose",
722
+ "youtube",
723
+ "tiktok",
724
+ "reels",
725
+ "shorts"
726
+ ],
727
+ "tier": 3,
728
+ "modifies_code": false,
729
+ "requires_branch": false
730
+ },
731
+ {
732
+ "id": "content-monetize",
733
+ "command": "/content monetize",
734
+ "department": "content",
735
+ "description": "Creator monetization plan (5 levels)",
736
+ "keywords": [
737
+ "viral",
738
+ "hook",
739
+ "script",
740
+ "repurpose",
741
+ "youtube",
742
+ "tiktok",
743
+ "reels",
744
+ "shorts"
745
+ ],
746
+ "tier": 3,
747
+ "modifies_code": false,
748
+ "requires_branch": false
749
+ },
750
+ {
751
+ "id": "content-calendar",
752
+ "command": "/content calendar <period>",
753
+ "department": "content",
754
+ "description": "Content calendar with themes and batching",
755
+ "keywords": [
756
+ "viral",
757
+ "hook",
758
+ "script",
759
+ "repurpose",
760
+ "youtube",
761
+ "tiktok",
762
+ "reels",
763
+ "shorts"
764
+ ],
765
+ "tier": 3,
766
+ "modifies_code": false,
767
+ "requires_branch": false
768
+ },
769
+ {
770
+ "id": "content-thumbnail",
771
+ "command": "/content thumbnail <video>",
772
+ "department": "content",
773
+ "description": "Thumbnail + title packaging (A/B variants)",
774
+ "keywords": [
775
+ "viral",
776
+ "hook",
777
+ "script",
778
+ "repurpose",
779
+ "youtube",
780
+ "tiktok",
781
+ "reels",
782
+ "shorts"
783
+ ],
784
+ "tier": 3,
785
+ "modifies_code": false,
786
+ "requires_branch": false
787
+ },
788
+ {
789
+ "id": "dev-feature",
790
+ "command": "/dev feature <description>",
791
+ "department": "dev",
792
+ "description": "Implement a new feature (full enterprise workflow)",
793
+ "keywords": [
794
+ "build",
795
+ "code",
796
+ "feature",
797
+ "deploy",
798
+ "test",
799
+ "review",
800
+ "scaffold",
801
+ "debug"
802
+ ],
803
+ "tier": 1,
804
+ "modifies_code": true,
805
+ "requires_branch": true
806
+ },
807
+ {
808
+ "id": "dev-api",
809
+ "command": "/dev api <spec>",
810
+ "department": "dev",
811
+ "description": "Design and implement API endpoints",
812
+ "keywords": [
813
+ "build",
814
+ "code",
815
+ "feature",
816
+ "deploy",
817
+ "test",
818
+ "review",
819
+ "scaffold",
820
+ "debug"
821
+ ],
822
+ "tier": 2,
823
+ "modifies_code": true,
824
+ "requires_branch": true
825
+ },
826
+ {
827
+ "id": "dev-architecture",
828
+ "command": "/dev architecture <system>",
829
+ "department": "dev",
830
+ "description": "Architecture design with ADR",
831
+ "keywords": [
832
+ "build",
833
+ "code",
834
+ "feature",
835
+ "deploy",
836
+ "test",
837
+ "review",
838
+ "scaffold",
839
+ "debug"
840
+ ],
841
+ "tier": 2,
842
+ "modifies_code": false,
843
+ "requires_branch": false
844
+ },
845
+ {
846
+ "id": "dev-ddd",
847
+ "command": "/dev ddd <domain>",
848
+ "department": "dev",
849
+ "description": "Domain-Driven Design modeling session",
850
+ "keywords": [
851
+ "build",
852
+ "code",
853
+ "feature",
854
+ "deploy",
855
+ "test",
856
+ "review",
857
+ "scaffold",
858
+ "debug"
859
+ ],
860
+ "tier": 2,
861
+ "modifies_code": false,
862
+ "requires_branch": false
863
+ },
864
+ {
865
+ "id": "dev-debug",
866
+ "command": "/dev debug <issue>",
867
+ "department": "dev",
868
+ "description": "Systematic debugging with root cause analysis",
869
+ "keywords": [
870
+ "build",
871
+ "code",
872
+ "feature",
873
+ "deploy",
874
+ "test",
875
+ "review",
876
+ "scaffold",
877
+ "debug"
878
+ ],
879
+ "tier": 2,
880
+ "modifies_code": true,
881
+ "requires_branch": true
882
+ },
883
+ {
884
+ "id": "dev-refactor",
885
+ "command": "/dev refactor <scope>",
886
+ "department": "dev",
887
+ "description": "Refactor code with Clean Code audit",
888
+ "keywords": [
889
+ "build",
890
+ "code",
891
+ "feature",
892
+ "deploy",
893
+ "test",
894
+ "review",
895
+ "scaffold",
896
+ "debug"
897
+ ],
898
+ "tier": 2,
899
+ "modifies_code": true,
900
+ "requires_branch": true
901
+ },
902
+ {
903
+ "id": "dev-db",
904
+ "command": "/dev db <action>",
905
+ "department": "dev",
906
+ "description": "Database design, migrations, query optimization",
907
+ "keywords": [
908
+ "build",
909
+ "code",
910
+ "feature",
911
+ "deploy",
912
+ "test",
913
+ "review",
914
+ "scaffold",
915
+ "debug"
916
+ ],
917
+ "tier": 2,
918
+ "modifies_code": true,
919
+ "requires_branch": true
920
+ },
921
+ {
922
+ "id": "dev-review",
923
+ "command": "/dev review <file/pr>",
924
+ "department": "dev",
925
+ "description": "Code review against SOLID + Clean Code",
926
+ "keywords": [
927
+ "build",
928
+ "code",
929
+ "feature",
930
+ "deploy",
931
+ "test",
932
+ "review",
933
+ "scaffold",
934
+ "debug"
935
+ ],
936
+ "tier": 3,
937
+ "modifies_code": false,
938
+ "requires_branch": false
939
+ },
940
+ {
941
+ "id": "dev-test",
942
+ "command": "/dev test <scope>",
943
+ "department": "dev",
944
+ "description": "Write or improve tests (TDD cycle)",
945
+ "keywords": [
946
+ "build",
947
+ "code",
948
+ "feature",
949
+ "deploy",
950
+ "test",
951
+ "review",
952
+ "scaffold",
953
+ "debug"
954
+ ],
955
+ "tier": 3,
956
+ "modifies_code": false,
957
+ "requires_branch": false
958
+ },
959
+ {
960
+ "id": "dev-security-audit",
961
+ "command": "/dev security-audit",
962
+ "department": "dev",
963
+ "description": "OWASP Top 10 audit + dependency scan",
964
+ "keywords": [
965
+ "build",
966
+ "code",
967
+ "feature",
968
+ "deploy",
969
+ "test",
970
+ "review",
971
+ "scaffold",
972
+ "debug"
973
+ ],
974
+ "tier": 2,
975
+ "modifies_code": false,
976
+ "requires_branch": false
977
+ },
978
+ {
979
+ "id": "dev-performance",
980
+ "command": "/dev performance <target>",
981
+ "department": "dev",
982
+ "description": "Performance audit (CWV, API latency, DB)",
983
+ "keywords": [
984
+ "build",
985
+ "code",
986
+ "feature",
987
+ "deploy",
988
+ "test",
989
+ "review",
990
+ "scaffold",
991
+ "debug"
992
+ ],
993
+ "tier": 2,
994
+ "modifies_code": false,
995
+ "requires_branch": false
996
+ },
997
+ {
998
+ "id": "dev-pipeline",
999
+ "command": "/dev pipeline <project>",
1000
+ "department": "dev",
1001
+ "description": "CI/CD pipeline design and setup",
1002
+ "keywords": [
1003
+ "build",
1004
+ "code",
1005
+ "feature",
1006
+ "deploy",
1007
+ "test",
1008
+ "review",
1009
+ "scaffold",
1010
+ "debug"
1011
+ ],
1012
+ "tier": 2,
1013
+ "modifies_code": false,
1014
+ "requires_branch": false
1015
+ },
1016
+ {
1017
+ "id": "dev-clean-review",
1018
+ "command": "/dev clean-review <file>",
1019
+ "department": "dev",
1020
+ "description": "Clean Code + SOLID compliance review",
1021
+ "keywords": [
1022
+ "build",
1023
+ "code",
1024
+ "feature",
1025
+ "deploy",
1026
+ "test",
1027
+ "review",
1028
+ "scaffold",
1029
+ "debug"
1030
+ ],
1031
+ "tier": 3,
1032
+ "modifies_code": false,
1033
+ "requires_branch": false
1034
+ },
1035
+ {
1036
+ "id": "dev-spec",
1037
+ "command": "/dev spec <description>",
1038
+ "department": "dev",
1039
+ "description": "Create feature specification (mandatory pre-impl)",
1040
+ "keywords": [
1041
+ "build",
1042
+ "code",
1043
+ "feature",
1044
+ "deploy",
1045
+ "test",
1046
+ "review",
1047
+ "scaffold",
1048
+ "debug"
1049
+ ],
1050
+ "tier": 3,
1051
+ "modifies_code": false,
1052
+ "requires_branch": false
1053
+ },
1054
+ {
1055
+ "id": "dev-scaffold",
1056
+ "command": "/dev scaffold <type> <name>",
1057
+ "department": "dev",
1058
+ "description": "Project scaffolding from starter repos",
1059
+ "keywords": [
1060
+ "build",
1061
+ "code",
1062
+ "feature",
1063
+ "deploy",
1064
+ "test",
1065
+ "review",
1066
+ "scaffold",
1067
+ "debug"
1068
+ ],
1069
+ "tier": 3,
1070
+ "modifies_code": true,
1071
+ "requires_branch": true
1072
+ },
1073
+ {
1074
+ "id": "dev-do",
1075
+ "command": "/dev do <description>",
1076
+ "department": "dev",
1077
+ "description": "Smart routing to the right dev command",
1078
+ "keywords": [
1079
+ "build",
1080
+ "code",
1081
+ "feature",
1082
+ "deploy",
1083
+ "test",
1084
+ "review",
1085
+ "scaffold",
1086
+ "debug"
1087
+ ],
1088
+ "tier": 3,
1089
+ "modifies_code": false,
1090
+ "requires_branch": false
1091
+ },
1092
+ {
1093
+ "id": "ecom-audit",
1094
+ "command": "/ecom audit",
1095
+ "department": "ecom",
1096
+ "description": "Full store audit (UX, SEO, performance, content, conversion)",
1097
+ "keywords": [
1098
+ "store",
1099
+ "product",
1100
+ "shop",
1101
+ "shopify",
1102
+ "ecommerce",
1103
+ "catalog",
1104
+ "cart",
1105
+ "checkout"
1106
+ ],
1107
+ "tier": 1,
1108
+ "modifies_code": false,
1109
+ "requires_branch": false
1110
+ },
1111
+ {
1112
+ "id": "ecom-product-page",
1113
+ "command": "/ecom product-page <product>",
1114
+ "department": "ecom",
1115
+ "description": "Product page optimization (Baymard guidelines)",
1116
+ "keywords": [
1117
+ "store",
1118
+ "product",
1119
+ "shop",
1120
+ "shopify",
1121
+ "ecommerce",
1122
+ "catalog",
1123
+ "cart",
1124
+ "checkout"
1125
+ ],
1126
+ "tier": 3,
1127
+ "modifies_code": false,
1128
+ "requires_branch": false
1129
+ },
1130
+ {
1131
+ "id": "ecom-cro",
1132
+ "command": "/ecom cro <page>",
1133
+ "department": "ecom",
1134
+ "description": "CRO optimization with ResearchXL",
1135
+ "keywords": [
1136
+ "store",
1137
+ "product",
1138
+ "shop",
1139
+ "shopify",
1140
+ "ecommerce",
1141
+ "catalog",
1142
+ "cart",
1143
+ "checkout"
1144
+ ],
1145
+ "tier": 3,
1146
+ "modifies_code": false,
1147
+ "requires_branch": false
1148
+ },
1149
+ {
1150
+ "id": "ecom-rfm",
1151
+ "command": "/ecom rfm",
1152
+ "department": "ecom",
1153
+ "description": "RFM customer segmentation",
1154
+ "keywords": [
1155
+ "store",
1156
+ "product",
1157
+ "shop",
1158
+ "shopify",
1159
+ "ecommerce",
1160
+ "catalog",
1161
+ "cart",
1162
+ "checkout"
1163
+ ],
1164
+ "tier": 3,
1165
+ "modifies_code": false,
1166
+ "requires_branch": false
1167
+ },
1168
+ {
1169
+ "id": "ecom-pricing",
1170
+ "command": "/ecom pricing <product>",
1171
+ "department": "ecom",
1172
+ "description": "Pricing strategy (value-based, dynamic, psychological)",
1173
+ "keywords": [
1174
+ "store",
1175
+ "product",
1176
+ "shop",
1177
+ "shopify",
1178
+ "ecommerce",
1179
+ "catalog",
1180
+ "cart",
1181
+ "checkout"
1182
+ ],
1183
+ "tier": 2,
1184
+ "modifies_code": false,
1185
+ "requires_branch": false
1186
+ },
1187
+ {
1188
+ "id": "ecom-marketplace",
1189
+ "command": "/ecom marketplace <action>",
1190
+ "department": "ecom",
1191
+ "description": "Marketplace operations (Mirakl, multi-vendor)",
1192
+ "keywords": [
1193
+ "store",
1194
+ "product",
1195
+ "shop",
1196
+ "shopify",
1197
+ "ecommerce",
1198
+ "catalog",
1199
+ "cart",
1200
+ "checkout"
1201
+ ],
1202
+ "tier": 3,
1203
+ "modifies_code": false,
1204
+ "requires_branch": false
1205
+ },
1206
+ {
1207
+ "id": "ecom-fulfillment",
1208
+ "command": "/ecom fulfillment",
1209
+ "department": "ecom",
1210
+ "description": "Fulfillment strategy (3PL, dropship, FBA)",
1211
+ "keywords": [
1212
+ "store",
1213
+ "product",
1214
+ "shop",
1215
+ "shopify",
1216
+ "ecommerce",
1217
+ "catalog",
1218
+ "cart",
1219
+ "checkout"
1220
+ ],
1221
+ "tier": 2,
1222
+ "modifies_code": false,
1223
+ "requires_branch": false
1224
+ },
1225
+ {
1226
+ "id": "ecom-subscription",
1227
+ "command": "/ecom subscription <model>",
1228
+ "department": "ecom",
1229
+ "description": "Subscription model design",
1230
+ "keywords": [
1231
+ "store",
1232
+ "product",
1233
+ "shop",
1234
+ "shopify",
1235
+ "ecommerce",
1236
+ "catalog",
1237
+ "cart",
1238
+ "checkout"
1239
+ ],
1240
+ "tier": 2,
1241
+ "modifies_code": false,
1242
+ "requires_branch": false
1243
+ },
1244
+ {
1245
+ "id": "ecom-cart-recovery",
1246
+ "command": "/ecom cart-recovery",
1247
+ "department": "ecom",
1248
+ "description": "Cart abandonment email sequence",
1249
+ "keywords": [
1250
+ "store",
1251
+ "product",
1252
+ "shop",
1253
+ "shopify",
1254
+ "ecommerce",
1255
+ "catalog",
1256
+ "cart",
1257
+ "checkout"
1258
+ ],
1259
+ "tier": 3,
1260
+ "modifies_code": false,
1261
+ "requires_branch": false
1262
+ },
1263
+ {
1264
+ "id": "ecom-analytics",
1265
+ "command": "/ecom analytics",
1266
+ "department": "ecom",
1267
+ "description": "E-commerce analytics dashboard",
1268
+ "keywords": [
1269
+ "store",
1270
+ "product",
1271
+ "shop",
1272
+ "shopify",
1273
+ "ecommerce",
1274
+ "catalog",
1275
+ "cart",
1276
+ "checkout"
1277
+ ],
1278
+ "tier": 3,
1279
+ "modifies_code": false,
1280
+ "requires_branch": false
1281
+ },
1282
+ {
1283
+ "id": "ecom-launch",
1284
+ "command": "/ecom launch <product>",
1285
+ "department": "ecom",
1286
+ "description": "Product launch plan",
1287
+ "keywords": [
1288
+ "store",
1289
+ "product",
1290
+ "shop",
1291
+ "shopify",
1292
+ "ecommerce",
1293
+ "catalog",
1294
+ "cart",
1295
+ "checkout"
1296
+ ],
1297
+ "tier": 3,
1298
+ "modifies_code": false,
1299
+ "requires_branch": false
1300
+ },
1301
+ {
1302
+ "id": "ecom-journey",
1303
+ "command": "/ecom journey <segment>",
1304
+ "department": "ecom",
1305
+ "description": "Customer journey mapping",
1306
+ "keywords": [
1307
+ "store",
1308
+ "product",
1309
+ "shop",
1310
+ "shopify",
1311
+ "ecommerce",
1312
+ "catalog",
1313
+ "cart",
1314
+ "checkout"
1315
+ ],
1316
+ "tier": 3,
1317
+ "modifies_code": false,
1318
+ "requires_branch": false
1319
+ },
1320
+ {
1321
+ "id": "fin-model",
1322
+ "command": "/fin model <type>",
1323
+ "department": "finance",
1324
+ "description": "Financial model (3-statement, DCF, scenario)",
1325
+ "keywords": [
1326
+ "budget",
1327
+ "invoice",
1328
+ "revenue",
1329
+ "forecast",
1330
+ "profit",
1331
+ "financial",
1332
+ "invest",
1333
+ "valuation"
1334
+ ],
1335
+ "tier": 3,
1336
+ "modifies_code": false,
1337
+ "requires_branch": false
1338
+ },
1339
+ {
1340
+ "id": "fin-report",
1341
+ "command": "/fin report <type>",
1342
+ "department": "finance",
1343
+ "description": "Financial report (monthly, quarterly, annual)",
1344
+ "keywords": [
1345
+ "budget",
1346
+ "invoice",
1347
+ "revenue",
1348
+ "forecast",
1349
+ "profit",
1350
+ "financial",
1351
+ "invest",
1352
+ "valuation"
1353
+ ],
1354
+ "tier": 3,
1355
+ "modifies_code": false,
1356
+ "requires_branch": false
1357
+ },
1358
+ {
1359
+ "id": "fin-cashflow",
1360
+ "command": "/fin cashflow <period>",
1361
+ "department": "finance",
1362
+ "description": "Cash flow forecast",
1363
+ "keywords": [
1364
+ "budget",
1365
+ "invoice",
1366
+ "revenue",
1367
+ "forecast",
1368
+ "profit",
1369
+ "financial",
1370
+ "invest",
1371
+ "valuation"
1372
+ ],
1373
+ "tier": 3,
1374
+ "modifies_code": false,
1375
+ "requires_branch": false
1376
+ },
1377
+ {
1378
+ "id": "fin-budget",
1379
+ "command": "/fin budget <scope>",
1380
+ "department": "finance",
1381
+ "description": "Budget planning",
1382
+ "keywords": [
1383
+ "budget",
1384
+ "invoice",
1385
+ "revenue",
1386
+ "forecast",
1387
+ "profit",
1388
+ "financial",
1389
+ "invest",
1390
+ "valuation"
1391
+ ],
1392
+ "tier": 3,
1393
+ "modifies_code": false,
1394
+ "requires_branch": false
1395
+ },
1396
+ {
1397
+ "id": "fin-unit-economics",
1398
+ "command": "/fin unit-economics",
1399
+ "department": "finance",
1400
+ "description": "Unit economics analysis (CAC, LTV, Rule of 40)",
1401
+ "keywords": [
1402
+ "budget",
1403
+ "invoice",
1404
+ "revenue",
1405
+ "forecast",
1406
+ "profit",
1407
+ "financial",
1408
+ "invest",
1409
+ "valuation"
1410
+ ],
1411
+ "tier": 2,
1412
+ "modifies_code": false,
1413
+ "requires_branch": false
1414
+ },
1415
+ {
1416
+ "id": "fin-pitch",
1417
+ "command": "/fin pitch <stage>",
1418
+ "department": "finance",
1419
+ "description": "Investor pitch deck financials",
1420
+ "keywords": [
1421
+ "budget",
1422
+ "invoice",
1423
+ "revenue",
1424
+ "forecast",
1425
+ "profit",
1426
+ "financial",
1427
+ "invest",
1428
+ "valuation"
1429
+ ],
1430
+ "tier": 3,
1431
+ "modifies_code": false,
1432
+ "requires_branch": false
1433
+ },
1434
+ {
1435
+ "id": "fin-valuation",
1436
+ "command": "/fin valuation",
1437
+ "department": "finance",
1438
+ "description": "Company valuation (DCF, comparables)",
1439
+ "keywords": [
1440
+ "budget",
1441
+ "invoice",
1442
+ "revenue",
1443
+ "forecast",
1444
+ "profit",
1445
+ "financial",
1446
+ "invest",
1447
+ "valuation"
1448
+ ],
1449
+ "tier": 3,
1450
+ "modifies_code": false,
1451
+ "requires_branch": false
1452
+ },
1453
+ {
1454
+ "id": "fin-expense-audit",
1455
+ "command": "/fin expense-audit",
1456
+ "department": "finance",
1457
+ "description": "Expense audit and optimization",
1458
+ "keywords": [
1459
+ "budget",
1460
+ "invoice",
1461
+ "revenue",
1462
+ "forecast",
1463
+ "profit",
1464
+ "financial",
1465
+ "invest",
1466
+ "valuation"
1467
+ ],
1468
+ "tier": 2,
1469
+ "modifies_code": false,
1470
+ "requires_branch": false
1471
+ },
1472
+ {
1473
+ "id": "fin-revenue-model",
1474
+ "command": "/fin revenue-model",
1475
+ "department": "finance",
1476
+ "description": "Revenue model design",
1477
+ "keywords": [
1478
+ "budget",
1479
+ "invoice",
1480
+ "revenue",
1481
+ "forecast",
1482
+ "profit",
1483
+ "financial",
1484
+ "invest",
1485
+ "valuation"
1486
+ ],
1487
+ "tier": 2,
1488
+ "modifies_code": false,
1489
+ "requires_branch": false
1490
+ },
1491
+ {
1492
+ "id": "fin-scenario",
1493
+ "command": "/fin scenario <context>",
1494
+ "department": "finance",
1495
+ "description": "Scenario analysis (base, bull, bear)",
1496
+ "keywords": [
1497
+ "budget",
1498
+ "invoice",
1499
+ "revenue",
1500
+ "forecast",
1501
+ "profit",
1502
+ "financial",
1503
+ "invest",
1504
+ "valuation"
1505
+ ],
1506
+ "tier": 2,
1507
+ "modifies_code": false,
1508
+ "requires_branch": false
1509
+ },
1510
+ {
1511
+ "id": "kb-learn",
1512
+ "command": "/kb learn <url>",
1513
+ "department": "kb",
1514
+ "description": "Ingest content (YouTube, article, PDF) into KB",
1515
+ "keywords": [
1516
+ "learn",
1517
+ "persona",
1518
+ "knowledge",
1519
+ "youtube",
1520
+ "transcribe",
1521
+ "research",
1522
+ "zettelkasten",
1523
+ "note"
1524
+ ],
1525
+ "tier": 3,
1526
+ "modifies_code": false,
1527
+ "requires_branch": false
1528
+ },
1529
+ {
1530
+ "id": "kb-research",
1531
+ "command": "/kb research <topic>",
1532
+ "department": "kb",
1533
+ "description": "Research plan and execution with source evaluation",
1534
+ "keywords": [
1535
+ "learn",
1536
+ "persona",
1537
+ "knowledge",
1538
+ "youtube",
1539
+ "transcribe",
1540
+ "research",
1541
+ "zettelkasten",
1542
+ "note"
1543
+ ],
1544
+ "tier": 3,
1545
+ "modifies_code": false,
1546
+ "requires_branch": false
1547
+ },
1548
+ {
1549
+ "id": "kb-ai-research",
1550
+ "command": "/kb ai-research <topic>",
1551
+ "department": "kb",
1552
+ "description": "AI-augmented research (Elicit, Perplexity, Claude)",
1553
+ "keywords": [
1554
+ "learn",
1555
+ "persona",
1556
+ "knowledge",
1557
+ "youtube",
1558
+ "transcribe",
1559
+ "research",
1560
+ "zettelkasten",
1561
+ "note"
1562
+ ],
1563
+ "tier": 3,
1564
+ "modifies_code": false,
1565
+ "requires_branch": false
1566
+ },
1567
+ {
1568
+ "id": "kb-persona",
1569
+ "command": "/kb persona <name>",
1570
+ "department": "kb",
1571
+ "description": "Build or view a persona from the KB",
1572
+ "keywords": [
1573
+ "learn",
1574
+ "persona",
1575
+ "knowledge",
1576
+ "youtube",
1577
+ "transcribe",
1578
+ "research",
1579
+ "zettelkasten",
1580
+ "note"
1581
+ ],
1582
+ "tier": 3,
1583
+ "modifies_code": false,
1584
+ "requires_branch": false
1585
+ },
1586
+ {
1587
+ "id": "kb-moc",
1588
+ "command": "/kb moc <cluster>",
1589
+ "department": "kb",
1590
+ "description": "Create/update Map of Content",
1591
+ "keywords": [
1592
+ "learn",
1593
+ "persona",
1594
+ "knowledge",
1595
+ "youtube",
1596
+ "transcribe",
1597
+ "research",
1598
+ "zettelkasten",
1599
+ "note"
1600
+ ],
1601
+ "tier": 3,
1602
+ "modifies_code": false,
1603
+ "requires_branch": false
1604
+ },
1605
+ {
1606
+ "id": "kb-zettelkasten",
1607
+ "command": "/kb zettelkasten <note>",
1608
+ "department": "kb",
1609
+ "description": "Process a note through Zettelkasten workflow",
1610
+ "keywords": [
1611
+ "learn",
1612
+ "persona",
1613
+ "knowledge",
1614
+ "youtube",
1615
+ "transcribe",
1616
+ "research",
1617
+ "zettelkasten",
1618
+ "note"
1619
+ ],
1620
+ "tier": 3,
1621
+ "modifies_code": false,
1622
+ "requires_branch": false
1623
+ },
1624
+ {
1625
+ "id": "kb-para-review",
1626
+ "command": "/kb para-review",
1627
+ "department": "kb",
1628
+ "description": "PARA organization review cycle",
1629
+ "keywords": [
1630
+ "learn",
1631
+ "persona",
1632
+ "knowledge",
1633
+ "youtube",
1634
+ "transcribe",
1635
+ "research",
1636
+ "zettelkasten",
1637
+ "note"
1638
+ ],
1639
+ "tier": 3,
1640
+ "modifies_code": false,
1641
+ "requires_branch": false
1642
+ },
1643
+ {
1644
+ "id": "kb-evaluate",
1645
+ "command": "/kb evaluate <source>",
1646
+ "department": "kb",
1647
+ "description": "Source evaluation using CRAAP test",
1648
+ "keywords": [
1649
+ "learn",
1650
+ "persona",
1651
+ "knowledge",
1652
+ "youtube",
1653
+ "transcribe",
1654
+ "research",
1655
+ "zettelkasten",
1656
+ "note"
1657
+ ],
1658
+ "tier": 3,
1659
+ "modifies_code": false,
1660
+ "requires_branch": false
1661
+ },
1662
+ {
1663
+ "id": "kb-taxonomy",
1664
+ "command": "/kb taxonomy",
1665
+ "department": "kb",
1666
+ "description": "Taxonomy and tagging management",
1667
+ "keywords": [
1668
+ "learn",
1669
+ "persona",
1670
+ "knowledge",
1671
+ "youtube",
1672
+ "transcribe",
1673
+ "research",
1674
+ "zettelkasten",
1675
+ "note"
1676
+ ],
1677
+ "tier": 3,
1678
+ "modifies_code": false,
1679
+ "requires_branch": false
1680
+ },
1681
+ {
1682
+ "id": "kb-review",
1683
+ "command": "/kb review",
1684
+ "department": "kb",
1685
+ "description": "Knowledge freshness review (90-day cycle)",
1686
+ "keywords": [
1687
+ "learn",
1688
+ "persona",
1689
+ "knowledge",
1690
+ "youtube",
1691
+ "transcribe",
1692
+ "research",
1693
+ "zettelkasten",
1694
+ "note"
1695
+ ],
1696
+ "tier": 3,
1697
+ "modifies_code": false,
1698
+ "requires_branch": false
1699
+ },
1700
+ {
1701
+ "id": "kb-search",
1702
+ "command": "/kb search <query>",
1703
+ "department": "kb",
1704
+ "description": "Search the knowledge base",
1705
+ "keywords": [
1706
+ "learn",
1707
+ "persona",
1708
+ "knowledge",
1709
+ "youtube",
1710
+ "transcribe",
1711
+ "research",
1712
+ "zettelkasten",
1713
+ "note"
1714
+ ],
1715
+ "tier": 3,
1716
+ "modifies_code": false,
1717
+ "requires_branch": false
1718
+ },
1719
+ {
1720
+ "id": "kb-intel",
1721
+ "command": "/kb intel <competitor>",
1722
+ "department": "kb",
1723
+ "description": "Competitive intelligence research",
1724
+ "keywords": [
1725
+ "learn",
1726
+ "persona",
1727
+ "knowledge",
1728
+ "youtube",
1729
+ "transcribe",
1730
+ "research",
1731
+ "zettelkasten",
1732
+ "note"
1733
+ ],
1734
+ "tier": 3,
1735
+ "modifies_code": false,
1736
+ "requires_branch": false
1737
+ },
1738
+ {
1739
+ "id": "landing-offer",
1740
+ "command": "/landing offer <product>",
1741
+ "department": "landing",
1742
+ "description": "Grand Slam Offer creation (Hormozi value equation)",
1743
+ "keywords": [
1744
+ "landing",
1745
+ "funnel",
1746
+ "copy",
1747
+ "headline",
1748
+ "offer",
1749
+ "launch",
1750
+ "affiliate",
1751
+ "webinar"
1752
+ ],
1753
+ "tier": 3,
1754
+ "modifies_code": false,
1755
+ "requires_branch": false
1756
+ },
1757
+ {
1758
+ "id": "landing-funnel",
1759
+ "command": "/landing funnel <type>",
1760
+ "department": "landing",
1761
+ "description": "Funnel architecture (squeeze, webinar, VSL, SLO)",
1762
+ "keywords": [
1763
+ "landing",
1764
+ "funnel",
1765
+ "copy",
1766
+ "headline",
1767
+ "offer",
1768
+ "launch",
1769
+ "affiliate",
1770
+ "webinar"
1771
+ ],
1772
+ "tier": 3,
1773
+ "modifies_code": false,
1774
+ "requires_branch": false
1775
+ },
1776
+ {
1777
+ "id": "landing-copy",
1778
+ "command": "/landing copy <type>",
1779
+ "department": "landing",
1780
+ "description": "Sales copy using awareness-matched framework",
1781
+ "keywords": [
1782
+ "landing",
1783
+ "funnel",
1784
+ "copy",
1785
+ "headline",
1786
+ "offer",
1787
+ "launch",
1788
+ "affiliate",
1789
+ "webinar"
1790
+ ],
1791
+ "tier": 3,
1792
+ "modifies_code": false,
1793
+ "requires_branch": false
1794
+ },
1795
+ {
1796
+ "id": "landing-headline",
1797
+ "command": "/landing headline <product>",
1798
+ "department": "landing",
1799
+ "description": "Headline writing (10+ variants for testing)",
1800
+ "keywords": [
1801
+ "landing",
1802
+ "funnel",
1803
+ "copy",
1804
+ "headline",
1805
+ "offer",
1806
+ "launch",
1807
+ "affiliate",
1808
+ "webinar"
1809
+ ],
1810
+ "tier": 3,
1811
+ "modifies_code": false,
1812
+ "requires_branch": false
1813
+ },
1814
+ {
1815
+ "id": "landing-awareness",
1816
+ "command": "/landing awareness <traffic>",
1817
+ "department": "landing",
1818
+ "description": "Diagnose audience awareness level",
1819
+ "keywords": [
1820
+ "landing",
1821
+ "funnel",
1822
+ "copy",
1823
+ "headline",
1824
+ "offer",
1825
+ "launch",
1826
+ "affiliate",
1827
+ "webinar"
1828
+ ],
1829
+ "tier": 3,
1830
+ "modifies_code": false,
1831
+ "requires_branch": false
1832
+ },
1833
+ {
1834
+ "id": "landing-page",
1835
+ "command": "/landing page <product>",
1836
+ "department": "landing",
1837
+ "description": "Landing page structure and wireframe",
1838
+ "keywords": [
1839
+ "landing",
1840
+ "funnel",
1841
+ "copy",
1842
+ "headline",
1843
+ "offer",
1844
+ "launch",
1845
+ "affiliate",
1846
+ "webinar"
1847
+ ],
1848
+ "tier": 3,
1849
+ "modifies_code": false,
1850
+ "requires_branch": false
1851
+ },
1852
+ {
1853
+ "id": "landing-test",
1854
+ "command": "/landing test <element>",
1855
+ "department": "landing",
1856
+ "description": "A/B test plan with hypothesis",
1857
+ "keywords": [
1858
+ "landing",
1859
+ "funnel",
1860
+ "copy",
1861
+ "headline",
1862
+ "offer",
1863
+ "launch",
1864
+ "affiliate",
1865
+ "webinar"
1866
+ ],
1867
+ "tier": 3,
1868
+ "modifies_code": false,
1869
+ "requires_branch": false
1870
+ },
1871
+ {
1872
+ "id": "landing-launch",
1873
+ "command": "/landing launch <product>",
1874
+ "department": "landing",
1875
+ "description": "Product launch using PLF sequence",
1876
+ "keywords": [
1877
+ "landing",
1878
+ "funnel",
1879
+ "copy",
1880
+ "headline",
1881
+ "offer",
1882
+ "launch",
1883
+ "affiliate",
1884
+ "webinar"
1885
+ ],
1886
+ "tier": 3,
1887
+ "modifies_code": false,
1888
+ "requires_branch": false
1889
+ },
1890
+ {
1891
+ "id": "landing-email",
1892
+ "command": "/landing email <sequence>",
1893
+ "department": "landing",
1894
+ "description": "Email sequence (cart, nurture, launch)",
1895
+ "keywords": [
1896
+ "landing",
1897
+ "funnel",
1898
+ "copy",
1899
+ "headline",
1900
+ "offer",
1901
+ "launch",
1902
+ "affiliate",
1903
+ "webinar"
1904
+ ],
1905
+ "tier": 3,
1906
+ "modifies_code": false,
1907
+ "requires_branch": false
1908
+ },
1909
+ {
1910
+ "id": "landing-affiliate",
1911
+ "command": "/landing affiliate <product>",
1912
+ "department": "landing",
1913
+ "description": "Affiliate bridge page and program design",
1914
+ "keywords": [
1915
+ "landing",
1916
+ "funnel",
1917
+ "copy",
1918
+ "headline",
1919
+ "offer",
1920
+ "launch",
1921
+ "affiliate",
1922
+ "webinar"
1923
+ ],
1924
+ "tier": 2,
1925
+ "modifies_code": false,
1926
+ "requires_branch": false
1927
+ },
1928
+ {
1929
+ "id": "landing-webinar",
1930
+ "command": "/landing webinar <topic>",
1931
+ "department": "landing",
1932
+ "description": "Webinar funnel design and script",
1933
+ "keywords": [
1934
+ "landing",
1935
+ "funnel",
1936
+ "copy",
1937
+ "headline",
1938
+ "offer",
1939
+ "launch",
1940
+ "affiliate",
1941
+ "webinar"
1942
+ ],
1943
+ "tier": 2,
1944
+ "modifies_code": false,
1945
+ "requires_branch": false
1946
+ },
1947
+ {
1948
+ "id": "landing-optimize",
1949
+ "command": "/landing optimize <page>",
1950
+ "department": "landing",
1951
+ "description": "CRO optimization with ResearchXL",
1952
+ "keywords": [
1953
+ "landing",
1954
+ "funnel",
1955
+ "copy",
1956
+ "headline",
1957
+ "offer",
1958
+ "launch",
1959
+ "affiliate",
1960
+ "webinar"
1961
+ ],
1962
+ "tier": 3,
1963
+ "modifies_code": false,
1964
+ "requires_branch": false
1965
+ },
1966
+ {
1967
+ "id": "landing-persuade",
1968
+ "command": "/landing persuade <context>",
1969
+ "department": "landing",
1970
+ "description": "Persuasion elements audit (Cialdini 6)",
1971
+ "keywords": [
1972
+ "landing",
1973
+ "funnel",
1974
+ "copy",
1975
+ "headline",
1976
+ "offer",
1977
+ "launch",
1978
+ "affiliate",
1979
+ "webinar"
1980
+ ],
1981
+ "tier": 2,
1982
+ "modifies_code": false,
1983
+ "requires_branch": false
1984
+ },
1985
+ {
1986
+ "id": "landing-metrics",
1987
+ "command": "/landing metrics",
1988
+ "department": "landing",
1989
+ "description": "Funnel metrics tracking and analysis",
1990
+ "keywords": [
1991
+ "landing",
1992
+ "funnel",
1993
+ "copy",
1994
+ "headline",
1995
+ "offer",
1996
+ "launch",
1997
+ "affiliate",
1998
+ "webinar"
1999
+ ],
2000
+ "tier": 2,
2001
+ "modifies_code": false,
2002
+ "requires_branch": false
2003
+ },
2004
+ {
2005
+ "id": "lead-disc",
2006
+ "command": "/lead disc <person/team>",
2007
+ "department": "leadership",
2008
+ "description": "DISC behavioral assessment",
2009
+ "keywords": [],
2010
+ "tier": 3,
2011
+ "modifies_code": false,
2012
+ "requires_branch": false
2013
+ },
2014
+ {
2015
+ "id": "lead-team-build",
2016
+ "command": "/lead team-build <context>",
2017
+ "department": "leadership",
2018
+ "description": "Team composition design",
2019
+ "keywords": [],
2020
+ "tier": 2,
2021
+ "modifies_code": false,
2022
+ "requires_branch": false
2023
+ },
2024
+ {
2025
+ "id": "lead-1on1",
2026
+ "command": "/lead 1on1 <person>",
2027
+ "department": "leadership",
2028
+ "description": "1-on-1 meeting agenda preparation",
2029
+ "keywords": [],
2030
+ "tier": 3,
2031
+ "modifies_code": false,
2032
+ "requires_branch": false
2033
+ },
2034
+ {
2035
+ "id": "lead-feedback",
2036
+ "command": "/lead feedback <person>",
2037
+ "department": "leadership",
2038
+ "description": "Structured feedback (Radical Candor)",
2039
+ "keywords": [],
2040
+ "tier": 3,
2041
+ "modifies_code": false,
2042
+ "requires_branch": false
2043
+ },
2044
+ {
2045
+ "id": "lead-okr",
2046
+ "command": "/lead okr <scope>",
2047
+ "department": "leadership",
2048
+ "description": "OKR definition and cascade",
2049
+ "keywords": [],
2050
+ "tier": 3,
2051
+ "modifies_code": false,
2052
+ "requires_branch": false
2053
+ },
2054
+ {
2055
+ "id": "lead-culture",
2056
+ "command": "/lead culture",
2057
+ "department": "leadership",
2058
+ "description": "Culture audit and design",
2059
+ "keywords": [],
2060
+ "tier": 2,
2061
+ "modifies_code": false,
2062
+ "requires_branch": false
2063
+ },
2064
+ {
2065
+ "id": "lead-review",
2066
+ "command": "/lead review <person>",
2067
+ "department": "leadership",
2068
+ "description": "Performance review preparation",
2069
+ "keywords": [],
2070
+ "tier": 3,
2071
+ "modifies_code": false,
2072
+ "requires_branch": false
2073
+ },
2074
+ {
2075
+ "id": "lead-conflict",
2076
+ "command": "/lead conflict <situation>",
2077
+ "department": "leadership",
2078
+ "description": "Conflict resolution plan",
2079
+ "keywords": [],
2080
+ "tier": 3,
2081
+ "modifies_code": false,
2082
+ "requires_branch": false
2083
+ },
2084
+ {
2085
+ "id": "lead-hiring",
2086
+ "command": "/lead hiring <role>",
2087
+ "department": "leadership",
2088
+ "description": "Hiring plan with scorecard",
2089
+ "keywords": [],
2090
+ "tier": 3,
2091
+ "modifies_code": false,
2092
+ "requires_branch": false
2093
+ },
2094
+ {
2095
+ "id": "lead-change",
2096
+ "command": "/lead change <initiative>",
2097
+ "department": "leadership",
2098
+ "description": "Change management plan",
2099
+ "keywords": [],
2100
+ "tier": 3,
2101
+ "modifies_code": false,
2102
+ "requires_branch": false
2103
+ },
2104
+ {
2105
+ "id": "mkt-social",
2106
+ "command": "/mkt social <topic>",
2107
+ "department": "marketing",
2108
+ "description": "Create social media content for all platforms",
2109
+ "keywords": [
2110
+ "social",
2111
+ "content",
2112
+ "campaign",
2113
+ "post",
2114
+ "instagram",
2115
+ "linkedin",
2116
+ "twitter",
2117
+ "tiktok"
2118
+ ],
2119
+ "tier": 3,
2120
+ "modifies_code": false,
2121
+ "requires_branch": false
2122
+ },
2123
+ {
2124
+ "id": "mkt-seo-audit",
2125
+ "command": "/mkt seo audit <url>",
2126
+ "department": "marketing",
2127
+ "description": "Full SEO audit (technical + on-page + content)",
2128
+ "keywords": [
2129
+ "social",
2130
+ "content",
2131
+ "campaign",
2132
+ "post",
2133
+ "instagram",
2134
+ "linkedin",
2135
+ "twitter",
2136
+ "tiktok"
2137
+ ],
2138
+ "tier": 1,
2139
+ "modifies_code": false,
2140
+ "requires_branch": false
2141
+ },
2142
+ {
2143
+ "id": "mkt-seo-content",
2144
+ "command": "/mkt seo content <keyword>",
2145
+ "department": "marketing",
2146
+ "description": "SEO content brief with Pillar-Cluster strategy",
2147
+ "keywords": [
2148
+ "social",
2149
+ "content",
2150
+ "campaign",
2151
+ "post",
2152
+ "instagram",
2153
+ "linkedin",
2154
+ "twitter",
2155
+ "tiktok"
2156
+ ],
2157
+ "tier": 2,
2158
+ "modifies_code": false,
2159
+ "requires_branch": false
2160
+ },
2161
+ {
2162
+ "id": "mkt-paid",
2163
+ "command": "/mkt paid <platform> <goal>",
2164
+ "department": "marketing",
2165
+ "description": "Paid campaign strategy and setup",
2166
+ "keywords": [
2167
+ "social",
2168
+ "content",
2169
+ "campaign",
2170
+ "post",
2171
+ "instagram",
2172
+ "linkedin",
2173
+ "twitter",
2174
+ "tiktok"
2175
+ ],
2176
+ "tier": 2,
2177
+ "modifies_code": false,
2178
+ "requires_branch": false
2179
+ },
2180
+ {
2181
+ "id": "mkt-email-sequence",
2182
+ "command": "/mkt email sequence <type>",
2183
+ "department": "marketing",
2184
+ "description": "Email sequence design (welcome, nurture, launch)",
2185
+ "keywords": [
2186
+ "social",
2187
+ "content",
2188
+ "campaign",
2189
+ "post",
2190
+ "instagram",
2191
+ "linkedin",
2192
+ "twitter",
2193
+ "tiktok"
2194
+ ],
2195
+ "tier": 2,
2196
+ "modifies_code": false,
2197
+ "requires_branch": false
2198
+ },
2199
+ {
2200
+ "id": "mkt-content",
2201
+ "command": "/mkt content <type>",
2202
+ "department": "marketing",
2203
+ "description": "Content strategy or specific content piece",
2204
+ "keywords": [
2205
+ "social",
2206
+ "content",
2207
+ "campaign",
2208
+ "post",
2209
+ "instagram",
2210
+ "linkedin",
2211
+ "twitter",
2212
+ "tiktok"
2213
+ ],
2214
+ "tier": 2,
2215
+ "modifies_code": false,
2216
+ "requires_branch": false
2217
+ },
2218
+ {
2219
+ "id": "mkt-analytics",
2220
+ "command": "/mkt analytics <period>",
2221
+ "department": "marketing",
2222
+ "description": "Marketing analytics report with AARRR metrics",
2223
+ "keywords": [
2224
+ "social",
2225
+ "content",
2226
+ "campaign",
2227
+ "post",
2228
+ "instagram",
2229
+ "linkedin",
2230
+ "twitter",
2231
+ "tiktok"
2232
+ ],
2233
+ "tier": 3,
2234
+ "modifies_code": false,
2235
+ "requires_branch": false
2236
+ },
2237
+ {
2238
+ "id": "mkt-ab-test",
2239
+ "command": "/mkt ab-test <element>",
2240
+ "department": "marketing",
2241
+ "description": "A/B test plan with hypothesis and success criteria",
2242
+ "keywords": [
2243
+ "social",
2244
+ "content",
2245
+ "campaign",
2246
+ "post",
2247
+ "instagram",
2248
+ "linkedin",
2249
+ "twitter",
2250
+ "tiktok"
2251
+ ],
2252
+ "tier": 3,
2253
+ "modifies_code": false,
2254
+ "requires_branch": false
2255
+ },
2256
+ {
2257
+ "id": "mkt-segment",
2258
+ "command": "/mkt segment <criteria>",
2259
+ "department": "marketing",
2260
+ "description": "Audience segmentation analysis",
2261
+ "keywords": [
2262
+ "social",
2263
+ "content",
2264
+ "campaign",
2265
+ "post",
2266
+ "instagram",
2267
+ "linkedin",
2268
+ "twitter",
2269
+ "tiktok"
2270
+ ],
2271
+ "tier": 2,
2272
+ "modifies_code": false,
2273
+ "requires_branch": false
2274
+ },
2275
+ {
2276
+ "id": "mkt-competitor",
2277
+ "command": "/mkt competitor <name>",
2278
+ "department": "marketing",
2279
+ "description": "Competitive marketing analysis",
2280
+ "keywords": [
2281
+ "social",
2282
+ "content",
2283
+ "campaign",
2284
+ "post",
2285
+ "instagram",
2286
+ "linkedin",
2287
+ "twitter",
2288
+ "tiktok"
2289
+ ],
2290
+ "tier": 2,
2291
+ "modifies_code": false,
2292
+ "requires_branch": false
2293
+ },
2294
+ {
2295
+ "id": "mkt-growth-loop",
2296
+ "command": "/mkt growth-loop",
2297
+ "department": "marketing",
2298
+ "description": "Design a sustainable growth loop",
2299
+ "keywords": [
2300
+ "social",
2301
+ "content",
2302
+ "campaign",
2303
+ "post",
2304
+ "instagram",
2305
+ "linkedin",
2306
+ "twitter",
2307
+ "tiktok"
2308
+ ],
2309
+ "tier": 2,
2310
+ "modifies_code": false,
2311
+ "requires_branch": false
2312
+ },
2313
+ {
2314
+ "id": "mkt-calendar",
2315
+ "command": "/mkt calendar <period>",
2316
+ "department": "marketing",
2317
+ "description": "Content calendar with themes and platforms",
2318
+ "keywords": [
2319
+ "social",
2320
+ "content",
2321
+ "campaign",
2322
+ "post",
2323
+ "instagram",
2324
+ "linkedin",
2325
+ "twitter",
2326
+ "tiktok"
2327
+ ],
2328
+ "tier": 3,
2329
+ "modifies_code": false,
2330
+ "requires_branch": false
2331
+ },
2332
+ {
2333
+ "id": "ops-workflow",
2334
+ "command": "/ops workflow <process>",
2335
+ "department": "ops",
2336
+ "description": "Workflow automation design",
2337
+ "keywords": [
2338
+ "automate",
2339
+ "workflow",
2340
+ "process",
2341
+ "sop",
2342
+ "bottleneck",
2343
+ "integration",
2344
+ "zapier",
2345
+ "n8n"
2346
+ ],
2347
+ "tier": 2,
2348
+ "modifies_code": false,
2349
+ "requires_branch": false
2350
+ },
2351
+ {
2352
+ "id": "ops-process-map",
2353
+ "command": "/ops process-map <area>",
2354
+ "department": "ops",
2355
+ "description": "Value stream mapping",
2356
+ "keywords": [
2357
+ "automate",
2358
+ "workflow",
2359
+ "process",
2360
+ "sop",
2361
+ "bottleneck",
2362
+ "integration",
2363
+ "zapier",
2364
+ "n8n"
2365
+ ],
2366
+ "tier": 3,
2367
+ "modifies_code": false,
2368
+ "requires_branch": false
2369
+ },
2370
+ {
2371
+ "id": "ops-sop",
2372
+ "command": "/ops sop <process>",
2373
+ "department": "ops",
2374
+ "description": "SOP creation",
2375
+ "keywords": [
2376
+ "automate",
2377
+ "workflow",
2378
+ "process",
2379
+ "sop",
2380
+ "bottleneck",
2381
+ "integration",
2382
+ "zapier",
2383
+ "n8n"
2384
+ ],
2385
+ "tier": 3,
2386
+ "modifies_code": false,
2387
+ "requires_branch": false
2388
+ },
2389
+ {
2390
+ "id": "ops-bottleneck",
2391
+ "command": "/ops bottleneck <area>",
2392
+ "department": "ops",
2393
+ "description": "Theory of Constraints bottleneck analysis",
2394
+ "keywords": [
2395
+ "automate",
2396
+ "workflow",
2397
+ "process",
2398
+ "sop",
2399
+ "bottleneck",
2400
+ "integration",
2401
+ "zapier",
2402
+ "n8n"
2403
+ ],
2404
+ "tier": 2,
2405
+ "modifies_code": false,
2406
+ "requires_branch": false
2407
+ },
2408
+ {
2409
+ "id": "ops-integration",
2410
+ "command": "/ops integration <systems>",
2411
+ "department": "ops",
2412
+ "description": "Integration design (API, webhook, iPaaS)",
2413
+ "keywords": [
2414
+ "automate",
2415
+ "workflow",
2416
+ "process",
2417
+ "sop",
2418
+ "bottleneck",
2419
+ "integration",
2420
+ "zapier",
2421
+ "n8n"
2422
+ ],
2423
+ "tier": 2,
2424
+ "modifies_code": false,
2425
+ "requires_branch": false
2426
+ },
2427
+ {
2428
+ "id": "ops-zapier",
2429
+ "command": "/ops zapier <flow>",
2430
+ "department": "ops",
2431
+ "description": "Zapier flow design",
2432
+ "keywords": [
2433
+ "automate",
2434
+ "workflow",
2435
+ "process",
2436
+ "sop",
2437
+ "bottleneck",
2438
+ "integration",
2439
+ "zapier",
2440
+ "n8n"
2441
+ ],
2442
+ "tier": 2,
2443
+ "modifies_code": false,
2444
+ "requires_branch": false
2445
+ },
2446
+ {
2447
+ "id": "ops-n8n",
2448
+ "command": "/ops n8n <flow>",
2449
+ "department": "ops",
2450
+ "description": "n8n workflow design (AI-native)",
2451
+ "keywords": [
2452
+ "automate",
2453
+ "workflow",
2454
+ "process",
2455
+ "sop",
2456
+ "bottleneck",
2457
+ "integration",
2458
+ "zapier",
2459
+ "n8n"
2460
+ ],
2461
+ "tier": 2,
2462
+ "modifies_code": false,
2463
+ "requires_branch": false
2464
+ },
2465
+ {
2466
+ "id": "ops-dashboard",
2467
+ "command": "/ops dashboard <area>",
2468
+ "department": "ops",
2469
+ "description": "Operational metrics dashboard",
2470
+ "keywords": [
2471
+ "automate",
2472
+ "workflow",
2473
+ "process",
2474
+ "sop",
2475
+ "bottleneck",
2476
+ "integration",
2477
+ "zapier",
2478
+ "n8n"
2479
+ ],
2480
+ "tier": 3,
2481
+ "modifies_code": false,
2482
+ "requires_branch": false
2483
+ },
2484
+ {
2485
+ "id": "ops-lean-audit",
2486
+ "command": "/ops lean-audit <process>",
2487
+ "department": "ops",
2488
+ "description": "Lean audit (7 wastes identification)",
2489
+ "keywords": [
2490
+ "automate",
2491
+ "workflow",
2492
+ "process",
2493
+ "sop",
2494
+ "bottleneck",
2495
+ "integration",
2496
+ "zapier",
2497
+ "n8n"
2498
+ ],
2499
+ "tier": 2,
2500
+ "modifies_code": false,
2501
+ "requires_branch": false
2502
+ },
2503
+ {
2504
+ "id": "ops-gtd-setup",
2505
+ "command": "/ops gtd-setup",
2506
+ "department": "ops",
2507
+ "description": "GTD + PARA personal productivity setup",
2508
+ "keywords": [
2509
+ "automate",
2510
+ "workflow",
2511
+ "process",
2512
+ "sop",
2513
+ "bottleneck",
2514
+ "integration",
2515
+ "zapier",
2516
+ "n8n"
2517
+ ],
2518
+ "tier": 3,
2519
+ "modifies_code": false,
2520
+ "requires_branch": false
2521
+ },
2522
+ {
2523
+ "id": "org-design",
2524
+ "command": "/org design <company>",
2525
+ "department": "org",
2526
+ "description": "Organizational structure design",
2527
+ "keywords": [
2528
+ "org design",
2529
+ "hiring plan",
2530
+ "onboarding",
2531
+ "remote",
2532
+ "meeting",
2533
+ "compensation",
2534
+ "decision",
2535
+ "team assess"
2536
+ ],
2537
+ "tier": 2,
2538
+ "modifies_code": false,
2539
+ "requires_branch": false
2540
+ },
2541
+ {
2542
+ "id": "org-hiring",
2543
+ "command": "/org hiring <role>",
2544
+ "department": "org",
2545
+ "description": "Hiring plan with job spec and scorecard",
2546
+ "keywords": [
2547
+ "org design",
2548
+ "hiring plan",
2549
+ "onboarding",
2550
+ "remote",
2551
+ "meeting",
2552
+ "compensation",
2553
+ "decision",
2554
+ "team assess"
2555
+ ],
2556
+ "tier": 3,
2557
+ "modifies_code": false,
2558
+ "requires_branch": false
2559
+ },
2560
+ {
2561
+ "id": "org-onboarding",
2562
+ "command": "/org onboarding <role>",
2563
+ "department": "org",
2564
+ "description": "Employee onboarding program design",
2565
+ "keywords": [
2566
+ "org design",
2567
+ "hiring plan",
2568
+ "onboarding",
2569
+ "remote",
2570
+ "meeting",
2571
+ "compensation",
2572
+ "decision",
2573
+ "team assess"
2574
+ ],
2575
+ "tier": 2,
2576
+ "modifies_code": false,
2577
+ "requires_branch": false
2578
+ },
2579
+ {
2580
+ "id": "org-remote",
2581
+ "command": "/org remote",
2582
+ "department": "org",
2583
+ "description": "Remote work setup and policies",
2584
+ "keywords": [
2585
+ "org design",
2586
+ "hiring plan",
2587
+ "onboarding",
2588
+ "remote",
2589
+ "meeting",
2590
+ "compensation",
2591
+ "decision",
2592
+ "team assess"
2593
+ ],
2594
+ "tier": 3,
2595
+ "modifies_code": false,
2596
+ "requires_branch": false
2597
+ },
2598
+ {
2599
+ "id": "org-meeting-audit",
2600
+ "command": "/org meeting audit",
2601
+ "department": "org",
2602
+ "description": "Meeting optimization (reduce, restructure)",
2603
+ "keywords": [
2604
+ "org design",
2605
+ "hiring plan",
2606
+ "onboarding",
2607
+ "remote",
2608
+ "meeting",
2609
+ "compensation",
2610
+ "decision",
2611
+ "team assess"
2612
+ ],
2613
+ "tier": 3,
2614
+ "modifies_code": false,
2615
+ "requires_branch": false
2616
+ },
2617
+ {
2618
+ "id": "org-sop",
2619
+ "command": "/org sop <process>",
2620
+ "department": "org",
2621
+ "description": "SOP creation for organizational processes",
2622
+ "keywords": [
2623
+ "org design",
2624
+ "hiring plan",
2625
+ "onboarding",
2626
+ "remote",
2627
+ "meeting",
2628
+ "compensation",
2629
+ "decision",
2630
+ "team assess"
2631
+ ],
2632
+ "tier": 3,
2633
+ "modifies_code": false,
2634
+ "requires_branch": false
2635
+ },
2636
+ {
2637
+ "id": "org-culture",
2638
+ "command": "/org culture",
2639
+ "department": "org",
2640
+ "description": "Culture definition document",
2641
+ "keywords": [
2642
+ "org design",
2643
+ "hiring plan",
2644
+ "onboarding",
2645
+ "remote",
2646
+ "meeting",
2647
+ "compensation",
2648
+ "decision",
2649
+ "team assess"
2650
+ ],
2651
+ "tier": 3,
2652
+ "modifies_code": false,
2653
+ "requires_branch": false
2654
+ },
2655
+ {
2656
+ "id": "org-assess",
2657
+ "command": "/org assess <team>",
2658
+ "department": "org",
2659
+ "description": "Team assessment (health, skills, gaps)",
2660
+ "keywords": [
2661
+ "org design",
2662
+ "hiring plan",
2663
+ "onboarding",
2664
+ "remote",
2665
+ "meeting",
2666
+ "compensation",
2667
+ "decision",
2668
+ "team assess"
2669
+ ],
2670
+ "tier": 3,
2671
+ "modifies_code": false,
2672
+ "requires_branch": false
2673
+ },
2674
+ {
2675
+ "id": "org-comp",
2676
+ "command": "/org comp <role>",
2677
+ "department": "org",
2678
+ "description": "Compensation plan and benchmarking",
2679
+ "keywords": [
2680
+ "org design",
2681
+ "hiring plan",
2682
+ "onboarding",
2683
+ "remote",
2684
+ "meeting",
2685
+ "compensation",
2686
+ "decision",
2687
+ "team assess"
2688
+ ],
2689
+ "tier": 3,
2690
+ "modifies_code": false,
2691
+ "requires_branch": false
2692
+ },
2693
+ {
2694
+ "id": "org-decide",
2695
+ "command": "/org decide <decision>",
2696
+ "department": "org",
2697
+ "description": "Decision framework (RACI, authority matrix)",
2698
+ "keywords": [
2699
+ "org design",
2700
+ "hiring plan",
2701
+ "onboarding",
2702
+ "remote",
2703
+ "meeting",
2704
+ "compensation",
2705
+ "decision",
2706
+ "team assess"
2707
+ ],
2708
+ "tier": 3,
2709
+ "modifies_code": false,
2710
+ "requires_branch": false
2711
+ },
2712
+ {
2713
+ "id": "pm-sprint",
2714
+ "command": "/pm sprint <action>",
2715
+ "department": "pm",
2716
+ "description": "Sprint planning, review, or retrospective",
2717
+ "keywords": [
2718
+ "sprint",
2719
+ "backlog",
2720
+ "standup",
2721
+ "retro",
2722
+ "scrum",
2723
+ "kanban",
2724
+ "story",
2725
+ "estimate"
2726
+ ],
2727
+ "tier": 3,
2728
+ "modifies_code": false,
2729
+ "requires_branch": false
2730
+ },
2731
+ {
2732
+ "id": "pm-discover",
2733
+ "command": "/pm discover <opportunity>",
2734
+ "department": "pm",
2735
+ "description": "Product discovery (OST, interviews, experiments)",
2736
+ "keywords": [
2737
+ "sprint",
2738
+ "backlog",
2739
+ "standup",
2740
+ "retro",
2741
+ "scrum",
2742
+ "kanban",
2743
+ "story",
2744
+ "estimate"
2745
+ ],
2746
+ "tier": 3,
2747
+ "modifies_code": false,
2748
+ "requires_branch": false
2749
+ },
2750
+ {
2751
+ "id": "pm-roadmap",
2752
+ "command": "/pm roadmap <product>",
2753
+ "department": "pm",
2754
+ "description": "Outcome-driven product roadmap",
2755
+ "keywords": [
2756
+ "sprint",
2757
+ "backlog",
2758
+ "standup",
2759
+ "retro",
2760
+ "scrum",
2761
+ "kanban",
2762
+ "story",
2763
+ "estimate"
2764
+ ],
2765
+ "tier": 3,
2766
+ "modifies_code": false,
2767
+ "requires_branch": false
2768
+ },
2769
+ {
2770
+ "id": "pm-retro",
2771
+ "command": "/pm retro",
2772
+ "department": "pm",
2773
+ "description": "Facilitated retrospective",
2774
+ "keywords": [
2775
+ "sprint",
2776
+ "backlog",
2777
+ "standup",
2778
+ "retro",
2779
+ "scrum",
2780
+ "kanban",
2781
+ "story",
2782
+ "estimate"
2783
+ ],
2784
+ "tier": 3,
2785
+ "modifies_code": false,
2786
+ "requires_branch": false
2787
+ },
2788
+ {
2789
+ "id": "pm-estimate",
2790
+ "command": "/pm estimate <scope>",
2791
+ "department": "pm",
2792
+ "description": "Estimation and Monte Carlo forecasting",
2793
+ "keywords": [
2794
+ "sprint",
2795
+ "backlog",
2796
+ "standup",
2797
+ "retro",
2798
+ "scrum",
2799
+ "kanban",
2800
+ "story",
2801
+ "estimate"
2802
+ ],
2803
+ "tier": 3,
2804
+ "modifies_code": false,
2805
+ "requires_branch": false
2806
+ },
2807
+ {
2808
+ "id": "pm-backlog",
2809
+ "command": "/pm backlog <action>",
2810
+ "department": "pm",
2811
+ "description": "Backlog grooming and prioritization (RICE)",
2812
+ "keywords": [
2813
+ "sprint",
2814
+ "backlog",
2815
+ "standup",
2816
+ "retro",
2817
+ "scrum",
2818
+ "kanban",
2819
+ "story",
2820
+ "estimate"
2821
+ ],
2822
+ "tier": 3,
2823
+ "modifies_code": false,
2824
+ "requires_branch": false
2825
+ },
2826
+ {
2827
+ "id": "pm-story",
2828
+ "command": "/pm story <description>",
2829
+ "department": "pm",
2830
+ "description": "User story writing with INVEST + acceptance criteria",
2831
+ "keywords": [
2832
+ "sprint",
2833
+ "backlog",
2834
+ "standup",
2835
+ "retro",
2836
+ "scrum",
2837
+ "kanban",
2838
+ "story",
2839
+ "estimate"
2840
+ ],
2841
+ "tier": 3,
2842
+ "modifies_code": false,
2843
+ "requires_branch": false
2844
+ },
2845
+ {
2846
+ "id": "pm-risk",
2847
+ "command": "/pm risk <project>",
2848
+ "department": "pm",
2849
+ "description": "Risk register and pre-mortem",
2850
+ "keywords": [
2851
+ "sprint",
2852
+ "backlog",
2853
+ "standup",
2854
+ "retro",
2855
+ "scrum",
2856
+ "kanban",
2857
+ "story",
2858
+ "estimate"
2859
+ ],
2860
+ "tier": 3,
2861
+ "modifies_code": false,
2862
+ "requires_branch": false
2863
+ },
2864
+ {
2865
+ "id": "pm-stakeholder",
2866
+ "command": "/pm stakeholder <project>",
2867
+ "department": "pm",
2868
+ "description": "Stakeholder mapping (Power/Interest grid)",
2869
+ "keywords": [
2870
+ "sprint",
2871
+ "backlog",
2872
+ "standup",
2873
+ "retro",
2874
+ "scrum",
2875
+ "kanban",
2876
+ "story",
2877
+ "estimate"
2878
+ ],
2879
+ "tier": 3,
2880
+ "modifies_code": false,
2881
+ "requires_branch": false
2882
+ },
2883
+ {
2884
+ "id": "pm-kanban",
2885
+ "command": "/pm kanban <action>",
2886
+ "department": "pm",
2887
+ "description": "Kanban board setup with WIP limits",
2888
+ "keywords": [
2889
+ "sprint",
2890
+ "backlog",
2891
+ "standup",
2892
+ "retro",
2893
+ "scrum",
2894
+ "kanban",
2895
+ "story",
2896
+ "estimate"
2897
+ ],
2898
+ "tier": 3,
2899
+ "modifies_code": false,
2900
+ "requires_branch": false
2901
+ },
2902
+ {
2903
+ "id": "pm-shape",
2904
+ "command": "/pm shape <feature>",
2905
+ "department": "pm",
2906
+ "description": "Shape Up pitch with appetite and rabbit holes",
2907
+ "keywords": [
2908
+ "sprint",
2909
+ "backlog",
2910
+ "standup",
2911
+ "retro",
2912
+ "scrum",
2913
+ "kanban",
2914
+ "story",
2915
+ "estimate"
2916
+ ],
2917
+ "tier": 3,
2918
+ "modifies_code": false,
2919
+ "requires_branch": false
2920
+ },
2921
+ {
2922
+ "id": "pm-standup",
2923
+ "command": "/pm standup",
2924
+ "department": "pm",
2925
+ "description": "Structured daily standup",
2926
+ "keywords": [
2927
+ "sprint",
2928
+ "backlog",
2929
+ "standup",
2930
+ "retro",
2931
+ "scrum",
2932
+ "kanban",
2933
+ "story",
2934
+ "estimate"
2935
+ ],
2936
+ "tier": 3,
2937
+ "modifies_code": false,
2938
+ "requires_branch": false
2939
+ },
2940
+ {
2941
+ "id": "saas-validate",
2942
+ "command": "/saas validate <idea>",
2943
+ "department": "saas",
2944
+ "description": "Idea validation (30-day framework)",
2945
+ "keywords": [
2946
+ "saas",
2947
+ "micro-saas",
2948
+ "plg",
2949
+ "freemium",
2950
+ "churn",
2951
+ "mrr",
2952
+ "arr",
2953
+ "subscription"
2954
+ ],
2955
+ "tier": 3,
2956
+ "modifies_code": false,
2957
+ "requires_branch": false
2958
+ },
2959
+ {
2960
+ "id": "saas-mvp",
2961
+ "command": "/saas mvp <product>",
2962
+ "department": "saas",
2963
+ "description": "MVP scope definition with acceptance criteria",
2964
+ "keywords": [
2965
+ "saas",
2966
+ "micro-saas",
2967
+ "plg",
2968
+ "freemium",
2969
+ "churn",
2970
+ "mrr",
2971
+ "arr",
2972
+ "subscription"
2973
+ ],
2974
+ "tier": 3,
2975
+ "modifies_code": false,
2976
+ "requires_branch": false
2977
+ },
2978
+ {
2979
+ "id": "saas-niche",
2980
+ "command": "/saas niche <market>",
2981
+ "department": "saas",
2982
+ "description": "Niche evaluation (staircase stage, competition)",
2983
+ "keywords": [
2984
+ "saas",
2985
+ "micro-saas",
2986
+ "plg",
2987
+ "freemium",
2988
+ "churn",
2989
+ "mrr",
2990
+ "arr",
2991
+ "subscription"
2992
+ ],
2993
+ "tier": 3,
2994
+ "modifies_code": false,
2995
+ "requires_branch": false
2996
+ },
2997
+ {
2998
+ "id": "saas-metrics",
2999
+ "command": "/saas metrics",
3000
+ "department": "saas",
3001
+ "description": "SaaS metrics dashboard setup (MRR, churn, NRR)",
3002
+ "keywords": [
3003
+ "saas",
3004
+ "micro-saas",
3005
+ "plg",
3006
+ "freemium",
3007
+ "churn",
3008
+ "mrr",
3009
+ "arr",
3010
+ "subscription"
3011
+ ],
3012
+ "tier": 3,
3013
+ "modifies_code": false,
3014
+ "requires_branch": false
3015
+ },
3016
+ {
3017
+ "id": "saas-pricing",
3018
+ "command": "/saas pricing <product>",
3019
+ "department": "saas",
3020
+ "description": "Pricing strategy (Van Westendorp, value-based)",
3021
+ "keywords": [
3022
+ "saas",
3023
+ "micro-saas",
3024
+ "plg",
3025
+ "freemium",
3026
+ "churn",
3027
+ "mrr",
3028
+ "arr",
3029
+ "subscription"
3030
+ ],
3031
+ "tier": 2,
3032
+ "modifies_code": false,
3033
+ "requires_branch": false
3034
+ },
3035
+ {
3036
+ "id": "saas-plg",
3037
+ "command": "/saas plg <product>",
3038
+ "department": "saas",
3039
+ "description": "Product-Led Growth setup (freemium/trial)",
3040
+ "keywords": [
3041
+ "saas",
3042
+ "micro-saas",
3043
+ "plg",
3044
+ "freemium",
3045
+ "churn",
3046
+ "mrr",
3047
+ "arr",
3048
+ "subscription"
3049
+ ],
3050
+ "tier": 3,
3051
+ "modifies_code": false,
3052
+ "requires_branch": false
3053
+ },
3054
+ {
3055
+ "id": "saas-cs",
3056
+ "command": "/saas cs <account>",
3057
+ "department": "saas",
3058
+ "description": "Customer success playbook",
3059
+ "keywords": [
3060
+ "saas",
3061
+ "micro-saas",
3062
+ "plg",
3063
+ "freemium",
3064
+ "churn",
3065
+ "mrr",
3066
+ "arr",
3067
+ "subscription"
3068
+ ],
3069
+ "tier": 3,
3070
+ "modifies_code": false,
3071
+ "requires_branch": false
3072
+ },
3073
+ {
3074
+ "id": "saas-growth",
3075
+ "command": "/saas growth <stage>",
3076
+ "department": "saas",
3077
+ "description": "Growth plan by stage (seed, series A, scale)",
3078
+ "keywords": [
3079
+ "saas",
3080
+ "micro-saas",
3081
+ "plg",
3082
+ "freemium",
3083
+ "churn",
3084
+ "mrr",
3085
+ "arr",
3086
+ "subscription"
3087
+ ],
3088
+ "tier": 3,
3089
+ "modifies_code": false,
3090
+ "requires_branch": false
3091
+ },
3092
+ {
3093
+ "id": "saas-gtm",
3094
+ "command": "/saas gtm <product>",
3095
+ "department": "saas",
3096
+ "description": "Go-to-market strategy for SaaS",
3097
+ "keywords": [
3098
+ "saas",
3099
+ "micro-saas",
3100
+ "plg",
3101
+ "freemium",
3102
+ "churn",
3103
+ "mrr",
3104
+ "arr",
3105
+ "subscription"
3106
+ ],
3107
+ "tier": 2,
3108
+ "modifies_code": false,
3109
+ "requires_branch": false
3110
+ },
3111
+ {
3112
+ "id": "saas-launch",
3113
+ "command": "/saas launch",
3114
+ "department": "saas",
3115
+ "description": "Launch checklist and execution plan",
3116
+ "keywords": [
3117
+ "saas",
3118
+ "micro-saas",
3119
+ "plg",
3120
+ "freemium",
3121
+ "churn",
3122
+ "mrr",
3123
+ "arr",
3124
+ "subscription"
3125
+ ],
3126
+ "tier": 3,
3127
+ "modifies_code": false,
3128
+ "requires_branch": false
3129
+ },
3130
+ {
3131
+ "id": "saas-stack",
3132
+ "command": "/saas stack",
3133
+ "department": "saas",
3134
+ "description": "Micro-SaaS stacking strategy",
3135
+ "keywords": [
3136
+ "saas",
3137
+ "micro-saas",
3138
+ "plg",
3139
+ "freemium",
3140
+ "churn",
3141
+ "mrr",
3142
+ "arr",
3143
+ "subscription"
3144
+ ],
3145
+ "tier": 2,
3146
+ "modifies_code": false,
3147
+ "requires_branch": false
3148
+ },
3149
+ {
3150
+ "id": "saas-onboard",
3151
+ "command": "/saas onboard <product>",
3152
+ "department": "saas",
3153
+ "description": "Onboarding flow optimization",
3154
+ "keywords": [
3155
+ "saas",
3156
+ "micro-saas",
3157
+ "plg",
3158
+ "freemium",
3159
+ "churn",
3160
+ "mrr",
3161
+ "arr",
3162
+ "subscription"
3163
+ ],
3164
+ "tier": 3,
3165
+ "modifies_code": false,
3166
+ "requires_branch": false
3167
+ },
3168
+ {
3169
+ "id": "saas-churn",
3170
+ "command": "/saas churn",
3171
+ "department": "saas",
3172
+ "description": "Churn analysis with RFM and cohort data",
3173
+ "keywords": [
3174
+ "saas",
3175
+ "micro-saas",
3176
+ "plg",
3177
+ "freemium",
3178
+ "churn",
3179
+ "mrr",
3180
+ "arr",
3181
+ "subscription"
3182
+ ],
3183
+ "tier": 2,
3184
+ "modifies_code": false,
3185
+ "requires_branch": false
3186
+ },
3187
+ {
3188
+ "id": "saas-benchmark",
3189
+ "command": "/saas benchmark",
3190
+ "department": "saas",
3191
+ "description": "Benchmark comparison (KeyBanc, Meritech)",
3192
+ "keywords": [
3193
+ "saas",
3194
+ "micro-saas",
3195
+ "plg",
3196
+ "freemium",
3197
+ "churn",
3198
+ "mrr",
3199
+ "arr",
3200
+ "subscription"
3201
+ ],
3202
+ "tier": 3,
3203
+ "modifies_code": false,
3204
+ "requires_branch": false
3205
+ },
3206
+ {
3207
+ "id": "sales-pipeline",
3208
+ "command": "/sales pipeline",
3209
+ "department": "sales",
3210
+ "description": "Pipeline analysis and recommendations",
3211
+ "keywords": [
3212
+ "pipeline",
3213
+ "proposal",
3214
+ "discovery",
3215
+ "objection",
3216
+ "negotiate",
3217
+ "deal",
3218
+ "close",
3219
+ "prospect"
3220
+ ],
3221
+ "tier": 2,
3222
+ "modifies_code": false,
3223
+ "requires_branch": false
3224
+ },
3225
+ {
3226
+ "id": "sales-proposal",
3227
+ "command": "/sales proposal <client>",
3228
+ "department": "sales",
3229
+ "description": "Sales proposal writing",
3230
+ "keywords": [
3231
+ "pipeline",
3232
+ "proposal",
3233
+ "discovery",
3234
+ "objection",
3235
+ "negotiate",
3236
+ "deal",
3237
+ "close",
3238
+ "prospect"
3239
+ ],
3240
+ "tier": 3,
3241
+ "modifies_code": false,
3242
+ "requires_branch": false
3243
+ },
3244
+ {
3245
+ "id": "sales-discovery",
3246
+ "command": "/sales discovery <prospect>",
3247
+ "department": "sales",
3248
+ "description": "Discovery call preparation (SPIN questions)",
3249
+ "keywords": [
3250
+ "pipeline",
3251
+ "proposal",
3252
+ "discovery",
3253
+ "objection",
3254
+ "negotiate",
3255
+ "deal",
3256
+ "close",
3257
+ "prospect"
3258
+ ],
3259
+ "tier": 3,
3260
+ "modifies_code": false,
3261
+ "requires_branch": false
3262
+ },
3263
+ {
3264
+ "id": "sales-qualify",
3265
+ "command": "/sales qualify <deal>",
3266
+ "department": "sales",
3267
+ "description": "Deal qualification (BANT/MEDDIC)",
3268
+ "keywords": [
3269
+ "pipeline",
3270
+ "proposal",
3271
+ "discovery",
3272
+ "objection",
3273
+ "negotiate",
3274
+ "deal",
3275
+ "close",
3276
+ "prospect"
3277
+ ],
3278
+ "tier": 3,
3279
+ "modifies_code": false,
3280
+ "requires_branch": false
3281
+ },
3282
+ {
3283
+ "id": "sales-objection",
3284
+ "command": "/sales objection <objection>",
3285
+ "department": "sales",
3286
+ "description": "Objection handling playbook",
3287
+ "keywords": [
3288
+ "pipeline",
3289
+ "proposal",
3290
+ "discovery",
3291
+ "objection",
3292
+ "negotiate",
3293
+ "deal",
3294
+ "close",
3295
+ "prospect"
3296
+ ],
3297
+ "tier": 3,
3298
+ "modifies_code": false,
3299
+ "requires_branch": false
3300
+ },
3301
+ {
3302
+ "id": "sales-negotiate",
3303
+ "command": "/sales negotiate <deal>",
3304
+ "department": "sales",
3305
+ "description": "Negotiation strategy (BATNA)",
3306
+ "keywords": [
3307
+ "pipeline",
3308
+ "proposal",
3309
+ "discovery",
3310
+ "objection",
3311
+ "negotiate",
3312
+ "deal",
3313
+ "close",
3314
+ "prospect"
3315
+ ],
3316
+ "tier": 2,
3317
+ "modifies_code": false,
3318
+ "requires_branch": false
3319
+ },
3320
+ {
3321
+ "id": "sales-forecast",
3322
+ "command": "/sales forecast",
3323
+ "department": "sales",
3324
+ "description": "Revenue forecast",
3325
+ "keywords": [
3326
+ "pipeline",
3327
+ "proposal",
3328
+ "discovery",
3329
+ "objection",
3330
+ "negotiate",
3331
+ "deal",
3332
+ "close",
3333
+ "prospect"
3334
+ ],
3335
+ "tier": 3,
3336
+ "modifies_code": false,
3337
+ "requires_branch": false
3338
+ },
3339
+ {
3340
+ "id": "sales-spin",
3341
+ "command": "/sales spin <context>",
3342
+ "department": "sales",
3343
+ "description": "SPIN selling preparation",
3344
+ "keywords": [
3345
+ "pipeline",
3346
+ "proposal",
3347
+ "discovery",
3348
+ "objection",
3349
+ "negotiate",
3350
+ "deal",
3351
+ "close",
3352
+ "prospect"
3353
+ ],
3354
+ "tier": 3,
3355
+ "modifies_code": false,
3356
+ "requires_branch": false
3357
+ },
3358
+ {
3359
+ "id": "sales-challenger",
3360
+ "command": "/sales challenger <context>",
3361
+ "department": "sales",
3362
+ "description": "Challenger sale approach",
3363
+ "keywords": [
3364
+ "pipeline",
3365
+ "proposal",
3366
+ "discovery",
3367
+ "objection",
3368
+ "negotiate",
3369
+ "deal",
3370
+ "close",
3371
+ "prospect"
3372
+ ],
3373
+ "tier": 3,
3374
+ "modifies_code": false,
3375
+ "requires_branch": false
3376
+ },
3377
+ {
3378
+ "id": "sales-pricing",
3379
+ "command": "/sales pricing <product>",
3380
+ "department": "sales",
3381
+ "description": "Pricing negotiation strategy",
3382
+ "keywords": [
3383
+ "pipeline",
3384
+ "proposal",
3385
+ "discovery",
3386
+ "objection",
3387
+ "negotiate",
3388
+ "deal",
3389
+ "close",
3390
+ "prospect"
3391
+ ],
3392
+ "tier": 2,
3393
+ "modifies_code": false,
3394
+ "requires_branch": false
3395
+ },
3396
+ {
3397
+ "id": "strat-analyze",
3398
+ "command": "/strat analyze <topic>",
3399
+ "department": "strategy",
3400
+ "description": "Comprehensive strategic analysis (multi-framework)",
3401
+ "keywords": [
3402
+ "strategy",
3403
+ "brainstorm",
3404
+ "market",
3405
+ "swot",
3406
+ "competitor",
3407
+ "roadmap",
3408
+ "position",
3409
+ "blue ocean"
3410
+ ],
3411
+ "tier": 1,
3412
+ "modifies_code": false,
3413
+ "requires_branch": false
3414
+ },
3415
+ {
3416
+ "id": "strat-swot",
3417
+ "command": "/strat swot <business>",
3418
+ "department": "strategy",
3419
+ "description": "SWOT analysis",
3420
+ "keywords": [
3421
+ "strategy",
3422
+ "brainstorm",
3423
+ "market",
3424
+ "swot",
3425
+ "competitor",
3426
+ "roadmap",
3427
+ "position",
3428
+ "blue ocean"
3429
+ ],
3430
+ "tier": 2,
3431
+ "modifies_code": false,
3432
+ "requires_branch": false
3433
+ },
3434
+ {
3435
+ "id": "strat-blue-ocean",
3436
+ "command": "/strat blue-ocean <market>",
3437
+ "department": "strategy",
3438
+ "description": "Blue Ocean strategy canvas + ERRC grid",
3439
+ "keywords": [
3440
+ "strategy",
3441
+ "brainstorm",
3442
+ "market",
3443
+ "swot",
3444
+ "competitor",
3445
+ "roadmap",
3446
+ "position",
3447
+ "blue ocean"
3448
+ ],
3449
+ "tier": 2,
3450
+ "modifies_code": false,
3451
+ "requires_branch": false
3452
+ },
3453
+ {
3454
+ "id": "strat-bmc",
3455
+ "command": "/strat bmc <business>",
3456
+ "department": "strategy",
3457
+ "description": "Business Model Canvas",
3458
+ "keywords": [
3459
+ "strategy",
3460
+ "brainstorm",
3461
+ "market",
3462
+ "swot",
3463
+ "competitor",
3464
+ "roadmap",
3465
+ "position",
3466
+ "blue ocean"
3467
+ ],
3468
+ "tier": 3,
3469
+ "modifies_code": false,
3470
+ "requires_branch": false
3471
+ },
3472
+ {
3473
+ "id": "strat-position",
3474
+ "command": "/strat position <product>",
3475
+ "department": "strategy",
3476
+ "description": "Competitive positioning map",
3477
+ "keywords": [
3478
+ "strategy",
3479
+ "brainstorm",
3480
+ "market",
3481
+ "swot",
3482
+ "competitor",
3483
+ "roadmap",
3484
+ "position",
3485
+ "blue ocean"
3486
+ ],
3487
+ "tier": 3,
3488
+ "modifies_code": false,
3489
+ "requires_branch": false
3490
+ },
3491
+ {
3492
+ "id": "strat-scenario",
3493
+ "command": "/strat scenario <context>",
3494
+ "department": "strategy",
3495
+ "description": "Scenario planning (3-5 scenarios)",
3496
+ "keywords": [
3497
+ "strategy",
3498
+ "brainstorm",
3499
+ "market",
3500
+ "swot",
3501
+ "competitor",
3502
+ "roadmap",
3503
+ "position",
3504
+ "blue ocean"
3505
+ ],
3506
+ "tier": 3,
3507
+ "modifies_code": false,
3508
+ "requires_branch": false
3509
+ },
3510
+ {
3511
+ "id": "strat-five-forces",
3512
+ "command": "/strat five-forces <industry>",
3513
+ "department": "strategy",
3514
+ "description": "Porter's Five Forces analysis",
3515
+ "keywords": [
3516
+ "strategy",
3517
+ "brainstorm",
3518
+ "market",
3519
+ "swot",
3520
+ "competitor",
3521
+ "roadmap",
3522
+ "position",
3523
+ "blue ocean"
3524
+ ],
3525
+ "tier": 2,
3526
+ "modifies_code": false,
3527
+ "requires_branch": false
3528
+ },
3529
+ {
3530
+ "id": "strat-tam",
3531
+ "command": "/strat tam <market>",
3532
+ "department": "strategy",
3533
+ "description": "TAM/SAM/SOM market sizing",
3534
+ "keywords": [
3535
+ "strategy",
3536
+ "brainstorm",
3537
+ "market",
3538
+ "swot",
3539
+ "competitor",
3540
+ "roadmap",
3541
+ "position",
3542
+ "blue ocean"
3543
+ ],
3544
+ "tier": 3,
3545
+ "modifies_code": false,
3546
+ "requires_branch": false
3547
+ },
3548
+ {
3549
+ "id": "strat-growth",
3550
+ "command": "/strat growth <business>",
3551
+ "department": "strategy",
3552
+ "description": "Growth strategy (Ansoff, adjacencies)",
3553
+ "keywords": [
3554
+ "strategy",
3555
+ "brainstorm",
3556
+ "market",
3557
+ "swot",
3558
+ "competitor",
3559
+ "roadmap",
3560
+ "position",
3561
+ "blue ocean"
3562
+ ],
3563
+ "tier": 2,
3564
+ "modifies_code": false,
3565
+ "requires_branch": false
3566
+ },
3567
+ {
3568
+ "id": "strat-moat",
3569
+ "command": "/strat moat <company>",
3570
+ "department": "strategy",
3571
+ "description": "7 Powers moat analysis (Helmer)",
3572
+ "keywords": [
3573
+ "strategy",
3574
+ "brainstorm",
3575
+ "market",
3576
+ "swot",
3577
+ "competitor",
3578
+ "roadmap",
3579
+ "position",
3580
+ "blue ocean"
3581
+ ],
3582
+ "tier": 2,
3583
+ "modifies_code": false,
3584
+ "requires_branch": false
3585
+ },
3586
+ {
3587
+ "id": "arka-status",
3588
+ "command": "/arka status",
3589
+ "department": "arka",
3590
+ "description": "System status (version, departments, agents, active projects)",
3591
+ "keywords": [],
3592
+ "tier": 3,
3593
+ "modifies_code": false,
3594
+ "requires_branch": false
3595
+ },
3596
+ {
3597
+ "id": "arka-standup",
3598
+ "command": "/arka standup",
3599
+ "department": "arka",
3600
+ "description": "Daily standup (projects, priorities, blockers, updates)",
3601
+ "keywords": [],
3602
+ "tier": 3,
3603
+ "modifies_code": false,
3604
+ "requires_branch": false
3605
+ },
3606
+ {
3607
+ "id": "arka-monitor",
3608
+ "command": "/arka monitor",
3609
+ "department": "arka",
3610
+ "description": "System health monitoring",
3611
+ "keywords": [],
3612
+ "tier": 3,
3613
+ "modifies_code": false,
3614
+ "requires_branch": false
3615
+ },
3616
+ {
3617
+ "id": "arka-onboard",
3618
+ "command": "/arka onboard <path>",
3619
+ "department": "arka",
3620
+ "description": "Onboard an existing project into ArkaOS",
3621
+ "keywords": [],
3622
+ "tier": 3,
3623
+ "modifies_code": false,
3624
+ "requires_branch": false
3625
+ },
3626
+ {
3627
+ "id": "arka-help",
3628
+ "command": "/arka help",
3629
+ "department": "arka",
3630
+ "description": "List all department commands",
3631
+ "keywords": [],
3632
+ "tier": 3,
3633
+ "modifies_code": false,
3634
+ "requires_branch": false
3635
+ },
3636
+ {
3637
+ "id": "arka-setup",
3638
+ "command": "/arka setup",
3639
+ "department": "arka",
3640
+ "description": "Interactive profile setup (name, company, role, objectives)",
3641
+ "keywords": [],
3642
+ "tier": 3,
3643
+ "modifies_code": false,
3644
+ "requires_branch": false
3645
+ },
3646
+ {
3647
+ "id": "arka-conclave",
3648
+ "command": "/arka conclave",
3649
+ "department": "arka",
3650
+ "description": "Activate personal AI advisory board (The Conclave)",
3651
+ "keywords": [],
3652
+ "tier": 3,
3653
+ "modifies_code": false,
3654
+ "requires_branch": false
3655
+ },
3656
+ {
3657
+ "id": "do",
3658
+ "command": "/do <description>",
3659
+ "department": "arka",
3660
+ "description": "Universal routing — natural language to department command",
3661
+ "keywords": [],
3662
+ "tier": 3,
3663
+ "modifies_code": false,
3664
+ "requires_branch": false
3665
+ },
3666
+ {
3667
+ "id": "dev",
3668
+ "command": "/dev",
3669
+ "department": "arka",
3670
+ "description": "Development",
3671
+ "keywords": [],
3672
+ "tier": 3,
3673
+ "modifies_code": false,
3674
+ "requires_branch": false
3675
+ },
3676
+ {
3677
+ "id": "mkt",
3678
+ "command": "/mkt",
3679
+ "department": "arka",
3680
+ "description": "Marketing & Growth",
3681
+ "keywords": [],
3682
+ "tier": 3,
3683
+ "modifies_code": false,
3684
+ "requires_branch": false
3685
+ },
3686
+ {
3687
+ "id": "brand",
3688
+ "command": "/brand",
3689
+ "department": "arka",
3690
+ "description": "Brand & Design",
3691
+ "keywords": [],
3692
+ "tier": 3,
3693
+ "modifies_code": false,
3694
+ "requires_branch": false
3695
+ },
3696
+ {
3697
+ "id": "fin",
3698
+ "command": "/fin",
3699
+ "department": "arka",
3700
+ "description": "Finance & Investment",
3701
+ "keywords": [],
3702
+ "tier": 3,
3703
+ "modifies_code": false,
3704
+ "requires_branch": false
3705
+ },
3706
+ {
3707
+ "id": "strat",
3708
+ "command": "/strat",
3709
+ "department": "arka",
3710
+ "description": "Strategy & Innovation",
3711
+ "keywords": [],
3712
+ "tier": 3,
3713
+ "modifies_code": false,
3714
+ "requires_branch": false
3715
+ },
3716
+ {
3717
+ "id": "ecom",
3718
+ "command": "/ecom",
3719
+ "department": "arka",
3720
+ "description": "E-Commerce",
3721
+ "keywords": [],
3722
+ "tier": 3,
3723
+ "modifies_code": false,
3724
+ "requires_branch": false
3725
+ },
3726
+ {
3727
+ "id": "kb",
3728
+ "command": "/kb",
3729
+ "department": "arka",
3730
+ "description": "Knowledge Management",
3731
+ "keywords": [],
3732
+ "tier": 3,
3733
+ "modifies_code": false,
3734
+ "requires_branch": false
3735
+ },
3736
+ {
3737
+ "id": "ops",
3738
+ "command": "/ops",
3739
+ "department": "arka",
3740
+ "description": "Operations & Automation",
3741
+ "keywords": [],
3742
+ "tier": 3,
3743
+ "modifies_code": false,
3744
+ "requires_branch": false
3745
+ },
3746
+ {
3747
+ "id": "pm",
3748
+ "command": "/pm",
3749
+ "department": "arka",
3750
+ "description": "Project Management",
3751
+ "keywords": [],
3752
+ "tier": 3,
3753
+ "modifies_code": false,
3754
+ "requires_branch": false
3755
+ },
3756
+ {
3757
+ "id": "saas",
3758
+ "command": "/saas",
3759
+ "department": "arka",
3760
+ "description": "SaaS & Micro-SaaS",
3761
+ "keywords": [],
3762
+ "tier": 3,
3763
+ "modifies_code": false,
3764
+ "requires_branch": false
3765
+ },
3766
+ {
3767
+ "id": "landing",
3768
+ "command": "/landing",
3769
+ "department": "arka",
3770
+ "description": "Landing Pages & Funnels",
3771
+ "keywords": [],
3772
+ "tier": 3,
3773
+ "modifies_code": false,
3774
+ "requires_branch": false
3775
+ },
3776
+ {
3777
+ "id": "content",
3778
+ "command": "/content",
3779
+ "department": "arka",
3780
+ "description": "Content & Viralization",
3781
+ "keywords": [],
3782
+ "tier": 3,
3783
+ "modifies_code": false,
3784
+ "requires_branch": false
3785
+ },
3786
+ {
3787
+ "id": "community",
3788
+ "command": "/community",
3789
+ "department": "arka",
3790
+ "description": "Communities & Groups",
3791
+ "keywords": [],
3792
+ "tier": 3,
3793
+ "modifies_code": false,
3794
+ "requires_branch": false
3795
+ },
3796
+ {
3797
+ "id": "sales",
3798
+ "command": "/sales",
3799
+ "department": "arka",
3800
+ "description": "Sales & Negotiation",
3801
+ "keywords": [],
3802
+ "tier": 3,
3803
+ "modifies_code": false,
3804
+ "requires_branch": false
3805
+ },
3806
+ {
3807
+ "id": "lead",
3808
+ "command": "/lead",
3809
+ "department": "arka",
3810
+ "description": "Leadership & People",
3811
+ "keywords": [],
3812
+ "tier": 3,
3813
+ "modifies_code": false,
3814
+ "requires_branch": false
3815
+ },
3816
+ {
3817
+ "id": "org",
3818
+ "command": "/org",
3819
+ "department": "arka",
3820
+ "description": "Organization & Teams",
3821
+ "keywords": [],
3822
+ "tier": 3,
3823
+ "modifies_code": false,
3824
+ "requires_branch": false
3825
+ }
3826
+ ]
3827
+ }