arkaos 4.13.2 → 4.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (130) hide show
  1. package/VERSION +1 -1
  2. package/arka/SKILL.md +16 -0
  3. package/bin/arka-doctor +20 -1
  4. package/config/cognition/schedules.yaml +16 -0
  5. package/config/hooks/_lib/fastpath/engine.cjs +337 -0
  6. package/config/hooks/gate-manifest.json +741 -0
  7. package/config/hooks/post-tool-use.cjs +113 -0
  8. package/config/hooks/pre-tool-use.cjs +109 -0
  9. package/config/hooks/session-end.ps1 +40 -0
  10. package/config/hooks/session-end.sh +55 -0
  11. package/config/hooks/session-start.sh +25 -189
  12. package/config/hooks/subagent-stop.ps1 +40 -0
  13. package/config/hooks/subagent-stop.sh +56 -0
  14. package/config/mcp-policy.yaml +8 -0
  15. package/config/skills-curated.yaml +39 -0
  16. package/config/statusline.sh +57 -1
  17. package/core/cognition/capture/__pycache__/store.cpython-313.pyc +0 -0
  18. package/core/cognition/capture/store.py +7 -2
  19. package/core/evals/__pycache__/__init__.cpython-314.pyc +0 -0
  20. package/core/evals/__pycache__/sanitizer.cpython-314.pyc +0 -0
  21. package/core/evals/__pycache__/schema.cpython-314.pyc +0 -0
  22. package/core/evals/__pycache__/verdict_labels.cpython-314.pyc +0 -0
  23. package/core/forge/__pycache__/complexity.cpython-314.pyc +0 -0
  24. package/core/governance/__pycache__/evidence_checks.cpython-313.pyc +0 -0
  25. package/core/governance/__pycache__/judge.cpython-314.pyc +0 -0
  26. package/core/governance/__pycache__/leak_scanner.cpython-314.pyc +0 -0
  27. package/core/governance/__pycache__/qg_verdict.cpython-314.pyc +0 -0
  28. package/core/governance/__pycache__/routing_feedback.cpython-313.pyc +0 -0
  29. package/core/governance/__pycache__/routing_feedback.cpython-314.pyc +0 -0
  30. package/core/governance/__pycache__/routing_feedback_cli.cpython-313.pyc +0 -0
  31. package/core/governance/evidence_checks.py +42 -7
  32. package/core/governance/routing_feedback.py +229 -0
  33. package/core/governance/routing_feedback_cli.py +49 -0
  34. package/core/hooks/__pycache__/_shared.cpython-312.pyc +0 -0
  35. package/core/hooks/__pycache__/gate_manifest.cpython-313.pyc +0 -0
  36. package/core/hooks/__pycache__/post_tool_use.cpython-312.pyc +0 -0
  37. package/core/hooks/__pycache__/post_tool_use.cpython-313.pyc +0 -0
  38. package/core/hooks/__pycache__/pre_tool_use.cpython-312.pyc +0 -0
  39. package/core/hooks/__pycache__/session_end.cpython-313.pyc +0 -0
  40. package/core/hooks/__pycache__/session_start.cpython-312.pyc +0 -0
  41. package/core/hooks/__pycache__/session_start.cpython-313.pyc +0 -0
  42. package/core/hooks/__pycache__/stop.cpython-313.pyc +0 -0
  43. package/core/hooks/__pycache__/stop.cpython-314.pyc +0 -0
  44. package/core/hooks/__pycache__/subagent_stop.cpython-313.pyc +0 -0
  45. package/core/hooks/__pycache__/subagent_stop.cpython-314.pyc +0 -0
  46. package/core/hooks/__pycache__/user_prompt_submit.cpython-313.pyc +0 -0
  47. package/core/hooks/__pycache__/user_prompt_submit.cpython-314.pyc +0 -0
  48. package/core/hooks/gate_manifest.py +366 -0
  49. package/core/hooks/post_tool_use.py +5 -2
  50. package/core/hooks/session_end.py +127 -0
  51. package/core/hooks/session_start.py +322 -0
  52. package/core/hooks/stop.py +69 -0
  53. package/core/hooks/subagent_stop.py +186 -0
  54. package/core/hooks/user_prompt_submit.py +10 -6
  55. package/core/knowledge/__pycache__/embedding_backends.cpython-313.pyc +0 -0
  56. package/core/knowledge/__pycache__/embedding_backends.cpython-314.pyc +0 -0
  57. package/core/knowledge/__pycache__/pattern_cards.cpython-313.pyc +0 -0
  58. package/core/knowledge/__pycache__/pattern_cards.cpython-314.pyc +0 -0
  59. package/core/knowledge/__pycache__/recipes.cpython-314.pyc +0 -0
  60. package/core/knowledge/__pycache__/vector_store.cpython-313.pyc +0 -0
  61. package/core/knowledge/__pycache__/vector_store.cpython-314.pyc +0 -0
  62. package/core/knowledge/embedding_backends.py +278 -0
  63. package/core/knowledge/pattern_cards.py +49 -1
  64. package/core/knowledge/vector_store.py +14 -2
  65. package/core/memory/__pycache__/semantic_store.cpython-312.pyc +0 -0
  66. package/core/memory/__pycache__/semantic_store.cpython-313.pyc +0 -0
  67. package/core/memory/__pycache__/semantic_store.cpython-314.pyc +0 -0
  68. package/core/memory/__pycache__/turn_capture.cpython-313.pyc +0 -0
  69. package/core/memory/__pycache__/turn_capture.cpython-314.pyc +0 -0
  70. package/core/memory/semantic_store.py +301 -0
  71. package/core/memory/turn_capture.py +277 -0
  72. package/core/registry/__pycache__/generator.cpython-312.pyc +0 -0
  73. package/core/runtime/__pycache__/claude_code.cpython-312.pyc +0 -0
  74. package/core/runtime/__pycache__/codex_cli.cpython-312.pyc +0 -0
  75. package/core/runtime/__pycache__/cost_governor.cpython-314.pyc +0 -0
  76. package/core/runtime/__pycache__/gemini_cli.cpython-312.pyc +0 -0
  77. package/core/runtime/__pycache__/llm_cost_telemetry.cpython-312.pyc +0 -0
  78. package/core/runtime/__pycache__/mcp_telemetry.cpython-312.pyc +0 -0
  79. package/core/shared/__pycache__/decay.cpython-313.pyc +0 -0
  80. package/core/shared/__pycache__/decay.cpython-314.pyc +0 -0
  81. package/core/shared/__pycache__/sqlite_recovery.cpython-312.pyc +0 -0
  82. package/core/shared/__pycache__/sqlite_recovery.cpython-313.pyc +0 -0
  83. package/core/shared/__pycache__/sqlite_recovery.cpython-314.pyc +0 -0
  84. package/core/shared/decay.py +94 -0
  85. package/core/shared/sqlite_recovery.py +266 -0
  86. package/core/synapse/__pycache__/agent_experiences_layer.cpython-313.pyc +0 -0
  87. package/core/synapse/__pycache__/agent_experiences_layer.cpython-314.pyc +0 -0
  88. package/core/synapse/__pycache__/engine.cpython-312.pyc +0 -0
  89. package/core/synapse/__pycache__/engine.cpython-313.pyc +0 -0
  90. package/core/synapse/__pycache__/engine.cpython-314.pyc +0 -0
  91. package/core/synapse/__pycache__/layers.cpython-312.pyc +0 -0
  92. package/core/synapse/__pycache__/pattern_library_layer.cpython-314.pyc +0 -0
  93. package/core/synapse/__pycache__/recipe_layer.cpython-313.pyc +0 -0
  94. package/core/synapse/__pycache__/recipe_layer.cpython-314.pyc +0 -0
  95. package/core/synapse/__pycache__/routing_feedback_layer.cpython-313.pyc +0 -0
  96. package/core/synapse/__pycache__/routing_feedback_layer.cpython-314.pyc +0 -0
  97. package/core/synapse/__pycache__/session_memory_layer.cpython-312.pyc +0 -0
  98. package/core/synapse/__pycache__/session_memory_layer.cpython-313.pyc +0 -0
  99. package/core/synapse/__pycache__/session_memory_layer.cpython-314.pyc +0 -0
  100. package/core/synapse/agent_experiences_layer.py +42 -3
  101. package/core/synapse/engine.py +13 -0
  102. package/core/synapse/recipe_layer.py +27 -4
  103. package/core/synapse/routing_feedback_layer.py +132 -0
  104. package/core/synapse/session_memory_layer.py +152 -0
  105. package/core/workflow/__pycache__/__init__.cpython-312.pyc +0 -0
  106. package/core/workflow/__pycache__/design_authorization.cpython-314.pyc +0 -0
  107. package/core/workflow/__pycache__/frontend_gate.cpython-314.pyc +0 -0
  108. package/core/workflow/__pycache__/specialist_enforcer.cpython-314.pyc +0 -0
  109. package/installer/adapters/claude-code.js +37 -0
  110. package/installer/claude-plugins.js +6 -0
  111. package/installer/cli.js +23 -2
  112. package/installer/config-seed.js +25 -16
  113. package/installer/doctor.js +116 -1
  114. package/installer/hook-lib.js +28 -0
  115. package/installer/index.js +48 -153
  116. package/installer/mcp-runner.js +108 -0
  117. package/installer/skill-deploy.js +189 -0
  118. package/installer/skills-mode.js +64 -0
  119. package/installer/update.js +55 -79
  120. package/knowledge/commands-registry.json.bak +171 -4
  121. package/knowledge/skills-manifest.json +2337 -0
  122. package/package.json +1 -1
  123. package/pyproject.toml +9 -1
  124. package/scripts/__pycache__/marketplace_gen.cpython-313.pyc +0 -0
  125. package/scripts/__pycache__/synapse-bridge.cpython-314.pyc +0 -0
  126. package/scripts/marketplace_gen.py +310 -0
  127. package/scripts/tools/__pycache__/docs_stats.cpython-313.pyc +0 -0
  128. package/scripts/tools/__pycache__/skill_budget.cpython-313.pyc +0 -0
  129. package/scripts/tools/docs_stats.py +6 -4
  130. package/scripts/tools/skill_budget.py +209 -0
@@ -0,0 +1,2337 @@
1
+ {
2
+ "_meta": {
3
+ "generator": "scripts/marketplace_gen.py",
4
+ "version": "4.14.0",
5
+ "marketplace": "arkaos"
6
+ },
7
+ "structural": {
8
+ "main": "arka",
9
+ "hubs": [
10
+ "arka-brand",
11
+ "arka-community",
12
+ "arka-content",
13
+ "arka-dev",
14
+ "arka-ecom",
15
+ "arka-finance",
16
+ "arka-kb",
17
+ "arka-landing",
18
+ "arka-leadership",
19
+ "arka-marketing",
20
+ "arka-ops",
21
+ "arka-org",
22
+ "arka-pm",
23
+ "arka-quality",
24
+ "arka-saas",
25
+ "arka-sales",
26
+ "arka-strategy"
27
+ ],
28
+ "meta": [
29
+ "arka-bootstrap-agent",
30
+ "arka-checkpoint",
31
+ "arka-comfyui",
32
+ "arka-conclave",
33
+ "arka-costs",
34
+ "arka-design-ops",
35
+ "arka-dreams",
36
+ "arka-flow",
37
+ "arka-forge",
38
+ "arka-fusion",
39
+ "arka-human-writing",
40
+ "arka-recipes",
41
+ "arka-refine",
42
+ "arka-research"
43
+ ]
44
+ },
45
+ "skills": {
46
+ "ab-test": {
47
+ "depts": [
48
+ "landing",
49
+ "marketing"
50
+ ],
51
+ "curated": false,
52
+ "plugins": [
53
+ "arkaos-landing@arkaos",
54
+ "arkaos-marketing@arkaos"
55
+ ],
56
+ "collision": true
57
+ },
58
+ "adversarial-review": {
59
+ "depts": [
60
+ "dev"
61
+ ],
62
+ "curated": false,
63
+ "plugins": [
64
+ "arkaos-dev@arkaos"
65
+ ],
66
+ "collision": false
67
+ },
68
+ "affiliate-bridge": {
69
+ "depts": [
70
+ "landing"
71
+ ],
72
+ "curated": false,
73
+ "plugins": [
74
+ "arkaos-landing@arkaos"
75
+ ],
76
+ "collision": false
77
+ },
78
+ "agent-design": {
79
+ "depts": [
80
+ "dev"
81
+ ],
82
+ "curated": false,
83
+ "plugins": [
84
+ "arkaos-dev@arkaos"
85
+ ],
86
+ "collision": false
87
+ },
88
+ "agent-workflow": {
89
+ "depts": [
90
+ "dev"
91
+ ],
92
+ "curated": false,
93
+ "plugins": [
94
+ "arkaos-dev@arkaos"
95
+ ],
96
+ "collision": false
97
+ },
98
+ "agile-po": {
99
+ "depts": [
100
+ "pm"
101
+ ],
102
+ "curated": false,
103
+ "plugins": [
104
+ "arkaos-pm@arkaos"
105
+ ],
106
+ "collision": false
107
+ },
108
+ "ai-assisted-dev": {
109
+ "depts": [
110
+ "dev"
111
+ ],
112
+ "curated": false,
113
+ "plugins": [
114
+ "arkaos-dev@arkaos"
115
+ ],
116
+ "collision": false
117
+ },
118
+ "ai-community": {
119
+ "depts": [
120
+ "community"
121
+ ],
122
+ "curated": false,
123
+ "plugins": [
124
+ "arkaos-community@arkaos"
125
+ ],
126
+ "collision": false
127
+ },
128
+ "ai-research": {
129
+ "depts": [
130
+ "kb"
131
+ ],
132
+ "curated": false,
133
+ "plugins": [
134
+ "arkaos-kb@arkaos"
135
+ ],
136
+ "collision": false
137
+ },
138
+ "ai-security": {
139
+ "depts": [
140
+ "dev"
141
+ ],
142
+ "curated": false,
143
+ "plugins": [
144
+ "arkaos-dev@arkaos"
145
+ ],
146
+ "collision": false
147
+ },
148
+ "ai-workflow": {
149
+ "depts": [
150
+ "content"
151
+ ],
152
+ "curated": false,
153
+ "plugins": [
154
+ "arkaos-content@arkaos"
155
+ ],
156
+ "collision": false
157
+ },
158
+ "analytics": {
159
+ "depts": [
160
+ "content",
161
+ "ecom"
162
+ ],
163
+ "curated": false,
164
+ "plugins": [
165
+ "arkaos-content@arkaos",
166
+ "arkaos-ecom@arkaos"
167
+ ],
168
+ "collision": true
169
+ },
170
+ "analytics-report": {
171
+ "depts": [
172
+ "marketing"
173
+ ],
174
+ "curated": false,
175
+ "plugins": [
176
+ "arkaos-marketing@arkaos"
177
+ ],
178
+ "collision": false
179
+ },
180
+ "api-design": {
181
+ "depts": [
182
+ "dev"
183
+ ],
184
+ "curated": true,
185
+ "plugins": [],
186
+ "collision": false
187
+ },
188
+ "app-test": {
189
+ "depts": [
190
+ "dev"
191
+ ],
192
+ "curated": false,
193
+ "plugins": [
194
+ "arkaos-dev@arkaos"
195
+ ],
196
+ "collision": false
197
+ },
198
+ "archetype-finder": {
199
+ "depts": [
200
+ "brand"
201
+ ],
202
+ "curated": false,
203
+ "plugins": [
204
+ "arkaos-brand@arkaos"
205
+ ],
206
+ "collision": false
207
+ },
208
+ "architecture-design": {
209
+ "depts": [
210
+ "dev"
211
+ ],
212
+ "curated": true,
213
+ "plugins": [],
214
+ "collision": false
215
+ },
216
+ "audience-segment": {
217
+ "depts": [
218
+ "marketing"
219
+ ],
220
+ "curated": false,
221
+ "plugins": [
222
+ "arkaos-marketing@arkaos"
223
+ ],
224
+ "collision": false
225
+ },
226
+ "awareness-diagnose": {
227
+ "depts": [
228
+ "landing"
229
+ ],
230
+ "curated": false,
231
+ "plugins": [
232
+ "arkaos-landing@arkaos"
233
+ ],
234
+ "collision": false
235
+ },
236
+ "backlog-groom": {
237
+ "depts": [
238
+ "pm"
239
+ ],
240
+ "curated": false,
241
+ "plugins": [
242
+ "arkaos-pm@arkaos"
243
+ ],
244
+ "collision": false
245
+ },
246
+ "benchmark-compare": {
247
+ "depts": [
248
+ "saas"
249
+ ],
250
+ "curated": false,
251
+ "plugins": [
252
+ "arkaos-saas@arkaos"
253
+ ],
254
+ "collision": false
255
+ },
256
+ "betting-setup": {
257
+ "depts": [
258
+ "community"
259
+ ],
260
+ "curated": false,
261
+ "plugins": [
262
+ "arkaos-community@arkaos"
263
+ ],
264
+ "collision": false
265
+ },
266
+ "blue-ocean": {
267
+ "depts": [
268
+ "strategy"
269
+ ],
270
+ "curated": false,
271
+ "plugins": [
272
+ "arkaos-strategy@arkaos"
273
+ ],
274
+ "collision": false
275
+ },
276
+ "bmc": {
277
+ "depts": [
278
+ "strategy"
279
+ ],
280
+ "curated": false,
281
+ "plugins": [
282
+ "arkaos-strategy@arkaos"
283
+ ],
284
+ "collision": false
285
+ },
286
+ "board-advisor": {
287
+ "depts": [
288
+ "strategy"
289
+ ],
290
+ "curated": false,
291
+ "plugins": [
292
+ "arkaos-strategy@arkaos"
293
+ ],
294
+ "collision": false
295
+ },
296
+ "bottleneck-find": {
297
+ "depts": [
298
+ "ops"
299
+ ],
300
+ "curated": false,
301
+ "plugins": [
302
+ "arkaos-ops@arkaos"
303
+ ],
304
+ "collision": false
305
+ },
306
+ "browse-competitor": {
307
+ "depts": [
308
+ "ecom"
309
+ ],
310
+ "curated": false,
311
+ "plugins": [
312
+ "arkaos-ecom@arkaos"
313
+ ],
314
+ "collision": false
315
+ },
316
+ "budget-plan": {
317
+ "depts": [
318
+ "finance"
319
+ ],
320
+ "curated": false,
321
+ "plugins": [
322
+ "arkaos-finance@arkaos"
323
+ ],
324
+ "collision": false
325
+ },
326
+ "business-model": {
327
+ "depts": [
328
+ "community"
329
+ ],
330
+ "curated": false,
331
+ "plugins": [
332
+ "arkaos-community@arkaos"
333
+ ],
334
+ "collision": false
335
+ },
336
+ "calendar": {
337
+ "depts": [
338
+ "content"
339
+ ],
340
+ "curated": true,
341
+ "plugins": [],
342
+ "collision": false
343
+ },
344
+ "calendar-plan": {
345
+ "depts": [
346
+ "marketing"
347
+ ],
348
+ "curated": false,
349
+ "plugins": [
350
+ "arkaos-marketing@arkaos"
351
+ ],
352
+ "collision": false
353
+ },
354
+ "cart-recovery": {
355
+ "depts": [
356
+ "ecom"
357
+ ],
358
+ "curated": true,
359
+ "plugins": [],
360
+ "collision": false
361
+ },
362
+ "cashflow-forecast": {
363
+ "depts": [
364
+ "finance"
365
+ ],
366
+ "curated": false,
367
+ "plugins": [
368
+ "arkaos-finance@arkaos"
369
+ ],
370
+ "collision": false
371
+ },
372
+ "challenger-sell": {
373
+ "depts": [
374
+ "sales"
375
+ ],
376
+ "curated": false,
377
+ "plugins": [
378
+ "arkaos-sales@arkaos"
379
+ ],
380
+ "collision": false
381
+ },
382
+ "change-manage": {
383
+ "depts": [
384
+ "leadership"
385
+ ],
386
+ "curated": false,
387
+ "plugins": [
388
+ "arkaos-leadership@arkaos"
389
+ ],
390
+ "collision": false
391
+ },
392
+ "changelog": {
393
+ "depts": [
394
+ "dev"
395
+ ],
396
+ "curated": false,
397
+ "plugins": [
398
+ "arkaos-dev@arkaos"
399
+ ],
400
+ "collision": false
401
+ },
402
+ "churn-analysis": {
403
+ "depts": [
404
+ "saas"
405
+ ],
406
+ "curated": false,
407
+ "plugins": [
408
+ "arkaos-saas@arkaos"
409
+ ],
410
+ "collision": false
411
+ },
412
+ "ci-cd-pipeline": {
413
+ "depts": [
414
+ "dev"
415
+ ],
416
+ "curated": false,
417
+ "plugins": [
418
+ "arkaos-dev@arkaos"
419
+ ],
420
+ "collision": false
421
+ },
422
+ "ciso-advisor": {
423
+ "depts": [
424
+ "finance"
425
+ ],
426
+ "curated": false,
427
+ "plugins": [
428
+ "arkaos-finance@arkaos"
429
+ ],
430
+ "collision": false
431
+ },
432
+ "clean-code-review": {
433
+ "depts": [
434
+ "dev"
435
+ ],
436
+ "curated": true,
437
+ "plugins": [],
438
+ "collision": false
439
+ },
440
+ "code-review": {
441
+ "depts": [
442
+ "dev"
443
+ ],
444
+ "curated": true,
445
+ "plugins": [],
446
+ "collision": false
447
+ },
448
+ "codebase-onboard": {
449
+ "depts": [
450
+ "dev"
451
+ ],
452
+ "curated": false,
453
+ "plugins": [
454
+ "arkaos-dev@arkaos"
455
+ ],
456
+ "collision": false
457
+ },
458
+ "cold-email": {
459
+ "depts": [
460
+ "marketing"
461
+ ],
462
+ "curated": false,
463
+ "plugins": [
464
+ "arkaos-marketing@arkaos"
465
+ ],
466
+ "collision": false
467
+ },
468
+ "colors": {
469
+ "depts": [
470
+ "brand"
471
+ ],
472
+ "curated": false,
473
+ "plugins": [
474
+ "arkaos-brand@arkaos"
475
+ ],
476
+ "collision": false
477
+ },
478
+ "compensation-plan": {
479
+ "depts": [
480
+ "org"
481
+ ],
482
+ "curated": false,
483
+ "plugins": [
484
+ "arkaos-org@arkaos"
485
+ ],
486
+ "collision": false
487
+ },
488
+ "competitive-intel": {
489
+ "depts": [
490
+ "kb"
491
+ ],
492
+ "curated": false,
493
+ "plugins": [
494
+ "arkaos-kb@arkaos"
495
+ ],
496
+ "collision": false
497
+ },
498
+ "competitor-analysis": {
499
+ "depts": [
500
+ "marketing"
501
+ ],
502
+ "curated": false,
503
+ "plugins": [
504
+ "arkaos-marketing@arkaos"
505
+ ],
506
+ "collision": false
507
+ },
508
+ "conflict-resolve": {
509
+ "depts": [
510
+ "leadership"
511
+ ],
512
+ "curated": false,
513
+ "plugins": [
514
+ "arkaos-leadership@arkaos"
515
+ ],
516
+ "collision": false
517
+ },
518
+ "content-audit": {
519
+ "depts": [
520
+ "marketing"
521
+ ],
522
+ "curated": false,
523
+ "plugins": [
524
+ "arkaos-marketing@arkaos"
525
+ ],
526
+ "collision": false
527
+ },
528
+ "content-calendar": {
529
+ "depts": [
530
+ "community"
531
+ ],
532
+ "curated": false,
533
+ "plugins": [
534
+ "arkaos-community@arkaos"
535
+ ],
536
+ "collision": false
537
+ },
538
+ "content-system": {
539
+ "depts": [
540
+ "content"
541
+ ],
542
+ "curated": false,
543
+ "plugins": [
544
+ "arkaos-content@arkaos"
545
+ ],
546
+ "collision": false
547
+ },
548
+ "copy-framework": {
549
+ "depts": [
550
+ "landing"
551
+ ],
552
+ "curated": false,
553
+ "plugins": [
554
+ "arkaos-landing@arkaos"
555
+ ],
556
+ "collision": false
557
+ },
558
+ "cro-optimize": {
559
+ "depts": [
560
+ "ecom"
561
+ ],
562
+ "curated": false,
563
+ "plugins": [
564
+ "arkaos-ecom@arkaos"
565
+ ],
566
+ "collision": false
567
+ },
568
+ "cto-advisor": {
569
+ "depts": [
570
+ "strategy"
571
+ ],
572
+ "curated": false,
573
+ "plugins": [
574
+ "arkaos-strategy@arkaos"
575
+ ],
576
+ "collision": false
577
+ },
578
+ "culture-audit": {
579
+ "depts": [
580
+ "leadership"
581
+ ],
582
+ "curated": false,
583
+ "plugins": [
584
+ "arkaos-leadership@arkaos"
585
+ ],
586
+ "collision": false
587
+ },
588
+ "culture-define": {
589
+ "depts": [
590
+ "org"
591
+ ],
592
+ "curated": false,
593
+ "plugins": [
594
+ "arkaos-org@arkaos"
595
+ ],
596
+ "collision": false
597
+ },
598
+ "customer-journey": {
599
+ "depts": [
600
+ "ecom"
601
+ ],
602
+ "curated": false,
603
+ "plugins": [
604
+ "arkaos-ecom@arkaos"
605
+ ],
606
+ "collision": false
607
+ },
608
+ "customer-success": {
609
+ "depts": [
610
+ "saas"
611
+ ],
612
+ "curated": false,
613
+ "plugins": [
614
+ "arkaos-saas@arkaos"
615
+ ],
616
+ "collision": false
617
+ },
618
+ "dashboard-build": {
619
+ "depts": [
620
+ "ops"
621
+ ],
622
+ "curated": false,
623
+ "plugins": [
624
+ "arkaos-ops@arkaos"
625
+ ],
626
+ "collision": false
627
+ },
628
+ "db-design": {
629
+ "depts": [
630
+ "dev"
631
+ ],
632
+ "curated": true,
633
+ "plugins": [],
634
+ "collision": false
635
+ },
636
+ "db-schema": {
637
+ "depts": [
638
+ "dev"
639
+ ],
640
+ "curated": false,
641
+ "plugins": [
642
+ "arkaos-dev@arkaos"
643
+ ],
644
+ "collision": false
645
+ },
646
+ "ddd-model": {
647
+ "depts": [
648
+ "dev"
649
+ ],
650
+ "curated": false,
651
+ "plugins": [
652
+ "arkaos-dev@arkaos"
653
+ ],
654
+ "collision": false
655
+ },
656
+ "deal-qualify": {
657
+ "depts": [
658
+ "sales"
659
+ ],
660
+ "curated": false,
661
+ "plugins": [
662
+ "arkaos-sales@arkaos"
663
+ ],
664
+ "collision": false
665
+ },
666
+ "decision-framework": {
667
+ "depts": [
668
+ "org"
669
+ ],
670
+ "curated": false,
671
+ "plugins": [
672
+ "arkaos-org@arkaos"
673
+ ],
674
+ "collision": false
675
+ },
676
+ "delegation-matrix": {
677
+ "depts": [
678
+ "leadership"
679
+ ],
680
+ "curated": false,
681
+ "plugins": [
682
+ "arkaos-leadership@arkaos"
683
+ ],
684
+ "collision": false
685
+ },
686
+ "demo-gif": {
687
+ "depts": [
688
+ "dev"
689
+ ],
690
+ "curated": false,
691
+ "plugins": [
692
+ "arkaos-dev@arkaos"
693
+ ],
694
+ "collision": false
695
+ },
696
+ "dependency-audit": {
697
+ "depts": [
698
+ "dev"
699
+ ],
700
+ "curated": false,
701
+ "plugins": [
702
+ "arkaos-dev@arkaos"
703
+ ],
704
+ "collision": false
705
+ },
706
+ "deploy": {
707
+ "depts": [
708
+ "dev"
709
+ ],
710
+ "curated": false,
711
+ "plugins": [
712
+ "arkaos-dev@arkaos"
713
+ ],
714
+ "collision": false
715
+ },
716
+ "design-review": {
717
+ "depts": [
718
+ "brand"
719
+ ],
720
+ "curated": true,
721
+ "plugins": [],
722
+ "collision": false
723
+ },
724
+ "design-system": {
725
+ "depts": [
726
+ "brand"
727
+ ],
728
+ "curated": true,
729
+ "plugins": [],
730
+ "collision": false
731
+ },
732
+ "devops-pipeline": {
733
+ "depts": [
734
+ "dev"
735
+ ],
736
+ "curated": false,
737
+ "plugins": [
738
+ "arkaos-dev@arkaos"
739
+ ],
740
+ "collision": false
741
+ },
742
+ "disc-assess": {
743
+ "depts": [
744
+ "leadership"
745
+ ],
746
+ "curated": false,
747
+ "plugins": [
748
+ "arkaos-leadership@arkaos"
749
+ ],
750
+ "collision": false
751
+ },
752
+ "discovery-call": {
753
+ "depts": [
754
+ "sales"
755
+ ],
756
+ "curated": true,
757
+ "plugins": [],
758
+ "collision": false
759
+ },
760
+ "discovery-plan": {
761
+ "depts": [
762
+ "pm"
763
+ ],
764
+ "curated": false,
765
+ "plugins": [
766
+ "arkaos-pm@arkaos"
767
+ ],
768
+ "collision": false
769
+ },
770
+ "docs": {
771
+ "depts": [
772
+ "dev"
773
+ ],
774
+ "curated": false,
775
+ "plugins": [
776
+ "arkaos-dev@arkaos"
777
+ ],
778
+ "collision": false
779
+ },
780
+ "ecommerce": {
781
+ "depts": [
782
+ "ecom"
783
+ ],
784
+ "curated": false,
785
+ "plugins": [
786
+ "arkaos-ecom@arkaos"
787
+ ],
788
+ "collision": false
789
+ },
790
+ "email-sequence": {
791
+ "depts": [
792
+ "landing",
793
+ "marketing"
794
+ ],
795
+ "curated": false,
796
+ "plugins": [
797
+ "arkaos-landing@arkaos",
798
+ "arkaos-marketing@arkaos"
799
+ ],
800
+ "collision": true
801
+ },
802
+ "env-secrets": {
803
+ "depts": [
804
+ "dev"
805
+ ],
806
+ "curated": false,
807
+ "plugins": [
808
+ "arkaos-dev@arkaos"
809
+ ],
810
+ "collision": false
811
+ },
812
+ "estimate-forecast": {
813
+ "depts": [
814
+ "pm"
815
+ ],
816
+ "curated": false,
817
+ "plugins": [
818
+ "arkaos-pm@arkaos"
819
+ ],
820
+ "collision": false
821
+ },
822
+ "events-plan": {
823
+ "depts": [
824
+ "community"
825
+ ],
826
+ "curated": false,
827
+ "plugins": [
828
+ "arkaos-community@arkaos"
829
+ ],
830
+ "collision": false
831
+ },
832
+ "extract-data": {
833
+ "depts": [
834
+ "strategy"
835
+ ],
836
+ "curated": false,
837
+ "plugins": [
838
+ "arkaos-strategy@arkaos"
839
+ ],
840
+ "collision": false
841
+ },
842
+ "feedback-give": {
843
+ "depts": [
844
+ "leadership"
845
+ ],
846
+ "curated": true,
847
+ "plugins": [],
848
+ "collision": false
849
+ },
850
+ "financial-model": {
851
+ "depts": [
852
+ "finance"
853
+ ],
854
+ "curated": true,
855
+ "plugins": [],
856
+ "collision": false
857
+ },
858
+ "five-forces": {
859
+ "depts": [
860
+ "strategy"
861
+ ],
862
+ "curated": true,
863
+ "plugins": [],
864
+ "collision": false
865
+ },
866
+ "forecast-revenue": {
867
+ "depts": [
868
+ "sales"
869
+ ],
870
+ "curated": false,
871
+ "plugins": [
872
+ "arkaos-sales@arkaos"
873
+ ],
874
+ "collision": false
875
+ },
876
+ "fulfillment-plan": {
877
+ "depts": [
878
+ "ecom"
879
+ ],
880
+ "curated": false,
881
+ "plugins": [
882
+ "arkaos-ecom@arkaos"
883
+ ],
884
+ "collision": false
885
+ },
886
+ "funnel-design": {
887
+ "depts": [
888
+ "landing"
889
+ ],
890
+ "curated": true,
891
+ "plugins": [],
892
+ "collision": false
893
+ },
894
+ "funnel-metrics": {
895
+ "depts": [
896
+ "landing"
897
+ ],
898
+ "curated": false,
899
+ "plugins": [
900
+ "arkaos-landing@arkaos"
901
+ ],
902
+ "collision": false
903
+ },
904
+ "gamification-design": {
905
+ "depts": [
906
+ "community"
907
+ ],
908
+ "curated": false,
909
+ "plugins": [
910
+ "arkaos-community@arkaos"
911
+ ],
912
+ "collision": false
913
+ },
914
+ "gdpr-compliance": {
915
+ "depts": [
916
+ "ops"
917
+ ],
918
+ "curated": false,
919
+ "plugins": [
920
+ "arkaos-ops@arkaos"
921
+ ],
922
+ "collision": false
923
+ },
924
+ "growth-loop": {
925
+ "depts": [
926
+ "marketing"
927
+ ],
928
+ "curated": true,
929
+ "plugins": [],
930
+ "collision": false
931
+ },
932
+ "growth-plan": {
933
+ "depts": [
934
+ "community",
935
+ "saas"
936
+ ],
937
+ "curated": false,
938
+ "plugins": [
939
+ "arkaos-community@arkaos",
940
+ "arkaos-saas@arkaos"
941
+ ],
942
+ "collision": true
943
+ },
944
+ "growth-strategy": {
945
+ "depts": [
946
+ "strategy"
947
+ ],
948
+ "curated": false,
949
+ "plugins": [
950
+ "arkaos-strategy@arkaos"
951
+ ],
952
+ "collision": false
953
+ },
954
+ "gtd-setup": {
955
+ "depts": [
956
+ "ops"
957
+ ],
958
+ "curated": false,
959
+ "plugins": [
960
+ "arkaos-ops@arkaos"
961
+ ],
962
+ "collision": false
963
+ },
964
+ "gtm-strategy": {
965
+ "depts": [
966
+ "saas"
967
+ ],
968
+ "curated": false,
969
+ "plugins": [
970
+ "arkaos-saas@arkaos"
971
+ ],
972
+ "collision": false
973
+ },
974
+ "headline-write": {
975
+ "depts": [
976
+ "landing"
977
+ ],
978
+ "curated": false,
979
+ "plugins": [
980
+ "arkaos-landing@arkaos"
981
+ ],
982
+ "collision": false
983
+ },
984
+ "hiring-plan": {
985
+ "depts": [
986
+ "leadership",
987
+ "org"
988
+ ],
989
+ "curated": false,
990
+ "plugins": [
991
+ "arkaos-leadership@arkaos",
992
+ "arkaos-org@arkaos"
993
+ ],
994
+ "collision": true
995
+ },
996
+ "hook-write": {
997
+ "depts": [
998
+ "content"
999
+ ],
1000
+ "curated": true,
1001
+ "plugins": [],
1002
+ "collision": false
1003
+ },
1004
+ "identity-system": {
1005
+ "depts": [
1006
+ "brand"
1007
+ ],
1008
+ "curated": false,
1009
+ "plugins": [
1010
+ "arkaos-brand@arkaos"
1011
+ ],
1012
+ "collision": false
1013
+ },
1014
+ "impact-map": {
1015
+ "depts": [
1016
+ "pm"
1017
+ ],
1018
+ "curated": false,
1019
+ "plugins": [
1020
+ "arkaos-pm@arkaos"
1021
+ ],
1022
+ "collision": false
1023
+ },
1024
+ "incident": {
1025
+ "depts": [
1026
+ "dev"
1027
+ ],
1028
+ "curated": false,
1029
+ "plugins": [
1030
+ "arkaos-dev@arkaos"
1031
+ ],
1032
+ "collision": false
1033
+ },
1034
+ "integration-design": {
1035
+ "depts": [
1036
+ "ops"
1037
+ ],
1038
+ "curated": false,
1039
+ "plugins": [
1040
+ "arkaos-ops@arkaos"
1041
+ ],
1042
+ "collision": false
1043
+ },
1044
+ "iso27001": {
1045
+ "depts": [
1046
+ "ops"
1047
+ ],
1048
+ "curated": false,
1049
+ "plugins": [
1050
+ "arkaos-ops@arkaos"
1051
+ ],
1052
+ "collision": false
1053
+ },
1054
+ "kanban-setup": {
1055
+ "depts": [
1056
+ "pm"
1057
+ ],
1058
+ "curated": false,
1059
+ "plugins": [
1060
+ "arkaos-pm@arkaos"
1061
+ ],
1062
+ "collision": false
1063
+ },
1064
+ "knowledge": {
1065
+ "depts": [
1066
+ "kb"
1067
+ ],
1068
+ "curated": false,
1069
+ "plugins": [
1070
+ "arkaos-kb@arkaos"
1071
+ ],
1072
+ "collision": false
1073
+ },
1074
+ "knowledge-review": {
1075
+ "depts": [
1076
+ "kb"
1077
+ ],
1078
+ "curated": false,
1079
+ "plugins": [
1080
+ "arkaos-kb@arkaos"
1081
+ ],
1082
+ "collision": false
1083
+ },
1084
+ "landing-gen": {
1085
+ "depts": [
1086
+ "landing"
1087
+ ],
1088
+ "curated": true,
1089
+ "plugins": [],
1090
+ "collision": false
1091
+ },
1092
+ "launch-execute": {
1093
+ "depts": [
1094
+ "saas"
1095
+ ],
1096
+ "curated": false,
1097
+ "plugins": [
1098
+ "arkaos-saas@arkaos"
1099
+ ],
1100
+ "collision": false
1101
+ },
1102
+ "launch-sequence": {
1103
+ "depts": [
1104
+ "landing"
1105
+ ],
1106
+ "curated": false,
1107
+ "plugins": [
1108
+ "arkaos-landing@arkaos"
1109
+ ],
1110
+ "collision": false
1111
+ },
1112
+ "leaky-bucket": {
1113
+ "depts": [
1114
+ "saas"
1115
+ ],
1116
+ "curated": false,
1117
+ "plugins": [
1118
+ "arkaos-saas@arkaos"
1119
+ ],
1120
+ "collision": false
1121
+ },
1122
+ "lean-audit": {
1123
+ "depts": [
1124
+ "ops"
1125
+ ],
1126
+ "curated": false,
1127
+ "plugins": [
1128
+ "arkaos-ops@arkaos"
1129
+ ],
1130
+ "collision": false
1131
+ },
1132
+ "learn-content": {
1133
+ "depts": [
1134
+ "kb"
1135
+ ],
1136
+ "curated": false,
1137
+ "plugins": [
1138
+ "arkaos-kb@arkaos"
1139
+ ],
1140
+ "collision": false
1141
+ },
1142
+ "logo-brief": {
1143
+ "depts": [
1144
+ "brand"
1145
+ ],
1146
+ "curated": false,
1147
+ "plugins": [
1148
+ "arkaos-brand@arkaos"
1149
+ ],
1150
+ "collision": false
1151
+ },
1152
+ "marketing-automation": {
1153
+ "depts": [
1154
+ "marketing"
1155
+ ],
1156
+ "curated": false,
1157
+ "plugins": [
1158
+ "arkaos-marketing@arkaos"
1159
+ ],
1160
+ "collision": false
1161
+ },
1162
+ "marketplace-manage": {
1163
+ "depts": [
1164
+ "ecom"
1165
+ ],
1166
+ "curated": false,
1167
+ "plugins": [
1168
+ "arkaos-ecom@arkaos"
1169
+ ],
1170
+ "collision": false
1171
+ },
1172
+ "mcp": {
1173
+ "depts": [
1174
+ "dev"
1175
+ ],
1176
+ "curated": false,
1177
+ "plugins": [
1178
+ "arkaos-dev@arkaos"
1179
+ ],
1180
+ "collision": false
1181
+ },
1182
+ "mcp-builder": {
1183
+ "depts": [
1184
+ "dev"
1185
+ ],
1186
+ "curated": false,
1187
+ "plugins": [
1188
+ "arkaos-dev@arkaos"
1189
+ ],
1190
+ "collision": false
1191
+ },
1192
+ "meeting-optimize": {
1193
+ "depts": [
1194
+ "org"
1195
+ ],
1196
+ "curated": false,
1197
+ "plugins": [
1198
+ "arkaos-org@arkaos"
1199
+ ],
1200
+ "collision": false
1201
+ },
1202
+ "metrics-dashboard": {
1203
+ "depts": [
1204
+ "ops",
1205
+ "saas"
1206
+ ],
1207
+ "curated": false,
1208
+ "plugins": [
1209
+ "arkaos-ops@arkaos",
1210
+ "arkaos-saas@arkaos"
1211
+ ],
1212
+ "collision": true
1213
+ },
1214
+ "metrics-track": {
1215
+ "depts": [
1216
+ "community"
1217
+ ],
1218
+ "curated": false,
1219
+ "plugins": [
1220
+ "arkaos-community@arkaos"
1221
+ ],
1222
+ "collision": false
1223
+ },
1224
+ "micro-saas-stack": {
1225
+ "depts": [
1226
+ "saas"
1227
+ ],
1228
+ "curated": false,
1229
+ "plugins": [
1230
+ "arkaos-saas@arkaos"
1231
+ ],
1232
+ "collision": false
1233
+ },
1234
+ "moat-analysis": {
1235
+ "depts": [
1236
+ "strategy"
1237
+ ],
1238
+ "curated": true,
1239
+ "plugins": [],
1240
+ "collision": false
1241
+ },
1242
+ "moc-create": {
1243
+ "depts": [
1244
+ "kb"
1245
+ ],
1246
+ "curated": false,
1247
+ "plugins": [
1248
+ "arkaos-kb@arkaos"
1249
+ ],
1250
+ "collision": false
1251
+ },
1252
+ "mockup-generate": {
1253
+ "depts": [
1254
+ "brand"
1255
+ ],
1256
+ "curated": false,
1257
+ "plugins": [
1258
+ "arkaos-brand@arkaos"
1259
+ ],
1260
+ "collision": false
1261
+ },
1262
+ "moderation": {
1263
+ "depts": [
1264
+ "community"
1265
+ ],
1266
+ "curated": true,
1267
+ "plugins": [],
1268
+ "collision": false
1269
+ },
1270
+ "monetization-plan": {
1271
+ "depts": [
1272
+ "content"
1273
+ ],
1274
+ "curated": false,
1275
+ "plugins": [
1276
+ "arkaos-content@arkaos"
1277
+ ],
1278
+ "collision": false
1279
+ },
1280
+ "monetize-plan": {
1281
+ "depts": [
1282
+ "community"
1283
+ ],
1284
+ "curated": false,
1285
+ "plugins": [
1286
+ "arkaos-community@arkaos"
1287
+ ],
1288
+ "collision": false
1289
+ },
1290
+ "mvp-build": {
1291
+ "depts": [
1292
+ "saas"
1293
+ ],
1294
+ "curated": true,
1295
+ "plugins": [],
1296
+ "collision": false
1297
+ },
1298
+ "n8n-flow": {
1299
+ "depts": [
1300
+ "ops"
1301
+ ],
1302
+ "curated": false,
1303
+ "plugins": [
1304
+ "arkaos-ops@arkaos"
1305
+ ],
1306
+ "collision": false
1307
+ },
1308
+ "naming-evaluate": {
1309
+ "depts": [
1310
+ "brand"
1311
+ ],
1312
+ "curated": false,
1313
+ "plugins": [
1314
+ "arkaos-brand@arkaos"
1315
+ ],
1316
+ "collision": false
1317
+ },
1318
+ "negotiate-plan": {
1319
+ "depts": [
1320
+ "sales"
1321
+ ],
1322
+ "curated": false,
1323
+ "plugins": [
1324
+ "arkaos-sales@arkaos"
1325
+ ],
1326
+ "collision": false
1327
+ },
1328
+ "newsletter-write": {
1329
+ "depts": [
1330
+ "content"
1331
+ ],
1332
+ "curated": false,
1333
+ "plugins": [
1334
+ "arkaos-content@arkaos"
1335
+ ],
1336
+ "collision": false
1337
+ },
1338
+ "niche-evaluate": {
1339
+ "depts": [
1340
+ "saas"
1341
+ ],
1342
+ "curated": false,
1343
+ "plugins": [
1344
+ "arkaos-saas@arkaos"
1345
+ ],
1346
+ "collision": false
1347
+ },
1348
+ "niche-setup": {
1349
+ "depts": [
1350
+ "community"
1351
+ ],
1352
+ "curated": false,
1353
+ "plugins": [
1354
+ "arkaos-community@arkaos"
1355
+ ],
1356
+ "collision": false
1357
+ },
1358
+ "objection-handle": {
1359
+ "depts": [
1360
+ "sales"
1361
+ ],
1362
+ "curated": true,
1363
+ "plugins": [],
1364
+ "collision": false
1365
+ },
1366
+ "observability": {
1367
+ "depts": [
1368
+ "dev"
1369
+ ],
1370
+ "curated": false,
1371
+ "plugins": [
1372
+ "arkaos-dev@arkaos"
1373
+ ],
1374
+ "collision": false
1375
+ },
1376
+ "offer-create": {
1377
+ "depts": [
1378
+ "landing"
1379
+ ],
1380
+ "curated": false,
1381
+ "plugins": [
1382
+ "arkaos-landing@arkaos"
1383
+ ],
1384
+ "collision": false
1385
+ },
1386
+ "okr-cadence": {
1387
+ "depts": [
1388
+ "org"
1389
+ ],
1390
+ "curated": false,
1391
+ "plugins": [
1392
+ "arkaos-org@arkaos"
1393
+ ],
1394
+ "collision": false
1395
+ },
1396
+ "okr-define": {
1397
+ "depts": [
1398
+ "leadership"
1399
+ ],
1400
+ "curated": false,
1401
+ "plugins": [
1402
+ "arkaos-leadership@arkaos"
1403
+ ],
1404
+ "collision": false
1405
+ },
1406
+ "onboard": {
1407
+ "depts": [
1408
+ "dev"
1409
+ ],
1410
+ "curated": false,
1411
+ "plugins": [
1412
+ "arkaos-dev@arkaos"
1413
+ ],
1414
+ "collision": false
1415
+ },
1416
+ "onboarding-design": {
1417
+ "depts": [
1418
+ "org"
1419
+ ],
1420
+ "curated": false,
1421
+ "plugins": [
1422
+ "arkaos-org@arkaos"
1423
+ ],
1424
+ "collision": false
1425
+ },
1426
+ "onboarding-flow": {
1427
+ "depts": [
1428
+ "community"
1429
+ ],
1430
+ "curated": false,
1431
+ "plugins": [
1432
+ "arkaos-community@arkaos"
1433
+ ],
1434
+ "collision": false
1435
+ },
1436
+ "onboarding-optimize": {
1437
+ "depts": [
1438
+ "saas"
1439
+ ],
1440
+ "curated": false,
1441
+ "plugins": [
1442
+ "arkaos-saas@arkaos"
1443
+ ],
1444
+ "collision": false
1445
+ },
1446
+ "operations": {
1447
+ "depts": [
1448
+ "ops"
1449
+ ],
1450
+ "curated": false,
1451
+ "plugins": [
1452
+ "arkaos-ops@arkaos"
1453
+ ],
1454
+ "collision": false
1455
+ },
1456
+ "optimize-page": {
1457
+ "depts": [
1458
+ "landing"
1459
+ ],
1460
+ "curated": false,
1461
+ "plugins": [
1462
+ "arkaos-landing@arkaos"
1463
+ ],
1464
+ "collision": false
1465
+ },
1466
+ "org-design": {
1467
+ "depts": [
1468
+ "org"
1469
+ ],
1470
+ "curated": true,
1471
+ "plugins": [],
1472
+ "collision": false
1473
+ },
1474
+ "page-architect": {
1475
+ "depts": [
1476
+ "landing"
1477
+ ],
1478
+ "curated": false,
1479
+ "plugins": [
1480
+ "arkaos-landing@arkaos"
1481
+ ],
1482
+ "collision": false
1483
+ },
1484
+ "paid-campaign": {
1485
+ "depts": [
1486
+ "marketing"
1487
+ ],
1488
+ "curated": false,
1489
+ "plugins": [
1490
+ "arkaos-marketing@arkaos"
1491
+ ],
1492
+ "collision": false
1493
+ },
1494
+ "performance-audit": {
1495
+ "depts": [
1496
+ "dev"
1497
+ ],
1498
+ "curated": false,
1499
+ "plugins": [
1500
+ "arkaos-dev@arkaos"
1501
+ ],
1502
+ "collision": false
1503
+ },
1504
+ "performance-profiler": {
1505
+ "depts": [
1506
+ "dev"
1507
+ ],
1508
+ "curated": false,
1509
+ "plugins": [
1510
+ "arkaos-dev@arkaos"
1511
+ ],
1512
+ "collision": false
1513
+ },
1514
+ "performance-review": {
1515
+ "depts": [
1516
+ "leadership"
1517
+ ],
1518
+ "curated": false,
1519
+ "plugins": [
1520
+ "arkaos-leadership@arkaos"
1521
+ ],
1522
+ "collision": false
1523
+ },
1524
+ "persona-build": {
1525
+ "depts": [
1526
+ "kb"
1527
+ ],
1528
+ "curated": false,
1529
+ "plugins": [
1530
+ "arkaos-kb@arkaos"
1531
+ ],
1532
+ "collision": false
1533
+ },
1534
+ "persuasion-apply": {
1535
+ "depts": [
1536
+ "landing"
1537
+ ],
1538
+ "curated": false,
1539
+ "plugins": [
1540
+ "arkaos-landing@arkaos"
1541
+ ],
1542
+ "collision": false
1543
+ },
1544
+ "pipeline-manage": {
1545
+ "depts": [
1546
+ "sales"
1547
+ ],
1548
+ "curated": false,
1549
+ "plugins": [
1550
+ "arkaos-sales@arkaos"
1551
+ ],
1552
+ "collision": false
1553
+ },
1554
+ "pitch-deck": {
1555
+ "depts": [
1556
+ "finance"
1557
+ ],
1558
+ "curated": false,
1559
+ "plugins": [
1560
+ "arkaos-finance@arkaos"
1561
+ ],
1562
+ "collision": false
1563
+ },
1564
+ "platform-optimize": {
1565
+ "depts": [
1566
+ "content"
1567
+ ],
1568
+ "curated": false,
1569
+ "plugins": [
1570
+ "arkaos-content@arkaos"
1571
+ ],
1572
+ "collision": false
1573
+ },
1574
+ "platform-select": {
1575
+ "depts": [
1576
+ "community"
1577
+ ],
1578
+ "curated": false,
1579
+ "plugins": [
1580
+ "arkaos-community@arkaos"
1581
+ ],
1582
+ "collision": false
1583
+ },
1584
+ "plg-setup": {
1585
+ "depts": [
1586
+ "saas"
1587
+ ],
1588
+ "curated": true,
1589
+ "plugins": [],
1590
+ "collision": false
1591
+ },
1592
+ "position": {
1593
+ "depts": [
1594
+ "strategy"
1595
+ ],
1596
+ "curated": false,
1597
+ "plugins": [
1598
+ "arkaos-strategy@arkaos"
1599
+ ],
1600
+ "collision": false
1601
+ },
1602
+ "positioning-statement": {
1603
+ "depts": [
1604
+ "brand"
1605
+ ],
1606
+ "curated": false,
1607
+ "plugins": [
1608
+ "arkaos-brand@arkaos"
1609
+ ],
1610
+ "collision": false
1611
+ },
1612
+ "premortem": {
1613
+ "depts": [
1614
+ "strategy"
1615
+ ],
1616
+ "curated": false,
1617
+ "plugins": [
1618
+ "arkaos-strategy@arkaos"
1619
+ ],
1620
+ "collision": false
1621
+ },
1622
+ "pricing-negotiate": {
1623
+ "depts": [
1624
+ "sales"
1625
+ ],
1626
+ "curated": false,
1627
+ "plugins": [
1628
+ "arkaos-sales@arkaos"
1629
+ ],
1630
+ "collision": false
1631
+ },
1632
+ "pricing-strategy": {
1633
+ "depts": [
1634
+ "ecom",
1635
+ "saas"
1636
+ ],
1637
+ "curated": false,
1638
+ "plugins": [
1639
+ "arkaos-ecom@arkaos",
1640
+ "arkaos-saas@arkaos"
1641
+ ],
1642
+ "collision": true
1643
+ },
1644
+ "primal-audit": {
1645
+ "depts": [
1646
+ "brand"
1647
+ ],
1648
+ "curated": false,
1649
+ "plugins": [
1650
+ "arkaos-brand@arkaos"
1651
+ ],
1652
+ "collision": false
1653
+ },
1654
+ "principles-audit": {
1655
+ "depts": [
1656
+ "org"
1657
+ ],
1658
+ "curated": false,
1659
+ "plugins": [
1660
+ "arkaos-org@arkaos"
1661
+ ],
1662
+ "collision": false
1663
+ },
1664
+ "product-launch": {
1665
+ "depts": [
1666
+ "ecom"
1667
+ ],
1668
+ "curated": false,
1669
+ "plugins": [
1670
+ "arkaos-ecom@arkaos"
1671
+ ],
1672
+ "collision": false
1673
+ },
1674
+ "programmatic-seo": {
1675
+ "depts": [
1676
+ "marketing"
1677
+ ],
1678
+ "curated": false,
1679
+ "plugins": [
1680
+ "arkaos-marketing@arkaos"
1681
+ ],
1682
+ "collision": false
1683
+ },
1684
+ "proposal-write": {
1685
+ "depts": [
1686
+ "sales"
1687
+ ],
1688
+ "curated": false,
1689
+ "plugins": [
1690
+ "arkaos-sales@arkaos"
1691
+ ],
1692
+ "collision": false
1693
+ },
1694
+ "quality-management": {
1695
+ "depts": [
1696
+ "ops"
1697
+ ],
1698
+ "curated": false,
1699
+ "plugins": [
1700
+ "arkaos-ops@arkaos"
1701
+ ],
1702
+ "collision": false
1703
+ },
1704
+ "rag-architect": {
1705
+ "depts": [
1706
+ "dev"
1707
+ ],
1708
+ "curated": false,
1709
+ "plugins": [
1710
+ "arkaos-dev@arkaos"
1711
+ ],
1712
+ "collision": false
1713
+ },
1714
+ "red-team": {
1715
+ "depts": [
1716
+ "dev"
1717
+ ],
1718
+ "curated": false,
1719
+ "plugins": [
1720
+ "arkaos-dev@arkaos"
1721
+ ],
1722
+ "collision": false
1723
+ },
1724
+ "refactor-plan": {
1725
+ "depts": [
1726
+ "dev"
1727
+ ],
1728
+ "curated": true,
1729
+ "plugins": [],
1730
+ "collision": false
1731
+ },
1732
+ "release": {
1733
+ "depts": [
1734
+ "dev"
1735
+ ],
1736
+ "curated": false,
1737
+ "plugins": [
1738
+ "arkaos-dev@arkaos"
1739
+ ],
1740
+ "collision": false
1741
+ },
1742
+ "remote-setup": {
1743
+ "depts": [
1744
+ "org"
1745
+ ],
1746
+ "curated": false,
1747
+ "plugins": [
1748
+ "arkaos-org@arkaos"
1749
+ ],
1750
+ "collision": false
1751
+ },
1752
+ "repurpose-plan": {
1753
+ "depts": [
1754
+ "content"
1755
+ ],
1756
+ "curated": false,
1757
+ "plugins": [
1758
+ "arkaos-content@arkaos"
1759
+ ],
1760
+ "collision": false
1761
+ },
1762
+ "research": {
1763
+ "depts": [
1764
+ "dev"
1765
+ ],
1766
+ "curated": false,
1767
+ "plugins": [
1768
+ "arkaos-dev@arkaos"
1769
+ ],
1770
+ "collision": false
1771
+ },
1772
+ "research-compile": {
1773
+ "depts": [
1774
+ "content"
1775
+ ],
1776
+ "curated": false,
1777
+ "plugins": [
1778
+ "arkaos-content@arkaos"
1779
+ ],
1780
+ "collision": false
1781
+ },
1782
+ "research-plan": {
1783
+ "depts": [
1784
+ "kb"
1785
+ ],
1786
+ "curated": false,
1787
+ "plugins": [
1788
+ "arkaos-kb@arkaos"
1789
+ ],
1790
+ "collision": false
1791
+ },
1792
+ "retention-system": {
1793
+ "depts": [
1794
+ "community"
1795
+ ],
1796
+ "curated": false,
1797
+ "plugins": [
1798
+ "arkaos-community@arkaos"
1799
+ ],
1800
+ "collision": false
1801
+ },
1802
+ "rfm-segment": {
1803
+ "depts": [
1804
+ "ecom"
1805
+ ],
1806
+ "curated": false,
1807
+ "plugins": [
1808
+ "arkaos-ecom@arkaos"
1809
+ ],
1810
+ "collision": false
1811
+ },
1812
+ "risk-management": {
1813
+ "depts": [
1814
+ "ops"
1815
+ ],
1816
+ "curated": false,
1817
+ "plugins": [
1818
+ "arkaos-ops@arkaos"
1819
+ ],
1820
+ "collision": false
1821
+ },
1822
+ "risk-register": {
1823
+ "depts": [
1824
+ "pm"
1825
+ ],
1826
+ "curated": false,
1827
+ "plugins": [
1828
+ "arkaos-pm@arkaos"
1829
+ ],
1830
+ "collision": false
1831
+ },
1832
+ "roadmap-build": {
1833
+ "depts": [
1834
+ "pm"
1835
+ ],
1836
+ "curated": true,
1837
+ "plugins": [],
1838
+ "collision": false
1839
+ },
1840
+ "runbook": {
1841
+ "depts": [
1842
+ "dev"
1843
+ ],
1844
+ "curated": true,
1845
+ "plugins": [],
1846
+ "collision": false
1847
+ },
1848
+ "saas-scaffold": {
1849
+ "depts": [
1850
+ "saas"
1851
+ ],
1852
+ "curated": false,
1853
+ "plugins": [
1854
+ "arkaos-saas@arkaos"
1855
+ ],
1856
+ "collision": false
1857
+ },
1858
+ "scaffold": {
1859
+ "depts": [
1860
+ "dev"
1861
+ ],
1862
+ "curated": false,
1863
+ "plugins": [
1864
+ "arkaos-dev@arkaos"
1865
+ ],
1866
+ "collision": false
1867
+ },
1868
+ "scenario-analysis": {
1869
+ "depts": [
1870
+ "finance"
1871
+ ],
1872
+ "curated": false,
1873
+ "plugins": [
1874
+ "arkaos-finance@arkaos"
1875
+ ],
1876
+ "collision": false
1877
+ },
1878
+ "scenario-plan": {
1879
+ "depts": [
1880
+ "strategy"
1881
+ ],
1882
+ "curated": false,
1883
+ "plugins": [
1884
+ "arkaos-strategy@arkaos"
1885
+ ],
1886
+ "collision": false
1887
+ },
1888
+ "script-structure": {
1889
+ "depts": [
1890
+ "content"
1891
+ ],
1892
+ "curated": false,
1893
+ "plugins": [
1894
+ "arkaos-content@arkaos"
1895
+ ],
1896
+ "collision": false
1897
+ },
1898
+ "search-kb": {
1899
+ "depts": [
1900
+ "kb"
1901
+ ],
1902
+ "curated": true,
1903
+ "plugins": [],
1904
+ "collision": false
1905
+ },
1906
+ "security-audit": {
1907
+ "depts": [
1908
+ "dev"
1909
+ ],
1910
+ "curated": true,
1911
+ "plugins": [],
1912
+ "collision": false
1913
+ },
1914
+ "security-compliance": {
1915
+ "depts": [
1916
+ "dev"
1917
+ ],
1918
+ "curated": false,
1919
+ "plugins": [
1920
+ "arkaos-dev@arkaos"
1921
+ ],
1922
+ "collision": false
1923
+ },
1924
+ "seo-audit": {
1925
+ "depts": [
1926
+ "marketing"
1927
+ ],
1928
+ "curated": true,
1929
+ "plugins": [],
1930
+ "collision": false
1931
+ },
1932
+ "shape-pitch": {
1933
+ "depts": [
1934
+ "pm"
1935
+ ],
1936
+ "curated": false,
1937
+ "plugins": [
1938
+ "arkaos-pm@arkaos"
1939
+ ],
1940
+ "collision": false
1941
+ },
1942
+ "short-form": {
1943
+ "depts": [
1944
+ "content"
1945
+ ],
1946
+ "curated": false,
1947
+ "plugins": [
1948
+ "arkaos-content@arkaos"
1949
+ ],
1950
+ "collision": false
1951
+ },
1952
+ "skill-audit": {
1953
+ "depts": [
1954
+ "dev"
1955
+ ],
1956
+ "curated": false,
1957
+ "plugins": [
1958
+ "arkaos-dev@arkaos"
1959
+ ],
1960
+ "collision": false
1961
+ },
1962
+ "soc2-compliance": {
1963
+ "depts": [
1964
+ "ops"
1965
+ ],
1966
+ "curated": false,
1967
+ "plugins": [
1968
+ "arkaos-ops@arkaos"
1969
+ ],
1970
+ "collision": false
1971
+ },
1972
+ "social-commerce": {
1973
+ "depts": [
1974
+ "ecom"
1975
+ ],
1976
+ "curated": false,
1977
+ "plugins": [
1978
+ "arkaos-ecom@arkaos"
1979
+ ],
1980
+ "collision": false
1981
+ },
1982
+ "social-strategy": {
1983
+ "depts": [
1984
+ "marketing"
1985
+ ],
1986
+ "curated": false,
1987
+ "plugins": [
1988
+ "arkaos-marketing@arkaos"
1989
+ ],
1990
+ "collision": false
1991
+ },
1992
+ "sop-create": {
1993
+ "depts": [
1994
+ "ops"
1995
+ ],
1996
+ "curated": true,
1997
+ "plugins": [],
1998
+ "collision": false
1999
+ },
2000
+ "sop-process": {
2001
+ "depts": [
2002
+ "org"
2003
+ ],
2004
+ "curated": false,
2005
+ "plugins": [
2006
+ "arkaos-org@arkaos"
2007
+ ],
2008
+ "collision": false
2009
+ },
2010
+ "source-evaluate": {
2011
+ "depts": [
2012
+ "kb"
2013
+ ],
2014
+ "curated": false,
2015
+ "plugins": [
2016
+ "arkaos-kb@arkaos"
2017
+ ],
2018
+ "collision": false
2019
+ },
2020
+ "spec": {
2021
+ "depts": [
2022
+ "dev"
2023
+ ],
2024
+ "curated": true,
2025
+ "plugins": [],
2026
+ "collision": false
2027
+ },
2028
+ "spin-sell": {
2029
+ "depts": [
2030
+ "sales"
2031
+ ],
2032
+ "curated": false,
2033
+ "plugins": [
2034
+ "arkaos-sales@arkaos"
2035
+ ],
2036
+ "collision": false
2037
+ },
2038
+ "sprint-plan": {
2039
+ "depts": [
2040
+ "pm"
2041
+ ],
2042
+ "curated": true,
2043
+ "plugins": [],
2044
+ "collision": false
2045
+ },
2046
+ "stack-check": {
2047
+ "depts": [
2048
+ "dev"
2049
+ ],
2050
+ "curated": false,
2051
+ "plugins": [
2052
+ "arkaos-dev@arkaos"
2053
+ ],
2054
+ "collision": false
2055
+ },
2056
+ "stakeholder-map": {
2057
+ "depts": [
2058
+ "pm"
2059
+ ],
2060
+ "curated": false,
2061
+ "plugins": [
2062
+ "arkaos-pm@arkaos"
2063
+ ],
2064
+ "collision": false
2065
+ },
2066
+ "standup-run": {
2067
+ "depts": [
2068
+ "pm"
2069
+ ],
2070
+ "curated": false,
2071
+ "plugins": [
2072
+ "arkaos-pm@arkaos"
2073
+ ],
2074
+ "collision": false
2075
+ },
2076
+ "store-audit": {
2077
+ "depts": [
2078
+ "ecom"
2079
+ ],
2080
+ "curated": true,
2081
+ "plugins": [],
2082
+ "collision": false
2083
+ },
2084
+ "story-write": {
2085
+ "depts": [
2086
+ "pm"
2087
+ ],
2088
+ "curated": false,
2089
+ "plugins": [
2090
+ "arkaos-pm@arkaos"
2091
+ ],
2092
+ "collision": false
2093
+ },
2094
+ "subscription-model": {
2095
+ "depts": [
2096
+ "ecom"
2097
+ ],
2098
+ "curated": false,
2099
+ "plugins": [
2100
+ "arkaos-ecom@arkaos"
2101
+ ],
2102
+ "collision": false
2103
+ },
2104
+ "taxonomy-manage": {
2105
+ "depts": [
2106
+ "kb"
2107
+ ],
2108
+ "curated": false,
2109
+ "plugins": [
2110
+ "arkaos-kb@arkaos"
2111
+ ],
2112
+ "collision": false
2113
+ },
2114
+ "tdd-cycle": {
2115
+ "depts": [
2116
+ "dev"
2117
+ ],
2118
+ "curated": true,
2119
+ "plugins": [],
2120
+ "collision": false
2121
+ },
2122
+ "team-assess": {
2123
+ "depts": [
2124
+ "org"
2125
+ ],
2126
+ "curated": false,
2127
+ "plugins": [
2128
+ "arkaos-org@arkaos"
2129
+ ],
2130
+ "collision": false
2131
+ },
2132
+ "team-health": {
2133
+ "depts": [
2134
+ "leadership"
2135
+ ],
2136
+ "curated": false,
2137
+ "plugins": [
2138
+ "arkaos-leadership@arkaos"
2139
+ ],
2140
+ "collision": false
2141
+ },
2142
+ "tech-debt": {
2143
+ "depts": [
2144
+ "dev"
2145
+ ],
2146
+ "curated": false,
2147
+ "plugins": [
2148
+ "arkaos-dev@arkaos"
2149
+ ],
2150
+ "collision": false
2151
+ },
2152
+ "thumbnail-package": {
2153
+ "depts": [
2154
+ "content"
2155
+ ],
2156
+ "curated": false,
2157
+ "plugins": [
2158
+ "arkaos-content@arkaos"
2159
+ ],
2160
+ "collision": false
2161
+ },
2162
+ "trend-hunt": {
2163
+ "depts": [
2164
+ "content"
2165
+ ],
2166
+ "curated": false,
2167
+ "plugins": [
2168
+ "arkaos-content@arkaos"
2169
+ ],
2170
+ "collision": false
2171
+ },
2172
+ "unit-economics": {
2173
+ "depts": [
2174
+ "finance"
2175
+ ],
2176
+ "curated": true,
2177
+ "plugins": [],
2178
+ "collision": false
2179
+ },
2180
+ "update": {
2181
+ "depts": [
2182
+ "ops"
2183
+ ],
2184
+ "curated": false,
2185
+ "plugins": [
2186
+ "arkaos-ops@arkaos"
2187
+ ],
2188
+ "collision": false
2189
+ },
2190
+ "ux-audit": {
2191
+ "depts": [
2192
+ "brand"
2193
+ ],
2194
+ "curated": false,
2195
+ "plugins": [
2196
+ "arkaos-brand@arkaos"
2197
+ ],
2198
+ "collision": false
2199
+ },
2200
+ "validate-idea": {
2201
+ "depts": [
2202
+ "saas"
2203
+ ],
2204
+ "curated": false,
2205
+ "plugins": [
2206
+ "arkaos-saas@arkaos"
2207
+ ],
2208
+ "collision": false
2209
+ },
2210
+ "valuation-model": {
2211
+ "depts": [
2212
+ "finance"
2213
+ ],
2214
+ "curated": false,
2215
+ "plugins": [
2216
+ "arkaos-finance@arkaos"
2217
+ ],
2218
+ "collision": false
2219
+ },
2220
+ "video-produce": {
2221
+ "depts": [
2222
+ "content"
2223
+ ],
2224
+ "curated": false,
2225
+ "plugins": [
2226
+ "arkaos-content@arkaos"
2227
+ ],
2228
+ "collision": false
2229
+ },
2230
+ "video-setup": {
2231
+ "depts": [
2232
+ "content"
2233
+ ],
2234
+ "curated": false,
2235
+ "plugins": [
2236
+ "arkaos-content@arkaos"
2237
+ ],
2238
+ "collision": false
2239
+ },
2240
+ "viral-design": {
2241
+ "depts": [
2242
+ "content"
2243
+ ],
2244
+ "curated": false,
2245
+ "plugins": [
2246
+ "arkaos-content@arkaos"
2247
+ ],
2248
+ "collision": false
2249
+ },
2250
+ "voc-loop": {
2251
+ "depts": [
2252
+ "saas"
2253
+ ],
2254
+ "curated": false,
2255
+ "plugins": [
2256
+ "arkaos-saas@arkaos"
2257
+ ],
2258
+ "collision": false
2259
+ },
2260
+ "voice-guide": {
2261
+ "depts": [
2262
+ "brand"
2263
+ ],
2264
+ "curated": false,
2265
+ "plugins": [
2266
+ "arkaos-brand@arkaos"
2267
+ ],
2268
+ "collision": false
2269
+ },
2270
+ "webinar-funnel": {
2271
+ "depts": [
2272
+ "landing"
2273
+ ],
2274
+ "curated": false,
2275
+ "plugins": [
2276
+ "arkaos-landing@arkaos"
2277
+ ],
2278
+ "collision": false
2279
+ },
2280
+ "wireframe": {
2281
+ "depts": [
2282
+ "brand"
2283
+ ],
2284
+ "curated": false,
2285
+ "plugins": [
2286
+ "arkaos-brand@arkaos"
2287
+ ],
2288
+ "collision": false
2289
+ },
2290
+ "workflow-automate": {
2291
+ "depts": [
2292
+ "ops"
2293
+ ],
2294
+ "curated": true,
2295
+ "plugins": [],
2296
+ "collision": false
2297
+ },
2298
+ "write-as-persona": {
2299
+ "depts": [
2300
+ "kb"
2301
+ ],
2302
+ "curated": false,
2303
+ "plugins": [
2304
+ "arkaos-kb@arkaos"
2305
+ ],
2306
+ "collision": false
2307
+ },
2308
+ "youtube-strategy": {
2309
+ "depts": [
2310
+ "content"
2311
+ ],
2312
+ "curated": false,
2313
+ "plugins": [
2314
+ "arkaos-content@arkaos"
2315
+ ],
2316
+ "collision": false
2317
+ },
2318
+ "zapier-flow": {
2319
+ "depts": [
2320
+ "ops"
2321
+ ],
2322
+ "curated": false,
2323
+ "plugins": [
2324
+ "arkaos-ops@arkaos"
2325
+ ],
2326
+ "collision": false
2327
+ },
2328
+ "zettelkasten-process": {
2329
+ "depts": [
2330
+ "kb"
2331
+ ],
2332
+ "curated": true,
2333
+ "plugins": [],
2334
+ "collision": false
2335
+ }
2336
+ }
2337
+ }