hivehq 2.0.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 (883) hide show
  1. package/CHANGELOG.md +592 -0
  2. package/LICENSE +208 -0
  3. package/LICENSE.BSL +101 -0
  4. package/NOTICE +15 -0
  5. package/README.en.md +451 -0
  6. package/README.md +329 -0
  7. package/SECURITY.md +59 -0
  8. package/TRADEMARK.md +41 -0
  9. package/assets/hive-hero.png +0 -0
  10. package/assets/hive-team-view.png +0 -0
  11. package/assets/logo.png +0 -0
  12. package/assets/qq-group.jpg +0 -0
  13. package/dist/bin/team +7 -0
  14. package/dist/bin/team.cmd +3 -0
  15. package/dist/src/cli/hive-remote.d.ts +46 -0
  16. package/dist/src/cli/hive-remote.js +257 -0
  17. package/dist/src/cli/hive-update.d.ts +75 -0
  18. package/dist/src/cli/hive-update.js +215 -0
  19. package/dist/src/cli/hive.d.ts +78 -0
  20. package/dist/src/cli/hive.js +336 -0
  21. package/dist/src/cli/team.d.ts +38 -0
  22. package/dist/src/cli/team.js +762 -0
  23. package/dist/src/server/agent-command-resolver.d.ts +17 -0
  24. package/dist/src/server/agent-command-resolver.js +106 -0
  25. package/dist/src/server/agent-exit-classification.d.ts +6 -0
  26. package/dist/src/server/agent-exit-classification.js +6 -0
  27. package/dist/src/server/agent-launch-cache.d.ts +20 -0
  28. package/dist/src/server/agent-launch-cache.js +75 -0
  29. package/dist/src/server/agent-launch-resolver.d.ts +4 -0
  30. package/dist/src/server/agent-launch-resolver.js +38 -0
  31. package/dist/src/server/agent-manager-support.d.ts +36 -0
  32. package/dist/src/server/agent-manager-support.js +318 -0
  33. package/dist/src/server/agent-manager.d.ts +54 -0
  34. package/dist/src/server/agent-manager.js +104 -0
  35. package/dist/src/server/agent-run-bootstrap.d.ts +83 -0
  36. package/dist/src/server/agent-run-bootstrap.js +101 -0
  37. package/dist/src/server/agent-run-exit-handler.d.ts +8 -0
  38. package/dist/src/server/agent-run-exit-handler.js +32 -0
  39. package/dist/src/server/agent-run-start-context.d.ts +24 -0
  40. package/dist/src/server/agent-run-start-context.js +1 -0
  41. package/dist/src/server/agent-run-starter.d.ts +30 -0
  42. package/dist/src/server/agent-run-starter.js +155 -0
  43. package/dist/src/server/agent-run-store.d.ts +51 -0
  44. package/dist/src/server/agent-run-store.js +137 -0
  45. package/dist/src/server/agent-run-sync.d.ts +10 -0
  46. package/dist/src/server/agent-run-sync.js +32 -0
  47. package/dist/src/server/agent-runtime-active-run.d.ts +3 -0
  48. package/dist/src/server/agent-runtime-active-run.js +10 -0
  49. package/dist/src/server/agent-runtime-close.d.ts +5 -0
  50. package/dist/src/server/agent-runtime-close.js +36 -0
  51. package/dist/src/server/agent-runtime-contract.d.ts +48 -0
  52. package/dist/src/server/agent-runtime-contract.js +1 -0
  53. package/dist/src/server/agent-runtime-flow-adapter.d.ts +10 -0
  54. package/dist/src/server/agent-runtime-flow-adapter.js +14 -0
  55. package/dist/src/server/agent-runtime-list-runs.d.ts +3 -0
  56. package/dist/src/server/agent-runtime-list-runs.js +18 -0
  57. package/dist/src/server/agent-runtime-ports.d.ts +22 -0
  58. package/dist/src/server/agent-runtime-ports.js +1 -0
  59. package/dist/src/server/agent-runtime-stop-run.d.ts +4 -0
  60. package/dist/src/server/agent-runtime-stop-run.js +19 -0
  61. package/dist/src/server/agent-runtime-types.d.ts +5 -0
  62. package/dist/src/server/agent-runtime-types.js +1 -0
  63. package/dist/src/server/agent-runtime.d.ts +10 -0
  64. package/dist/src/server/agent-runtime.js +143 -0
  65. package/dist/src/server/agent-session-store.d.ts +7 -0
  66. package/dist/src/server/agent-session-store.js +45 -0
  67. package/dist/src/server/agent-startup-instructions.d.ts +20 -0
  68. package/dist/src/server/agent-startup-instructions.js +36 -0
  69. package/dist/src/server/agent-stdin-dispatcher.d.ts +52 -0
  70. package/dist/src/server/agent-stdin-dispatcher.js +224 -0
  71. package/dist/src/server/agent-tokens.d.ts +15 -0
  72. package/dist/src/server/agent-tokens.js +25 -0
  73. package/dist/src/server/app-state-store.d.ts +10 -0
  74. package/dist/src/server/app-state-store.js +12 -0
  75. package/dist/src/server/app.d.ts +20 -0
  76. package/dist/src/server/app.js +211 -0
  77. package/dist/src/server/claude-command-defaults.d.ts +1 -0
  78. package/dist/src/server/claude-command-defaults.js +5 -0
  79. package/dist/src/server/claude-session-coordinator.d.ts +10 -0
  80. package/dist/src/server/claude-session-coordinator.js +68 -0
  81. package/dist/src/server/claude-session-support.d.ts +1 -0
  82. package/dist/src/server/claude-session-support.js +1 -0
  83. package/dist/src/server/command-preset-defaults.d.ts +11 -0
  84. package/dist/src/server/command-preset-defaults.js +63 -0
  85. package/dist/src/server/command-preset-store.d.ts +49 -0
  86. package/dist/src/server/command-preset-store.js +83 -0
  87. package/dist/src/server/cron-util.d.ts +7 -0
  88. package/dist/src/server/cron-util.js +19 -0
  89. package/dist/src/server/dispatch-ledger-serializer.d.ts +15 -0
  90. package/dist/src/server/dispatch-ledger-serializer.js +14 -0
  91. package/dist/src/server/dispatch-ledger-store.d.ts +108 -0
  92. package/dist/src/server/dispatch-ledger-store.js +241 -0
  93. package/dist/src/server/env-sync-message.d.ts +9 -0
  94. package/dist/src/server/env-sync-message.js +29 -0
  95. package/dist/src/server/feature-flags.d.ts +42 -0
  96. package/dist/src/server/feature-flags.js +24 -0
  97. package/dist/src/server/fs-browse.d.ts +40 -0
  98. package/dist/src/server/fs-browse.js +306 -0
  99. package/dist/src/server/fs-pick-folder.d.ts +25 -0
  100. package/dist/src/server/fs-pick-folder.js +115 -0
  101. package/dist/src/server/fs-sandbox.d.ts +15 -0
  102. package/dist/src/server/fs-sandbox.js +56 -0
  103. package/dist/src/server/hive-team-guidance.d.ts +39 -0
  104. package/dist/src/server/hive-team-guidance.js +295 -0
  105. package/dist/src/server/http-errors.d.ts +22 -0
  106. package/dist/src/server/http-errors.js +44 -0
  107. package/dist/src/server/live-run-registry.d.ts +22 -0
  108. package/dist/src/server/live-run-registry.js +52 -0
  109. package/dist/src/server/local-request-guard.d.ts +3 -0
  110. package/dist/src/server/local-request-guard.js +41 -0
  111. package/dist/src/server/machine-name.d.ts +2 -0
  112. package/dist/src/server/machine-name.js +13 -0
  113. package/dist/src/server/marketplace-store.d.ts +38 -0
  114. package/dist/src/server/marketplace-store.js +85 -0
  115. package/dist/src/server/message-log-store.d.ts +51 -0
  116. package/dist/src/server/message-log-store.js +90 -0
  117. package/dist/src/server/open-target-commands.d.ts +54 -0
  118. package/dist/src/server/open-target-commands.js +204 -0
  119. package/dist/src/server/orchestrator-autostart.d.ts +42 -0
  120. package/dist/src/server/orchestrator-autostart.js +114 -0
  121. package/dist/src/server/orchestrator-launch.d.ts +24 -0
  122. package/dist/src/server/orchestrator-launch.js +71 -0
  123. package/dist/src/server/package-version.d.ts +17 -0
  124. package/dist/src/server/package-version.js +32 -0
  125. package/dist/src/server/path-canonicalization.d.ts +3 -0
  126. package/dist/src/server/path-canonicalization.js +29 -0
  127. package/dist/src/server/platform-path.d.ts +4 -0
  128. package/dist/src/server/platform-path.js +26 -0
  129. package/dist/src/server/post-start-input-writer.d.ts +6 -0
  130. package/dist/src/server/post-start-input-writer.js +242 -0
  131. package/dist/src/server/preset-launch-support.d.ts +6 -0
  132. package/dist/src/server/preset-launch-support.js +98 -0
  133. package/dist/src/server/pty-output-bus.d.ts +8 -0
  134. package/dist/src/server/pty-output-bus.js +32 -0
  135. package/dist/src/server/recovery-summary.d.ts +15 -0
  136. package/dist/src/server/recovery-summary.js +92 -0
  137. package/dist/src/server/remote-audit-store.d.ts +51 -0
  138. package/dist/src/server/remote-audit-store.js +108 -0
  139. package/dist/src/server/remote-config-keys.d.ts +17 -0
  140. package/dist/src/server/remote-config-keys.js +27 -0
  141. package/dist/src/server/remote-control-constants.d.ts +30 -0
  142. package/dist/src/server/remote-control-constants.js +29 -0
  143. package/dist/src/server/remote-device-session.d.ts +40 -0
  144. package/dist/src/server/remote-device-session.js +22 -0
  145. package/dist/src/server/remote-device-store.d.ts +36 -0
  146. package/dist/src/server/remote-device-store.js +67 -0
  147. package/dist/src/server/remote-frame-bridge.d.ts +102 -0
  148. package/dist/src/server/remote-frame-bridge.js +791 -0
  149. package/dist/src/server/remote-gateway-client.d.ts +14 -0
  150. package/dist/src/server/remote-gateway-client.js +36 -0
  151. package/dist/src/server/remote-loopback-auth.d.ts +6 -0
  152. package/dist/src/server/remote-loopback-auth.js +112 -0
  153. package/dist/src/server/remote-pairing-tunnel.d.ts +59 -0
  154. package/dist/src/server/remote-pairing-tunnel.js +146 -0
  155. package/dist/src/server/remote-pairing.d.ts +58 -0
  156. package/dist/src/server/remote-pairing.js +237 -0
  157. package/dist/src/server/remote-tunnel.d.ts +113 -0
  158. package/dist/src/server/remote-tunnel.js +514 -0
  159. package/dist/src/server/report-outbox-store.d.ts +36 -0
  160. package/dist/src/server/report-outbox-store.js +33 -0
  161. package/dist/src/server/restart-policy-support.d.ts +30 -0
  162. package/dist/src/server/restart-policy-support.js +21 -0
  163. package/dist/src/server/restart-policy.d.ts +18 -0
  164. package/dist/src/server/restart-policy.js +77 -0
  165. package/dist/src/server/role-template-store.d.ts +45 -0
  166. package/dist/src/server/role-template-store.js +76 -0
  167. package/dist/src/server/role-templates.d.ts +7 -0
  168. package/dist/src/server/role-templates.js +54 -0
  169. package/dist/src/server/route-helpers.d.ts +9 -0
  170. package/dist/src/server/route-helpers.js +61 -0
  171. package/dist/src/server/route-types.d.ts +121 -0
  172. package/dist/src/server/route-types.js +1 -0
  173. package/dist/src/server/routes-dispatches.d.ts +2 -0
  174. package/dist/src/server/routes-dispatches.js +54 -0
  175. package/dist/src/server/routes-fs.d.ts +2 -0
  176. package/dist/src/server/routes-fs.js +24 -0
  177. package/dist/src/server/routes-marketplace.d.ts +2 -0
  178. package/dist/src/server/routes-marketplace.js +54 -0
  179. package/dist/src/server/routes-open-workspace.d.ts +2 -0
  180. package/dist/src/server/routes-open-workspace.js +47 -0
  181. package/dist/src/server/routes-remote.d.ts +2 -0
  182. package/dist/src/server/routes-remote.js +166 -0
  183. package/dist/src/server/routes-runtime.d.ts +2 -0
  184. package/dist/src/server/routes-runtime.js +79 -0
  185. package/dist/src/server/routes-settings.d.ts +2 -0
  186. package/dist/src/server/routes-settings.js +213 -0
  187. package/dist/src/server/routes-tasks.d.ts +2 -0
  188. package/dist/src/server/routes-tasks.js +47 -0
  189. package/dist/src/server/routes-team-memory.d.ts +2 -0
  190. package/dist/src/server/routes-team-memory.js +154 -0
  191. package/dist/src/server/routes-team-recall.d.ts +2 -0
  192. package/dist/src/server/routes-team-recall.js +119 -0
  193. package/dist/src/server/routes-team.d.ts +2 -0
  194. package/dist/src/server/routes-team.js +351 -0
  195. package/dist/src/server/routes-ui.d.ts +2 -0
  196. package/dist/src/server/routes-ui.js +17 -0
  197. package/dist/src/server/routes-version.d.ts +2 -0
  198. package/dist/src/server/routes-version.js +6 -0
  199. package/dist/src/server/routes-workflow-schedules.d.ts +2 -0
  200. package/dist/src/server/routes-workflow-schedules.js +58 -0
  201. package/dist/src/server/routes-workflows.d.ts +2 -0
  202. package/dist/src/server/routes-workflows.js +83 -0
  203. package/dist/src/server/routes-workspace-memory-dreams.d.ts +2 -0
  204. package/dist/src/server/routes-workspace-memory-dreams.js +105 -0
  205. package/dist/src/server/routes-workspace-memory.d.ts +2 -0
  206. package/dist/src/server/routes-workspace-memory.js +215 -0
  207. package/dist/src/server/routes-workspaces.d.ts +2 -0
  208. package/dist/src/server/routes-workspaces.js +177 -0
  209. package/dist/src/server/routes.d.ts +6 -0
  210. package/dist/src/server/routes.js +55 -0
  211. package/dist/src/server/runtime-database.d.ts +3 -0
  212. package/dist/src/server/runtime-database.js +41 -0
  213. package/dist/src/server/runtime-message-builders.d.ts +7 -0
  214. package/dist/src/server/runtime-message-builders.js +60 -0
  215. package/dist/src/server/runtime-restart-policy.d.ts +18 -0
  216. package/dist/src/server/runtime-restart-policy.js +12 -0
  217. package/dist/src/server/runtime-store-contract.d.ts +162 -0
  218. package/dist/src/server/runtime-store-contract.js +1 -0
  219. package/dist/src/server/runtime-store-dream.d.ts +23 -0
  220. package/dist/src/server/runtime-store-dream.js +16 -0
  221. package/dist/src/server/runtime-store-helpers.d.ts +115 -0
  222. package/dist/src/server/runtime-store-helpers.js +411 -0
  223. package/dist/src/server/runtime-store-memory.d.ts +33 -0
  224. package/dist/src/server/runtime-store-memory.js +37 -0
  225. package/dist/src/server/runtime-store-remote.d.ts +5 -0
  226. package/dist/src/server/runtime-store-remote.js +45 -0
  227. package/dist/src/server/runtime-store-workflows.d.ts +6 -0
  228. package/dist/src/server/runtime-store-workflows.js +108 -0
  229. package/dist/src/server/runtime-store.d.ts +4 -0
  230. package/dist/src/server/runtime-store.js +165 -0
  231. package/dist/src/server/session-capture-claude.d.ts +34 -0
  232. package/dist/src/server/session-capture-claude.js +103 -0
  233. package/dist/src/server/session-capture-codex.d.ts +6 -0
  234. package/dist/src/server/session-capture-codex.js +108 -0
  235. package/dist/src/server/session-capture-gemini.d.ts +5 -0
  236. package/dist/src/server/session-capture-gemini.js +81 -0
  237. package/dist/src/server/session-capture-opencode.d.ts +22 -0
  238. package/dist/src/server/session-capture-opencode.js +75 -0
  239. package/dist/src/server/session-capture.d.ts +77 -0
  240. package/dist/src/server/session-capture.js +123 -0
  241. package/dist/src/server/settings-store.d.ts +22 -0
  242. package/dist/src/server/settings-store.js +22 -0
  243. package/dist/src/server/sqlite-schema-v10.d.ts +2 -0
  244. package/dist/src/server/sqlite-schema-v10.js +13 -0
  245. package/dist/src/server/sqlite-schema-v11.d.ts +2 -0
  246. package/dist/src/server/sqlite-schema-v11.js +10 -0
  247. package/dist/src/server/sqlite-schema-v12.d.ts +2 -0
  248. package/dist/src/server/sqlite-schema-v12.js +21 -0
  249. package/dist/src/server/sqlite-schema-v13.d.ts +2 -0
  250. package/dist/src/server/sqlite-schema-v13.js +4 -0
  251. package/dist/src/server/sqlite-schema-v14.d.ts +2 -0
  252. package/dist/src/server/sqlite-schema-v14.js +84 -0
  253. package/dist/src/server/sqlite-schema-v15.d.ts +2 -0
  254. package/dist/src/server/sqlite-schema-v15.js +73 -0
  255. package/dist/src/server/sqlite-schema-v16.d.ts +2 -0
  256. package/dist/src/server/sqlite-schema-v16.js +6 -0
  257. package/dist/src/server/sqlite-schema-v17.d.ts +2 -0
  258. package/dist/src/server/sqlite-schema-v17.js +15 -0
  259. package/dist/src/server/sqlite-schema-v18.d.ts +2 -0
  260. package/dist/src/server/sqlite-schema-v18.js +6 -0
  261. package/dist/src/server/sqlite-schema-v19.d.ts +2 -0
  262. package/dist/src/server/sqlite-schema-v19.js +17 -0
  263. package/dist/src/server/sqlite-schema-v20.d.ts +2 -0
  264. package/dist/src/server/sqlite-schema-v20.js +20 -0
  265. package/dist/src/server/sqlite-schema-v21.d.ts +2 -0
  266. package/dist/src/server/sqlite-schema-v21.js +20 -0
  267. package/dist/src/server/sqlite-schema-v22.d.ts +2 -0
  268. package/dist/src/server/sqlite-schema-v22.js +27 -0
  269. package/dist/src/server/sqlite-schema-v23.d.ts +2 -0
  270. package/dist/src/server/sqlite-schema-v23.js +43 -0
  271. package/dist/src/server/sqlite-schema-v24.d.ts +2 -0
  272. package/dist/src/server/sqlite-schema-v24.js +34 -0
  273. package/dist/src/server/sqlite-schema-v25.d.ts +2 -0
  274. package/dist/src/server/sqlite-schema-v25.js +127 -0
  275. package/dist/src/server/sqlite-schema-v26.d.ts +2 -0
  276. package/dist/src/server/sqlite-schema-v26.js +56 -0
  277. package/dist/src/server/sqlite-schema-v27.d.ts +6 -0
  278. package/dist/src/server/sqlite-schema-v27.js +92 -0
  279. package/dist/src/server/sqlite-schema-v28.d.ts +2 -0
  280. package/dist/src/server/sqlite-schema-v28.js +19 -0
  281. package/dist/src/server/sqlite-schema-v5.d.ts +2 -0
  282. package/dist/src/server/sqlite-schema-v5.js +61 -0
  283. package/dist/src/server/sqlite-schema-v7.d.ts +2 -0
  284. package/dist/src/server/sqlite-schema-v7.js +70 -0
  285. package/dist/src/server/sqlite-schema-v8.d.ts +2 -0
  286. package/dist/src/server/sqlite-schema-v8.js +6 -0
  287. package/dist/src/server/sqlite-schema-v9.d.ts +2 -0
  288. package/dist/src/server/sqlite-schema-v9.js +6 -0
  289. package/dist/src/server/sqlite-schema.d.ts +3 -0
  290. package/dist/src/server/sqlite-schema.js +353 -0
  291. package/dist/src/server/startup-command-parser.d.ts +20 -0
  292. package/dist/src/server/startup-command-parser.js +72 -0
  293. package/dist/src/server/system-message.d.ts +8 -0
  294. package/dist/src/server/system-message.js +8 -0
  295. package/dist/src/server/task-deps.d.ts +32 -0
  296. package/dist/src/server/task-deps.js +40 -0
  297. package/dist/src/server/tasks-file-watcher.d.ts +47 -0
  298. package/dist/src/server/tasks-file-watcher.js +200 -0
  299. package/dist/src/server/tasks-file.d.ts +23 -0
  300. package/dist/src/server/tasks-file.js +101 -0
  301. package/dist/src/server/tasks-websocket-server.d.ts +8 -0
  302. package/dist/src/server/tasks-websocket-server.js +95 -0
  303. package/dist/src/server/team-authz.d.ts +13 -0
  304. package/dist/src/server/team-authz.js +53 -0
  305. package/dist/src/server/team-autostaff.d.ts +16 -0
  306. package/dist/src/server/team-autostaff.js +16 -0
  307. package/dist/src/server/team-list-enrichment.d.ts +22 -0
  308. package/dist/src/server/team-list-enrichment.js +40 -0
  309. package/dist/src/server/team-list-serializer.d.ts +2 -0
  310. package/dist/src/server/team-list-serializer.js +11 -0
  311. package/dist/src/server/team-memory-digest.d.ts +52 -0
  312. package/dist/src/server/team-memory-digest.js +200 -0
  313. package/dist/src/server/team-memory-dream-applier.d.ts +5 -0
  314. package/dist/src/server/team-memory-dream-applier.js +234 -0
  315. package/dist/src/server/team-memory-dream-http-serializers.d.ts +13 -0
  316. package/dist/src/server/team-memory-dream-http-serializers.js +12 -0
  317. package/dist/src/server/team-memory-dream-ops.d.ts +40 -0
  318. package/dist/src/server/team-memory-dream-ops.js +153 -0
  319. package/dist/src/server/team-memory-dream-reverter.d.ts +22 -0
  320. package/dist/src/server/team-memory-dream-reverter.js +221 -0
  321. package/dist/src/server/team-memory-dream-run-store.d.ts +23 -0
  322. package/dist/src/server/team-memory-dream-run-store.js +211 -0
  323. package/dist/src/server/team-memory-dream-runner.d.ts +37 -0
  324. package/dist/src/server/team-memory-dream-runner.js +178 -0
  325. package/dist/src/server/team-memory-dream-scheduler.d.ts +32 -0
  326. package/dist/src/server/team-memory-dream-scheduler.js +115 -0
  327. package/dist/src/server/team-memory-dream-store.d.ts +19 -0
  328. package/dist/src/server/team-memory-dream-store.js +16 -0
  329. package/dist/src/server/team-memory-dream-types.d.ts +104 -0
  330. package/dist/src/server/team-memory-dream-types.js +23 -0
  331. package/dist/src/server/team-memory-export.d.ts +22 -0
  332. package/dist/src/server/team-memory-export.js +220 -0
  333. package/dist/src/server/team-memory-feature.d.ts +12 -0
  334. package/dist/src/server/team-memory-feature.js +12 -0
  335. package/dist/src/server/team-memory-http-serializers.d.ts +102 -0
  336. package/dist/src/server/team-memory-http-serializers.js +46 -0
  337. package/dist/src/server/team-memory-injection.d.ts +31 -0
  338. package/dist/src/server/team-memory-injection.js +49 -0
  339. package/dist/src/server/team-memory-store.d.ts +116 -0
  340. package/dist/src/server/team-memory-store.js +513 -0
  341. package/dist/src/server/team-operations.d.ts +102 -0
  342. package/dist/src/server/team-operations.js +387 -0
  343. package/dist/src/server/team-recall-store.d.ts +38 -0
  344. package/dist/src/server/team-recall-store.js +205 -0
  345. package/dist/src/server/terminal-flow-control.d.ts +19 -0
  346. package/dist/src/server/terminal-flow-control.js +116 -0
  347. package/dist/src/server/terminal-input-profile.d.ts +10 -0
  348. package/dist/src/server/terminal-input-profile.js +9 -0
  349. package/dist/src/server/terminal-protocol.d.ts +29 -0
  350. package/dist/src/server/terminal-protocol.js +47 -0
  351. package/dist/src/server/terminal-state-mirror.d.ts +21 -0
  352. package/dist/src/server/terminal-state-mirror.js +67 -0
  353. package/dist/src/server/terminal-stream-hub.d.ts +9 -0
  354. package/dist/src/server/terminal-stream-hub.js +192 -0
  355. package/dist/src/server/terminal-ws-server.d.ts +6 -0
  356. package/dist/src/server/terminal-ws-server.js +115 -0
  357. package/dist/src/server/ui-auth-helpers.d.ts +4 -0
  358. package/dist/src/server/ui-auth-helpers.js +28 -0
  359. package/dist/src/server/ui-auth.d.ts +8 -0
  360. package/dist/src/server/ui-auth.js +32 -0
  361. package/dist/src/server/version-service.d.ts +16 -0
  362. package/dist/src/server/version-service.js +72 -0
  363. package/dist/src/server/webhook-notifier.d.ts +34 -0
  364. package/dist/src/server/webhook-notifier.js +47 -0
  365. package/dist/src/server/websocket-upgrade-safety.d.ts +10 -0
  366. package/dist/src/server/websocket-upgrade-safety.js +35 -0
  367. package/dist/src/server/windows-command-line.d.ts +3 -0
  368. package/dist/src/server/windows-command-line.js +9 -0
  369. package/dist/src/server/windows-filename.d.ts +2 -0
  370. package/dist/src/server/windows-filename.js +33 -0
  371. package/dist/src/server/worker-output-tracker.d.ts +14 -0
  372. package/dist/src/server/worker-output-tracker.js +50 -0
  373. package/dist/src/server/workflow-cli-policy.d.ts +60 -0
  374. package/dist/src/server/workflow-cli-policy.js +110 -0
  375. package/dist/src/server/workflow-dispatch-awaiter.d.ts +12 -0
  376. package/dist/src/server/workflow-dispatch-awaiter.js +80 -0
  377. package/dist/src/server/workflow-feature.d.ts +15 -0
  378. package/dist/src/server/workflow-feature.js +15 -0
  379. package/dist/src/server/workflow-http-serializers.d.ts +64 -0
  380. package/dist/src/server/workflow-http-serializers.js +58 -0
  381. package/dist/src/server/workflow-output-schema.d.ts +18 -0
  382. package/dist/src/server/workflow-output-schema.js +41 -0
  383. package/dist/src/server/workflow-run-log-store.d.ts +19 -0
  384. package/dist/src/server/workflow-run-log-store.js +45 -0
  385. package/dist/src/server/workflow-run-store.d.ts +50 -0
  386. package/dist/src/server/workflow-run-store.js +103 -0
  387. package/dist/src/server/workflow-runner.d.ts +147 -0
  388. package/dist/src/server/workflow-runner.js +411 -0
  389. package/dist/src/server/workflow-schedule-create.d.ts +14 -0
  390. package/dist/src/server/workflow-schedule-create.js +41 -0
  391. package/dist/src/server/workflow-schedule-store.d.ts +43 -0
  392. package/dist/src/server/workflow-schedule-store.js +112 -0
  393. package/dist/src/server/workflow-scheduler.d.ts +36 -0
  394. package/dist/src/server/workflow-scheduler.js +97 -0
  395. package/dist/src/server/workflow-script-loader.d.ts +34 -0
  396. package/dist/src/server/workflow-script-loader.js +106 -0
  397. package/dist/src/server/workspace-path-validation.d.ts +1 -0
  398. package/dist/src/server/workspace-path-validation.js +42 -0
  399. package/dist/src/server/workspace-shell-runtime.d.ts +35 -0
  400. package/dist/src/server/workspace-shell-runtime.js +228 -0
  401. package/dist/src/server/workspace-store-contract.d.ts +32 -0
  402. package/dist/src/server/workspace-store-contract.js +1 -0
  403. package/dist/src/server/workspace-store-hydration.d.ts +5 -0
  404. package/dist/src/server/workspace-store-hydration.js +76 -0
  405. package/dist/src/server/workspace-store-mutations.d.ts +14 -0
  406. package/dist/src/server/workspace-store-mutations.js +48 -0
  407. package/dist/src/server/workspace-store-support.d.ts +33 -0
  408. package/dist/src/server/workspace-store-support.js +36 -0
  409. package/dist/src/server/workspace-store.d.ts +5 -0
  410. package/dist/src/server/workspace-store.js +153 -0
  411. package/dist/src/shared/fs-browse.d.ts +1 -0
  412. package/dist/src/shared/fs-browse.js +1 -0
  413. package/dist/src/shared/open-targets.d.ts +20 -0
  414. package/dist/src/shared/open-targets.js +36 -0
  415. package/dist/src/shared/path-input.d.ts +12 -0
  416. package/dist/src/shared/path-input.js +22 -0
  417. package/dist/src/shared/remote-bridge-routing.d.ts +19 -0
  418. package/dist/src/shared/remote-bridge-routing.js +141 -0
  419. package/dist/src/shared/remote-crypto.d.ts +138 -0
  420. package/dist/src/shared/remote-crypto.js +427 -0
  421. package/dist/src/shared/remote-pairing-code.d.ts +7 -0
  422. package/dist/src/shared/remote-pairing-code.js +47 -0
  423. package/dist/src/shared/remote-protocol.d.ts +160 -0
  424. package/dist/src/shared/remote-protocol.js +526 -0
  425. package/dist/src/shared/team-memory.d.ts +11 -0
  426. package/dist/src/shared/team-memory.js +10 -0
  427. package/dist/src/shared/team-recall.d.ts +1 -0
  428. package/dist/src/shared/team-recall.js +1 -0
  429. package/dist/src/shared/types.d.ts +66 -0
  430. package/dist/src/shared/types.js +1 -0
  431. package/dist/vendor/marketplace/en/LICENSE +21 -0
  432. package/dist/vendor/marketplace/en/SOURCES.md +12 -0
  433. package/dist/vendor/marketplace/en/academic/academic-anthropologist.md +125 -0
  434. package/dist/vendor/marketplace/en/academic/academic-geographer.md +127 -0
  435. package/dist/vendor/marketplace/en/academic/academic-historian.md +123 -0
  436. package/dist/vendor/marketplace/en/academic/academic-narratologist.md +118 -0
  437. package/dist/vendor/marketplace/en/academic/academic-psychologist.md +118 -0
  438. package/dist/vendor/marketplace/en/design/design-brand-guardian.md +322 -0
  439. package/dist/vendor/marketplace/en/design/design-image-prompt-engineer.md +236 -0
  440. package/dist/vendor/marketplace/en/design/design-inclusive-visuals-specialist.md +71 -0
  441. package/dist/vendor/marketplace/en/design/design-ui-designer.md +383 -0
  442. package/dist/vendor/marketplace/en/design/design-ux-architect.md +469 -0
  443. package/dist/vendor/marketplace/en/design/design-ux-researcher.md +329 -0
  444. package/dist/vendor/marketplace/en/design/design-visual-storyteller.md +149 -0
  445. package/dist/vendor/marketplace/en/design/design-whimsy-injector.md +438 -0
  446. package/dist/vendor/marketplace/en/engineering/engineering-ai-data-remediation-engineer.md +211 -0
  447. package/dist/vendor/marketplace/en/engineering/engineering-ai-engineer.md +146 -0
  448. package/dist/vendor/marketplace/en/engineering/engineering-autonomous-optimization-architect.md +107 -0
  449. package/dist/vendor/marketplace/en/engineering/engineering-backend-architect.md +235 -0
  450. package/dist/vendor/marketplace/en/engineering/engineering-cms-developer.md +536 -0
  451. package/dist/vendor/marketplace/en/engineering/engineering-code-reviewer.md +76 -0
  452. package/dist/vendor/marketplace/en/engineering/engineering-codebase-onboarding-engineer.md +173 -0
  453. package/dist/vendor/marketplace/en/engineering/engineering-data-engineer.md +306 -0
  454. package/dist/vendor/marketplace/en/engineering/engineering-database-optimizer.md +176 -0
  455. package/dist/vendor/marketplace/en/engineering/engineering-devops-automator.md +376 -0
  456. package/dist/vendor/marketplace/en/engineering/engineering-email-intelligence-engineer.md +353 -0
  457. package/dist/vendor/marketplace/en/engineering/engineering-embedded-firmware-engineer.md +173 -0
  458. package/dist/vendor/marketplace/en/engineering/engineering-feishu-integration-developer.md +598 -0
  459. package/dist/vendor/marketplace/en/engineering/engineering-filament-optimization-specialist.md +283 -0
  460. package/dist/vendor/marketplace/en/engineering/engineering-frontend-developer.md +225 -0
  461. package/dist/vendor/marketplace/en/engineering/engineering-git-workflow-master.md +84 -0
  462. package/dist/vendor/marketplace/en/engineering/engineering-incident-response-commander.md +444 -0
  463. package/dist/vendor/marketplace/en/engineering/engineering-minimal-change-engineer.md +207 -0
  464. package/dist/vendor/marketplace/en/engineering/engineering-mobile-app-builder.md +493 -0
  465. package/dist/vendor/marketplace/en/engineering/engineering-rapid-prototyper.md +462 -0
  466. package/dist/vendor/marketplace/en/engineering/engineering-security-engineer.md +304 -0
  467. package/dist/vendor/marketplace/en/engineering/engineering-senior-developer.md +176 -0
  468. package/dist/vendor/marketplace/en/engineering/engineering-software-architect.md +81 -0
  469. package/dist/vendor/marketplace/en/engineering/engineering-solidity-smart-contract-engineer.md +522 -0
  470. package/dist/vendor/marketplace/en/engineering/engineering-sre.md +90 -0
  471. package/dist/vendor/marketplace/en/engineering/engineering-technical-writer.md +393 -0
  472. package/dist/vendor/marketplace/en/engineering/engineering-threat-detection-engineer.md +534 -0
  473. package/dist/vendor/marketplace/en/engineering/engineering-voice-ai-integration-engineer.md +561 -0
  474. package/dist/vendor/marketplace/en/engineering/engineering-wechat-mini-program-developer.md +350 -0
  475. package/dist/vendor/marketplace/en/finance/finance-bookkeeper-controller.md +260 -0
  476. package/dist/vendor/marketplace/en/finance/finance-financial-analyst.md +234 -0
  477. package/dist/vendor/marketplace/en/finance/finance-fpa-analyst.md +263 -0
  478. package/dist/vendor/marketplace/en/finance/finance-investment-researcher.md +272 -0
  479. package/dist/vendor/marketplace/en/finance/finance-tax-strategist.md +239 -0
  480. package/dist/vendor/marketplace/en/game-development/blender/blender-addon-engineer.md +234 -0
  481. package/dist/vendor/marketplace/en/game-development/game-audio-engineer.md +264 -0
  482. package/dist/vendor/marketplace/en/game-development/game-designer.md +167 -0
  483. package/dist/vendor/marketplace/en/game-development/godot/godot-gameplay-scripter.md +334 -0
  484. package/dist/vendor/marketplace/en/game-development/godot/godot-multiplayer-engineer.md +297 -0
  485. package/dist/vendor/marketplace/en/game-development/godot/godot-shader-developer.md +266 -0
  486. package/dist/vendor/marketplace/en/game-development/level-designer.md +208 -0
  487. package/dist/vendor/marketplace/en/game-development/narrative-designer.md +243 -0
  488. package/dist/vendor/marketplace/en/game-development/roblox-studio/roblox-avatar-creator.md +297 -0
  489. package/dist/vendor/marketplace/en/game-development/roblox-studio/roblox-experience-designer.md +305 -0
  490. package/dist/vendor/marketplace/en/game-development/roblox-studio/roblox-systems-scripter.md +325 -0
  491. package/dist/vendor/marketplace/en/game-development/technical-artist.md +229 -0
  492. package/dist/vendor/marketplace/en/game-development/unity/unity-architect.md +271 -0
  493. package/dist/vendor/marketplace/en/game-development/unity/unity-editor-tool-developer.md +310 -0
  494. package/dist/vendor/marketplace/en/game-development/unity/unity-multiplayer-engineer.md +321 -0
  495. package/dist/vendor/marketplace/en/game-development/unity/unity-shader-graph-artist.md +269 -0
  496. package/dist/vendor/marketplace/en/game-development/unreal-engine/unreal-multiplayer-architect.md +313 -0
  497. package/dist/vendor/marketplace/en/game-development/unreal-engine/unreal-systems-engineer.md +310 -0
  498. package/dist/vendor/marketplace/en/game-development/unreal-engine/unreal-technical-artist.md +256 -0
  499. package/dist/vendor/marketplace/en/game-development/unreal-engine/unreal-world-builder.md +273 -0
  500. package/dist/vendor/marketplace/en/integrations/mcp-memory/backend-architect-with-memory.md +247 -0
  501. package/dist/vendor/marketplace/en/manifest.json +1869 -0
  502. package/dist/vendor/marketplace/en/marketing/marketing-agentic-search-optimizer.md +311 -0
  503. package/dist/vendor/marketplace/en/marketing/marketing-ai-citation-strategist.md +170 -0
  504. package/dist/vendor/marketplace/en/marketing/marketing-app-store-optimizer.md +321 -0
  505. package/dist/vendor/marketplace/en/marketing/marketing-baidu-seo-specialist.md +226 -0
  506. package/dist/vendor/marketplace/en/marketing/marketing-bilibili-content-strategist.md +199 -0
  507. package/dist/vendor/marketplace/en/marketing/marketing-book-co-author.md +110 -0
  508. package/dist/vendor/marketplace/en/marketing/marketing-carousel-growth-engine.md +199 -0
  509. package/dist/vendor/marketplace/en/marketing/marketing-china-ecommerce-operator.md +283 -0
  510. package/dist/vendor/marketplace/en/marketing/marketing-china-market-localization-strategist.md +283 -0
  511. package/dist/vendor/marketplace/en/marketing/marketing-content-creator.md +54 -0
  512. package/dist/vendor/marketplace/en/marketing/marketing-cross-border-ecommerce.md +259 -0
  513. package/dist/vendor/marketplace/en/marketing/marketing-douyin-strategist.md +149 -0
  514. package/dist/vendor/marketplace/en/marketing/marketing-growth-hacker.md +54 -0
  515. package/dist/vendor/marketplace/en/marketing/marketing-instagram-curator.md +113 -0
  516. package/dist/vendor/marketplace/en/marketing/marketing-kuaishou-strategist.md +223 -0
  517. package/dist/vendor/marketplace/en/marketing/marketing-linkedin-content-creator.md +214 -0
  518. package/dist/vendor/marketplace/en/marketing/marketing-livestream-commerce-coach.md +305 -0
  519. package/dist/vendor/marketplace/en/marketing/marketing-podcast-strategist.md +277 -0
  520. package/dist/vendor/marketplace/en/marketing/marketing-private-domain-operator.md +308 -0
  521. package/dist/vendor/marketplace/en/marketing/marketing-reddit-community-builder.md +123 -0
  522. package/dist/vendor/marketplace/en/marketing/marketing-seo-specialist.md +321 -0
  523. package/dist/vendor/marketplace/en/marketing/marketing-short-video-editing-coach.md +412 -0
  524. package/dist/vendor/marketplace/en/marketing/marketing-social-media-strategist.md +125 -0
  525. package/dist/vendor/marketplace/en/marketing/marketing-tiktok-strategist.md +125 -0
  526. package/dist/vendor/marketplace/en/marketing/marketing-twitter-engager.md +126 -0
  527. package/dist/vendor/marketplace/en/marketing/marketing-video-optimization-specialist.md +119 -0
  528. package/dist/vendor/marketplace/en/marketing/marketing-wechat-official-account.md +145 -0
  529. package/dist/vendor/marketplace/en/marketing/marketing-weibo-strategist.md +240 -0
  530. package/dist/vendor/marketplace/en/marketing/marketing-xiaohongshu-specialist.md +138 -0
  531. package/dist/vendor/marketplace/en/marketing/marketing-zhihu-strategist.md +162 -0
  532. package/dist/vendor/marketplace/en/paid-media/paid-media-auditor.md +71 -0
  533. package/dist/vendor/marketplace/en/paid-media/paid-media-creative-strategist.md +71 -0
  534. package/dist/vendor/marketplace/en/paid-media/paid-media-paid-social-strategist.md +71 -0
  535. package/dist/vendor/marketplace/en/paid-media/paid-media-ppc-strategist.md +71 -0
  536. package/dist/vendor/marketplace/en/paid-media/paid-media-programmatic-buyer.md +71 -0
  537. package/dist/vendor/marketplace/en/paid-media/paid-media-search-query-analyst.md +71 -0
  538. package/dist/vendor/marketplace/en/paid-media/paid-media-tracking-specialist.md +71 -0
  539. package/dist/vendor/marketplace/en/product/product-behavioral-nudge-engine.md +80 -0
  540. package/dist/vendor/marketplace/en/product/product-feedback-synthesizer.md +119 -0
  541. package/dist/vendor/marketplace/en/product/product-manager.md +469 -0
  542. package/dist/vendor/marketplace/en/product/product-sprint-prioritizer.md +154 -0
  543. package/dist/vendor/marketplace/en/product/product-trend-researcher.md +159 -0
  544. package/dist/vendor/marketplace/en/project-management/project-management-experiment-tracker.md +198 -0
  545. package/dist/vendor/marketplace/en/project-management/project-management-jira-workflow-steward.md +230 -0
  546. package/dist/vendor/marketplace/en/project-management/project-management-project-shepherd.md +194 -0
  547. package/dist/vendor/marketplace/en/project-management/project-management-studio-operations.md +200 -0
  548. package/dist/vendor/marketplace/en/project-management/project-management-studio-producer.md +203 -0
  549. package/dist/vendor/marketplace/en/project-management/project-manager-senior.md +135 -0
  550. package/dist/vendor/marketplace/en/sales/sales-account-strategist.md +227 -0
  551. package/dist/vendor/marketplace/en/sales/sales-coach.md +271 -0
  552. package/dist/vendor/marketplace/en/sales/sales-deal-strategist.md +180 -0
  553. package/dist/vendor/marketplace/en/sales/sales-discovery-coach.md +225 -0
  554. package/dist/vendor/marketplace/en/sales/sales-engineer.md +182 -0
  555. package/dist/vendor/marketplace/en/sales/sales-outbound-strategist.md +201 -0
  556. package/dist/vendor/marketplace/en/sales/sales-pipeline-analyst.md +267 -0
  557. package/dist/vendor/marketplace/en/sales/sales-proposal-strategist.md +217 -0
  558. package/dist/vendor/marketplace/en/spatial-computing/macos-spatial-metal-engineer.md +337 -0
  559. package/dist/vendor/marketplace/en/spatial-computing/terminal-integration-specialist.md +70 -0
  560. package/dist/vendor/marketplace/en/spatial-computing/visionos-spatial-engineer.md +54 -0
  561. package/dist/vendor/marketplace/en/spatial-computing/xr-cockpit-interaction-specialist.md +32 -0
  562. package/dist/vendor/marketplace/en/spatial-computing/xr-immersive-developer.md +32 -0
  563. package/dist/vendor/marketplace/en/spatial-computing/xr-interface-architect.md +32 -0
  564. package/dist/vendor/marketplace/en/specialized/accounts-payable-agent.md +185 -0
  565. package/dist/vendor/marketplace/en/specialized/agentic-identity-trust.md +387 -0
  566. package/dist/vendor/marketplace/en/specialized/agents-orchestrator.md +367 -0
  567. package/dist/vendor/marketplace/en/specialized/automation-governance-architect.md +216 -0
  568. package/dist/vendor/marketplace/en/specialized/blockchain-security-auditor.md +463 -0
  569. package/dist/vendor/marketplace/en/specialized/compliance-auditor.md +158 -0
  570. package/dist/vendor/marketplace/en/specialized/corporate-training-designer.md +192 -0
  571. package/dist/vendor/marketplace/en/specialized/customer-service.md +398 -0
  572. package/dist/vendor/marketplace/en/specialized/data-consolidation-agent.md +60 -0
  573. package/dist/vendor/marketplace/en/specialized/government-digital-presales-consultant.md +363 -0
  574. package/dist/vendor/marketplace/en/specialized/healthcare-customer-service.md +389 -0
  575. package/dist/vendor/marketplace/en/specialized/healthcare-marketing-compliance.md +395 -0
  576. package/dist/vendor/marketplace/en/specialized/hospitality-guest-services.md +603 -0
  577. package/dist/vendor/marketplace/en/specialized/hr-onboarding.md +451 -0
  578. package/dist/vendor/marketplace/en/specialized/identity-graph-operator.md +260 -0
  579. package/dist/vendor/marketplace/en/specialized/language-translator.md +264 -0
  580. package/dist/vendor/marketplace/en/specialized/legal-billing-time-tracking.md +569 -0
  581. package/dist/vendor/marketplace/en/specialized/legal-client-intake.md +492 -0
  582. package/dist/vendor/marketplace/en/specialized/legal-document-review.md +454 -0
  583. package/dist/vendor/marketplace/en/specialized/loan-officer-assistant.md +555 -0
  584. package/dist/vendor/marketplace/en/specialized/lsp-index-engineer.md +314 -0
  585. package/dist/vendor/marketplace/en/specialized/real-estate-buyer-seller.md +596 -0
  586. package/dist/vendor/marketplace/en/specialized/recruitment-specialist.md +509 -0
  587. package/dist/vendor/marketplace/en/specialized/report-distribution-agent.md +65 -0
  588. package/dist/vendor/marketplace/en/specialized/retail-customer-returns.md +566 -0
  589. package/dist/vendor/marketplace/en/specialized/sales-data-extraction-agent.md +67 -0
  590. package/dist/vendor/marketplace/en/specialized/sales-outreach.md +425 -0
  591. package/dist/vendor/marketplace/en/specialized/specialized-chief-of-staff.md +279 -0
  592. package/dist/vendor/marketplace/en/specialized/specialized-civil-engineer.md +356 -0
  593. package/dist/vendor/marketplace/en/specialized/specialized-cultural-intelligence-strategist.md +88 -0
  594. package/dist/vendor/marketplace/en/specialized/specialized-developer-advocate.md +317 -0
  595. package/dist/vendor/marketplace/en/specialized/specialized-document-generator.md +55 -0
  596. package/dist/vendor/marketplace/en/specialized/specialized-french-consulting-market.md +192 -0
  597. package/dist/vendor/marketplace/en/specialized/specialized-korean-business-navigator.md +216 -0
  598. package/dist/vendor/marketplace/en/specialized/specialized-mcp-builder.md +248 -0
  599. package/dist/vendor/marketplace/en/specialized/specialized-model-qa.md +488 -0
  600. package/dist/vendor/marketplace/en/specialized/specialized-salesforce-architect.md +180 -0
  601. package/dist/vendor/marketplace/en/specialized/specialized-workflow-architect.md +597 -0
  602. package/dist/vendor/marketplace/en/specialized/study-abroad-advisor.md +282 -0
  603. package/dist/vendor/marketplace/en/specialized/supply-chain-strategist.md +582 -0
  604. package/dist/vendor/marketplace/en/support/support-analytics-reporter.md +365 -0
  605. package/dist/vendor/marketplace/en/support/support-executive-summary-generator.md +212 -0
  606. package/dist/vendor/marketplace/en/support/support-finance-tracker.md +442 -0
  607. package/dist/vendor/marketplace/en/support/support-infrastructure-maintainer.md +618 -0
  608. package/dist/vendor/marketplace/en/support/support-legal-compliance-checker.md +588 -0
  609. package/dist/vendor/marketplace/en/support/support-support-responder.md +585 -0
  610. package/dist/vendor/marketplace/en/testing/testing-accessibility-auditor.md +316 -0
  611. package/dist/vendor/marketplace/en/testing/testing-api-tester.md +306 -0
  612. package/dist/vendor/marketplace/en/testing/testing-evidence-collector.md +210 -0
  613. package/dist/vendor/marketplace/en/testing/testing-performance-benchmarker.md +268 -0
  614. package/dist/vendor/marketplace/en/testing/testing-reality-checker.md +236 -0
  615. package/dist/vendor/marketplace/en/testing/testing-test-results-analyzer.md +305 -0
  616. package/dist/vendor/marketplace/en/testing/testing-tool-evaluator.md +394 -0
  617. package/dist/vendor/marketplace/en/testing/testing-workflow-optimizer.md +450 -0
  618. package/dist/vendor/marketplace/zh/LICENSE +22 -0
  619. package/dist/vendor/marketplace/zh/SOURCES.md +12 -0
  620. package/dist/vendor/marketplace/zh/academic/academic-anthropologist.md +124 -0
  621. package/dist/vendor/marketplace/zh/academic/academic-geographer.md +126 -0
  622. package/dist/vendor/marketplace/zh/academic/academic-historian.md +122 -0
  623. package/dist/vendor/marketplace/zh/academic/academic-narratologist.md +117 -0
  624. package/dist/vendor/marketplace/zh/academic/academic-psychologist.md +117 -0
  625. package/dist/vendor/marketplace/zh/academic/academic-study-planner.md +214 -0
  626. package/dist/vendor/marketplace/zh/design/design-brand-guardian.md +321 -0
  627. package/dist/vendor/marketplace/zh/design/design-image-prompt-engineer.md +255 -0
  628. package/dist/vendor/marketplace/zh/design/design-inclusive-visuals-specialist.md +177 -0
  629. package/dist/vendor/marketplace/zh/design/design-ui-designer.md +382 -0
  630. package/dist/vendor/marketplace/zh/design/design-ux-architect.md +482 -0
  631. package/dist/vendor/marketplace/zh/design/design-ux-researcher.md +328 -0
  632. package/dist/vendor/marketplace/zh/design/design-visual-storyteller.md +159 -0
  633. package/dist/vendor/marketplace/zh/design/design-whimsy-injector.md +453 -0
  634. package/dist/vendor/marketplace/zh/engineering/engineering-ai-data-remediation-engineer.md +209 -0
  635. package/dist/vendor/marketplace/zh/engineering/engineering-ai-engineer.md +161 -0
  636. package/dist/vendor/marketplace/zh/engineering/engineering-autonomous-optimization-architect.md +115 -0
  637. package/dist/vendor/marketplace/zh/engineering/engineering-backend-architect.md +234 -0
  638. package/dist/vendor/marketplace/zh/engineering/engineering-cms-developer.md +534 -0
  639. package/dist/vendor/marketplace/zh/engineering/engineering-code-reviewer.md +172 -0
  640. package/dist/vendor/marketplace/zh/engineering/engineering-codebase-onboarding-engineer.md +172 -0
  641. package/dist/vendor/marketplace/zh/engineering/engineering-data-engineer.md +324 -0
  642. package/dist/vendor/marketplace/zh/engineering/engineering-database-optimizer.md +175 -0
  643. package/dist/vendor/marketplace/zh/engineering/engineering-devops-automator.md +375 -0
  644. package/dist/vendor/marketplace/zh/engineering/engineering-dingtalk-integration-developer.md +574 -0
  645. package/dist/vendor/marketplace/zh/engineering/engineering-email-intelligence-engineer.md +349 -0
  646. package/dist/vendor/marketplace/zh/engineering/engineering-embedded-firmware-engineer.md +168 -0
  647. package/dist/vendor/marketplace/zh/engineering/engineering-embedded-linux-driver-engineer.md +255 -0
  648. package/dist/vendor/marketplace/zh/engineering/engineering-feishu-integration-developer.md +597 -0
  649. package/dist/vendor/marketplace/zh/engineering/engineering-filament-optimization-specialist.md +283 -0
  650. package/dist/vendor/marketplace/zh/engineering/engineering-fpga-digital-design-engineer.md +227 -0
  651. package/dist/vendor/marketplace/zh/engineering/engineering-frontend-developer.md +224 -0
  652. package/dist/vendor/marketplace/zh/engineering/engineering-git-workflow-master.md +220 -0
  653. package/dist/vendor/marketplace/zh/engineering/engineering-incident-response-commander.md +465 -0
  654. package/dist/vendor/marketplace/zh/engineering/engineering-iot-solution-architect.md +220 -0
  655. package/dist/vendor/marketplace/zh/engineering/engineering-mechanical-design-engineer.md +311 -0
  656. package/dist/vendor/marketplace/zh/engineering/engineering-minimal-change-engineer.md +206 -0
  657. package/dist/vendor/marketplace/zh/engineering/engineering-mobile-app-builder.md +434 -0
  658. package/dist/vendor/marketplace/zh/engineering/engineering-pc-host-engineer.md +231 -0
  659. package/dist/vendor/marketplace/zh/engineering/engineering-rapid-prototyper.md +461 -0
  660. package/dist/vendor/marketplace/zh/engineering/engineering-security-engineer.md +303 -0
  661. package/dist/vendor/marketplace/zh/engineering/engineering-senior-developer.md +177 -0
  662. package/dist/vendor/marketplace/zh/engineering/engineering-software-architect.md +200 -0
  663. package/dist/vendor/marketplace/zh/engineering/engineering-solidity-smart-contract-engineer.md +541 -0
  664. package/dist/vendor/marketplace/zh/engineering/engineering-sre.md +233 -0
  665. package/dist/vendor/marketplace/zh/engineering/engineering-technical-writer.md +409 -0
  666. package/dist/vendor/marketplace/zh/engineering/engineering-threat-detection-engineer.md +553 -0
  667. package/dist/vendor/marketplace/zh/engineering/engineering-voice-ai-integration-engineer.md +560 -0
  668. package/dist/vendor/marketplace/zh/engineering/engineering-wechat-mini-program-developer.md +288 -0
  669. package/dist/vendor/marketplace/zh/finance/finance-bookkeeper-controller.md +271 -0
  670. package/dist/vendor/marketplace/zh/finance/finance-financial-analyst.md +244 -0
  671. package/dist/vendor/marketplace/zh/finance/finance-financial-forecaster.md +213 -0
  672. package/dist/vendor/marketplace/zh/finance/finance-fpa-analyst.md +272 -0
  673. package/dist/vendor/marketplace/zh/finance/finance-fraud-detector.md +241 -0
  674. package/dist/vendor/marketplace/zh/finance/finance-investment-researcher.md +283 -0
  675. package/dist/vendor/marketplace/zh/finance/finance-invoice-manager.md +242 -0
  676. package/dist/vendor/marketplace/zh/finance/finance-tax-strategist.md +250 -0
  677. package/dist/vendor/marketplace/zh/game-development/blender/blender-addon-engineer.md +233 -0
  678. package/dist/vendor/marketplace/zh/game-development/game-audio-engineer.md +265 -0
  679. package/dist/vendor/marketplace/zh/game-development/game-designer.md +168 -0
  680. package/dist/vendor/marketplace/zh/game-development/godot/godot-gameplay-scripter.md +335 -0
  681. package/dist/vendor/marketplace/zh/game-development/godot/godot-multiplayer-engineer.md +296 -0
  682. package/dist/vendor/marketplace/zh/game-development/godot/godot-shader-developer.md +267 -0
  683. package/dist/vendor/marketplace/zh/game-development/level-designer.md +209 -0
  684. package/dist/vendor/marketplace/zh/game-development/narrative-designer.md +244 -0
  685. package/dist/vendor/marketplace/zh/game-development/roblox-studio/roblox-avatar-creator.md +298 -0
  686. package/dist/vendor/marketplace/zh/game-development/roblox-studio/roblox-experience-designer.md +306 -0
  687. package/dist/vendor/marketplace/zh/game-development/roblox-studio/roblox-systems-scripter.md +325 -0
  688. package/dist/vendor/marketplace/zh/game-development/technical-artist.md +230 -0
  689. package/dist/vendor/marketplace/zh/game-development/unity/unity-architect.md +272 -0
  690. package/dist/vendor/marketplace/zh/game-development/unity/unity-editor-tool-developer.md +300 -0
  691. package/dist/vendor/marketplace/zh/game-development/unity/unity-multiplayer-engineer.md +238 -0
  692. package/dist/vendor/marketplace/zh/game-development/unity/unity-shader-graph-artist.md +270 -0
  693. package/dist/vendor/marketplace/zh/game-development/unreal-engine/unreal-multiplayer-architect.md +314 -0
  694. package/dist/vendor/marketplace/zh/game-development/unreal-engine/unreal-systems-engineer.md +311 -0
  695. package/dist/vendor/marketplace/zh/game-development/unreal-engine/unreal-technical-artist.md +256 -0
  696. package/dist/vendor/marketplace/zh/game-development/unreal-engine/unreal-world-builder.md +274 -0
  697. package/dist/vendor/marketplace/zh/hr/hr-performance-reviewer.md +248 -0
  698. package/dist/vendor/marketplace/zh/hr/hr-recruiter.md +232 -0
  699. package/dist/vendor/marketplace/zh/legal/legal-contract-reviewer.md +240 -0
  700. package/dist/vendor/marketplace/zh/legal/legal-policy-writer.md +308 -0
  701. package/dist/vendor/marketplace/zh/manifest.json +2181 -0
  702. package/dist/vendor/marketplace/zh/marketing/marketing-agentic-search-optimizer.md +312 -0
  703. package/dist/vendor/marketplace/zh/marketing/marketing-ai-citation-strategist.md +169 -0
  704. package/dist/vendor/marketplace/zh/marketing/marketing-app-store-optimizer.md +319 -0
  705. package/dist/vendor/marketplace/zh/marketing/marketing-baidu-seo-specialist.md +220 -0
  706. package/dist/vendor/marketplace/zh/marketing/marketing-bilibili-strategist.md +194 -0
  707. package/dist/vendor/marketplace/zh/marketing/marketing-book-co-author.md +109 -0
  708. package/dist/vendor/marketplace/zh/marketing/marketing-carousel-growth-engine.md +215 -0
  709. package/dist/vendor/marketplace/zh/marketing/marketing-china-ecommerce-operator.md +277 -0
  710. package/dist/vendor/marketplace/zh/marketing/marketing-china-market-localization-strategist.md +282 -0
  711. package/dist/vendor/marketplace/zh/marketing/marketing-content-creator.md +145 -0
  712. package/dist/vendor/marketplace/zh/marketing/marketing-cross-border-ecommerce.md +260 -0
  713. package/dist/vendor/marketplace/zh/marketing/marketing-daily-news-briefing.md +303 -0
  714. package/dist/vendor/marketplace/zh/marketing/marketing-douyin-strategist.md +150 -0
  715. package/dist/vendor/marketplace/zh/marketing/marketing-ecommerce-operator.md +216 -0
  716. package/dist/vendor/marketplace/zh/marketing/marketing-growth-hacker.md +121 -0
  717. package/dist/vendor/marketplace/zh/marketing/marketing-instagram-curator.md +179 -0
  718. package/dist/vendor/marketplace/zh/marketing/marketing-knowledge-commerce-strategist.md +384 -0
  719. package/dist/vendor/marketplace/zh/marketing/marketing-kuaishou-strategist.md +182 -0
  720. package/dist/vendor/marketplace/zh/marketing/marketing-linkedin-content-creator.md +232 -0
  721. package/dist/vendor/marketplace/zh/marketing/marketing-livestream-commerce-coach.md +303 -0
  722. package/dist/vendor/marketplace/zh/marketing/marketing-podcast-strategist.md +278 -0
  723. package/dist/vendor/marketplace/zh/marketing/marketing-private-domain-operator.md +309 -0
  724. package/dist/vendor/marketplace/zh/marketing/marketing-reddit-community-builder.md +127 -0
  725. package/dist/vendor/marketplace/zh/marketing/marketing-seo-specialist.md +298 -0
  726. package/dist/vendor/marketplace/zh/marketing/marketing-short-video-editing-coach.md +413 -0
  727. package/dist/vendor/marketplace/zh/marketing/marketing-social-media-strategist.md +118 -0
  728. package/dist/vendor/marketplace/zh/marketing/marketing-tiktok-strategist.md +124 -0
  729. package/dist/vendor/marketplace/zh/marketing/marketing-twitter-engager.md +132 -0
  730. package/dist/vendor/marketplace/zh/marketing/marketing-video-optimization-specialist.md +128 -0
  731. package/dist/vendor/marketplace/zh/marketing/marketing-wechat-official-account.md +158 -0
  732. package/dist/vendor/marketplace/zh/marketing/marketing-wechat-operator.md +156 -0
  733. package/dist/vendor/marketplace/zh/marketing/marketing-weibo-strategist.md +241 -0
  734. package/dist/vendor/marketplace/zh/marketing/marketing-weixin-channels-strategist.md +297 -0
  735. package/dist/vendor/marketplace/zh/marketing/marketing-xiaohongshu-operator.md +139 -0
  736. package/dist/vendor/marketplace/zh/marketing/marketing-xiaohongshu-specialist.md +151 -0
  737. package/dist/vendor/marketplace/zh/marketing/marketing-zhihu-strategist.md +175 -0
  738. package/dist/vendor/marketplace/zh/paid-media/paid-media-auditor.md +170 -0
  739. package/dist/vendor/marketplace/zh/paid-media/paid-media-creative-strategist.md +173 -0
  740. package/dist/vendor/marketplace/zh/paid-media/paid-media-paid-social-strategist.md +180 -0
  741. package/dist/vendor/marketplace/zh/paid-media/paid-media-ppc-strategist.md +180 -0
  742. package/dist/vendor/marketplace/zh/paid-media/paid-media-programmatic-buyer.md +177 -0
  743. package/dist/vendor/marketplace/zh/paid-media/paid-media-search-query-analyst.md +182 -0
  744. package/dist/vendor/marketplace/zh/paid-media/paid-media-tracking-specialist.md +199 -0
  745. package/dist/vendor/marketplace/zh/product/product-behavioral-nudge-engine.md +246 -0
  746. package/dist/vendor/marketplace/zh/product/product-feedback-synthesizer.md +175 -0
  747. package/dist/vendor/marketplace/zh/product/product-manager.md +474 -0
  748. package/dist/vendor/marketplace/zh/product/product-sprint-prioritizer.md +133 -0
  749. package/dist/vendor/marketplace/zh/product/product-trend-researcher.md +143 -0
  750. package/dist/vendor/marketplace/zh/project-management/project-management-experiment-tracker.md +206 -0
  751. package/dist/vendor/marketplace/zh/project-management/project-management-jira-workflow-steward.md +249 -0
  752. package/dist/vendor/marketplace/zh/project-management/project-management-project-shepherd.md +202 -0
  753. package/dist/vendor/marketplace/zh/project-management/project-management-studio-operations.md +208 -0
  754. package/dist/vendor/marketplace/zh/project-management/project-management-studio-producer.md +211 -0
  755. package/dist/vendor/marketplace/zh/project-management/project-manager-senior.md +135 -0
  756. package/dist/vendor/marketplace/zh/sales/sales-account-strategist.md +243 -0
  757. package/dist/vendor/marketplace/zh/sales/sales-coach.md +291 -0
  758. package/dist/vendor/marketplace/zh/sales/sales-deal-strategist.md +204 -0
  759. package/dist/vendor/marketplace/zh/sales/sales-discovery-coach.md +230 -0
  760. package/dist/vendor/marketplace/zh/sales/sales-engineer.md +200 -0
  761. package/dist/vendor/marketplace/zh/sales/sales-outbound-strategist.md +208 -0
  762. package/dist/vendor/marketplace/zh/sales/sales-pipeline-analyst.md +284 -0
  763. package/dist/vendor/marketplace/zh/sales/sales-proposal-strategist.md +233 -0
  764. package/dist/vendor/marketplace/zh/spatial-computing/macos-spatial-metal-engineer.md +337 -0
  765. package/dist/vendor/marketplace/zh/spatial-computing/terminal-integration-specialist.md +236 -0
  766. package/dist/vendor/marketplace/zh/spatial-computing/visionos-spatial-engineer.md +282 -0
  767. package/dist/vendor/marketplace/zh/spatial-computing/xr-cockpit-interaction-specialist.md +220 -0
  768. package/dist/vendor/marketplace/zh/spatial-computing/xr-immersive-developer.md +229 -0
  769. package/dist/vendor/marketplace/zh/spatial-computing/xr-interface-architect.md +253 -0
  770. package/dist/vendor/marketplace/zh/specialized/accounts-payable-agent.md +212 -0
  771. package/dist/vendor/marketplace/zh/specialized/agentic-identity-trust.md +388 -0
  772. package/dist/vendor/marketplace/zh/specialized/agents-orchestrator.md +366 -0
  773. package/dist/vendor/marketplace/zh/specialized/automation-governance-architect.md +215 -0
  774. package/dist/vendor/marketplace/zh/specialized/blockchain-security-auditor.md +484 -0
  775. package/dist/vendor/marketplace/zh/specialized/compliance-auditor.md +172 -0
  776. package/dist/vendor/marketplace/zh/specialized/corporate-training-designer.md +191 -0
  777. package/dist/vendor/marketplace/zh/specialized/data-consolidation-agent.md +327 -0
  778. package/dist/vendor/marketplace/zh/specialized/gaokao-college-advisor.md +333 -0
  779. package/dist/vendor/marketplace/zh/specialized/government-digital-presales-consultant.md +362 -0
  780. package/dist/vendor/marketplace/zh/specialized/healthcare-customer-service.md +388 -0
  781. package/dist/vendor/marketplace/zh/specialized/healthcare-marketing-compliance.md +394 -0
  782. package/dist/vendor/marketplace/zh/specialized/hospitality-guest-services.md +597 -0
  783. package/dist/vendor/marketplace/zh/specialized/hr-onboarding.md +450 -0
  784. package/dist/vendor/marketplace/zh/specialized/identity-graph-operator.md +270 -0
  785. package/dist/vendor/marketplace/zh/specialized/language-translator.md +275 -0
  786. package/dist/vendor/marketplace/zh/specialized/legal-billing-time-tracking.md +566 -0
  787. package/dist/vendor/marketplace/zh/specialized/legal-client-intake.md +487 -0
  788. package/dist/vendor/marketplace/zh/specialized/legal-document-review.md +452 -0
  789. package/dist/vendor/marketplace/zh/specialized/livestock-archive-auditor.md +135 -0
  790. package/dist/vendor/marketplace/zh/specialized/loan-officer-assistant.md +549 -0
  791. package/dist/vendor/marketplace/zh/specialized/lsp-index-engineer.md +334 -0
  792. package/dist/vendor/marketplace/zh/specialized/prompt-engineer.md +176 -0
  793. package/dist/vendor/marketplace/zh/specialized/real-estate-buyer-seller.md +594 -0
  794. package/dist/vendor/marketplace/zh/specialized/recruitment-specialist.md +508 -0
  795. package/dist/vendor/marketplace/zh/specialized/report-distribution-agent.md +354 -0
  796. package/dist/vendor/marketplace/zh/specialized/retail-customer-returns.md +564 -0
  797. package/dist/vendor/marketplace/zh/specialized/sales-data-extraction-agent.md +159 -0
  798. package/dist/vendor/marketplace/zh/specialized/specialized-ai-policy-writer.md +217 -0
  799. package/dist/vendor/marketplace/zh/specialized/specialized-chief-of-staff.md +278 -0
  800. package/dist/vendor/marketplace/zh/specialized/specialized-civil-engineer.md +355 -0
  801. package/dist/vendor/marketplace/zh/specialized/specialized-cultural-intelligence-strategist.md +168 -0
  802. package/dist/vendor/marketplace/zh/specialized/specialized-developer-advocate.md +334 -0
  803. package/dist/vendor/marketplace/zh/specialized/specialized-document-generator.md +346 -0
  804. package/dist/vendor/marketplace/zh/specialized/specialized-french-consulting-market.md +191 -0
  805. package/dist/vendor/marketplace/zh/specialized/specialized-korean-business-navigator.md +215 -0
  806. package/dist/vendor/marketplace/zh/specialized/specialized-mcp-builder.md +351 -0
  807. package/dist/vendor/marketplace/zh/specialized/specialized-meeting-assistant.md +236 -0
  808. package/dist/vendor/marketplace/zh/specialized/specialized-model-qa.md +507 -0
  809. package/dist/vendor/marketplace/zh/specialized/specialized-pricing-optimizer.md +254 -0
  810. package/dist/vendor/marketplace/zh/specialized/specialized-risk-assessor.md +240 -0
  811. package/dist/vendor/marketplace/zh/specialized/specialized-salesforce-architect.md +179 -0
  812. package/dist/vendor/marketplace/zh/specialized/specialized-workflow-architect.md +596 -0
  813. package/dist/vendor/marketplace/zh/specialized/study-abroad-advisor.md +281 -0
  814. package/dist/vendor/marketplace/zh/specialized/technical-translator-agent.md +167 -0
  815. package/dist/vendor/marketplace/zh/specialized/zk-steward.md +228 -0
  816. package/dist/vendor/marketplace/zh/supply-chain/supply-chain-inventory-forecaster.md +212 -0
  817. package/dist/vendor/marketplace/zh/supply-chain/supply-chain-route-optimizer.md +224 -0
  818. package/dist/vendor/marketplace/zh/supply-chain/supply-chain-strategist.md +581 -0
  819. package/dist/vendor/marketplace/zh/supply-chain/supply-chain-vendor-evaluator.md +232 -0
  820. package/dist/vendor/marketplace/zh/support/support-analytics-reporter.md +364 -0
  821. package/dist/vendor/marketplace/zh/support/support-executive-summary-generator.md +217 -0
  822. package/dist/vendor/marketplace/zh/support/support-finance-tracker.md +447 -0
  823. package/dist/vendor/marketplace/zh/support/support-infrastructure-maintainer.md +623 -0
  824. package/dist/vendor/marketplace/zh/support/support-legal-compliance-checker.md +587 -0
  825. package/dist/vendor/marketplace/zh/support/support-recruitment-specialist.md +508 -0
  826. package/dist/vendor/marketplace/zh/support/support-support-responder.md +584 -0
  827. package/dist/vendor/marketplace/zh/testing/testing-accessibility-auditor.md +329 -0
  828. package/dist/vendor/marketplace/zh/testing/testing-api-tester.md +305 -0
  829. package/dist/vendor/marketplace/zh/testing/testing-embedded-qa-engineer.md +258 -0
  830. package/dist/vendor/marketplace/zh/testing/testing-evidence-collector.md +153 -0
  831. package/dist/vendor/marketplace/zh/testing/testing-performance-benchmarker.md +196 -0
  832. package/dist/vendor/marketplace/zh/testing/testing-reality-checker.md +235 -0
  833. package/dist/vendor/marketplace/zh/testing/testing-test-results-analyzer.md +313 -0
  834. package/dist/vendor/marketplace/zh/testing/testing-tool-evaluator.md +402 -0
  835. package/dist/vendor/marketplace/zh/testing/testing-workflow-optimizer.md +458 -0
  836. package/package.json +131 -0
  837. package/scripts/postinstall-native-artifacts.mjs +113 -0
  838. package/web/dist/assets/AddWorkerDialog-BU2Fn-Mx.js +2 -0
  839. package/web/dist/assets/AddWorkspaceFlow-BV04MkRt.js +1 -0
  840. package/web/dist/assets/FirstRunWizard-DS4IYOrd.js +1 -0
  841. package/web/dist/assets/MarketplaceDrawer-CIQ2B6Fx.js +76 -0
  842. package/web/dist/assets/TaskGraphDrawer-BPMcRocd.js +1 -0
  843. package/web/dist/assets/WhatsNewDialog-DEgVY_LD.js +1 -0
  844. package/web/dist/assets/WorkerModal-DiCcTPpc.js +1 -0
  845. package/web/dist/assets/WorkflowsDrawer-M2CgAJWK.js +1 -0
  846. package/web/dist/assets/WorkspaceMemoryDrawer-ClJIqWck.js +1 -0
  847. package/web/dist/assets/WorkspaceTaskDrawer-gjvXuZ2K.js +1 -0
  848. package/web/dist/assets/addon-clipboard-wHJhZAA4.js +1 -0
  849. package/web/dist/assets/addon-fit-DX4qG4td.js +1 -0
  850. package/web/dist/assets/addon-unicode11-Bt8F3D7-.js +7 -0
  851. package/web/dist/assets/addon-web-links-DIbG5aQx.js +1 -0
  852. package/web/dist/assets/addon-webgl-DCtw1yLn.js +64 -0
  853. package/web/dist/assets/finder-C4Jmsb0B.png +0 -0
  854. package/web/dist/assets/ghostty-D-Js4rdm.png +0 -0
  855. package/web/dist/assets/index-bOMtwrkA.js +73 -0
  856. package/web/dist/assets/index-i9YgsMdD.css +1 -0
  857. package/web/dist/assets/path-join-7MR1s7b1.js +1 -0
  858. package/web/dist/assets/search-CmzeVhy0.js +1 -0
  859. package/web/dist/assets/xterm-B-qIQCd3.js +16 -0
  860. package/web/dist/assets/zed-C5BQT8X3.png +0 -0
  861. package/web/dist/bilibili.ico +0 -0
  862. package/web/dist/cli-icons/claude.png +0 -0
  863. package/web/dist/cli-icons/codex.png +0 -0
  864. package/web/dist/cli-icons/gemini.png +0 -0
  865. package/web/dist/cli-icons/hermes.png +0 -0
  866. package/web/dist/cli-icons/opencode.svg +18 -0
  867. package/web/dist/icons/apple-touch-icon-180.png +0 -0
  868. package/web/dist/icons/icon-192.png +0 -0
  869. package/web/dist/icons/icon-32.png +0 -0
  870. package/web/dist/icons/icon-512-maskable.png +0 -0
  871. package/web/dist/icons/icon-512.png +0 -0
  872. package/web/dist/index.html +39 -0
  873. package/web/dist/logo.png +0 -0
  874. package/web/dist/manifest.webmanifest +60 -0
  875. package/web/dist/screenshots/wide-overview.png +0 -0
  876. package/web/dist/sounds/LICENSE-KENNEY.txt +22 -0
  877. package/web/dist/sounds/hive-beacon.ogg +0 -0
  878. package/web/dist/sounds/hive-cascade.ogg +0 -0
  879. package/web/dist/sounds/hive-chime.ogg +0 -0
  880. package/web/dist/sounds/hive-ping.ogg +0 -0
  881. package/web/dist/sounds/hive-resolve.ogg +0 -0
  882. package/web/dist/sounds/hive-soft.ogg +0 -0
  883. package/web/dist/sw.js +99 -0
@@ -0,0 +1,1869 @@
1
+ {
2
+ "source": {
3
+ "repo": "msitarzewski/agency-agents",
4
+ "commit": "783f6a72bfd7f3135700ac273c619d92821b419a",
5
+ "fetched_at": "2026-05-22T12:26:20.089Z"
6
+ },
7
+ "language": "en",
8
+ "categories": [
9
+ "academic",
10
+ "design",
11
+ "engineering",
12
+ "finance",
13
+ "game-development",
14
+ "integrations",
15
+ "marketing",
16
+ "paid-media",
17
+ "product",
18
+ "project-management",
19
+ "sales",
20
+ "spatial-computing",
21
+ "specialized",
22
+ "support",
23
+ "testing"
24
+ ],
25
+ "agents": [
26
+ {
27
+ "path": "academic/academic-anthropologist.md",
28
+ "category": "academic",
29
+ "name": "Anthropologist",
30
+ "nameOverflows": false,
31
+ "description": "Expert in cultural systems, rituals, kinship, belief systems, and ethnographic method — builds culturally coherent societies that feel lived-in rather than invented",
32
+ "emoji": "🌍",
33
+ "color": "#D97706",
34
+ "vibe": "No culture is random — every practice is a solution to a problem you might not see yet"
35
+ },
36
+ {
37
+ "path": "academic/academic-geographer.md",
38
+ "category": "academic",
39
+ "name": "Geographer",
40
+ "nameOverflows": false,
41
+ "description": "Expert in physical and human geography, climate systems, cartography, and spatial analysis — builds geographically coherent worlds where terrain, climate, resources, and settlement patterns make scientific sense",
42
+ "emoji": "🗺️",
43
+ "color": "#059669",
44
+ "vibe": "Geography is destiny — where you are determines who you become"
45
+ },
46
+ {
47
+ "path": "academic/academic-historian.md",
48
+ "category": "academic",
49
+ "name": "Historian",
50
+ "nameOverflows": false,
51
+ "description": "Expert in historical analysis, periodization, material culture, and historiography — validates historical coherence and enriches settings with authentic period detail grounded in primary and secondary sources",
52
+ "emoji": "📚",
53
+ "color": "#B45309",
54
+ "vibe": "History doesn't repeat, but it rhymes — and I know all the verses"
55
+ },
56
+ {
57
+ "path": "academic/academic-narratologist.md",
58
+ "category": "academic",
59
+ "name": "Narratologist",
60
+ "nameOverflows": false,
61
+ "description": "Expert in narrative theory, story structure, character arcs, and literary analysis — grounds advice in established frameworks from Propp to Campbell to modern narratology",
62
+ "emoji": "📜",
63
+ "color": "#8B5CF6",
64
+ "vibe": "Every story is an argument — I help you find what yours is really saying"
65
+ },
66
+ {
67
+ "path": "academic/academic-psychologist.md",
68
+ "category": "academic",
69
+ "name": "Psychologist",
70
+ "nameOverflows": false,
71
+ "description": "Expert in human behavior, personality theory, motivation, and cognitive patterns — builds psychologically credible characters and interactions grounded in clinical and research frameworks",
72
+ "emoji": "🧠",
73
+ "color": "#EC4899",
74
+ "vibe": "People don't do things for no reason — I find the reason"
75
+ },
76
+ {
77
+ "path": "design/design-brand-guardian.md",
78
+ "category": "design",
79
+ "name": "Brand Guardian",
80
+ "nameOverflows": false,
81
+ "description": "Expert brand strategist and guardian specializing in brand identity development, consistency maintenance, and strategic brand positioning",
82
+ "emoji": "🎨",
83
+ "color": "blue",
84
+ "vibe": "Your brand's fiercest protector and most passionate advocate."
85
+ },
86
+ {
87
+ "path": "design/design-image-prompt-engineer.md",
88
+ "category": "design",
89
+ "name": "Image Prompt Engineer",
90
+ "nameOverflows": false,
91
+ "description": "Expert photography prompt engineer specializing in crafting detailed, evocative prompts for AI image generation. Masters the art of translating visual concepts into precise language that produces stunning, professional-quality photography through generative AI tools.",
92
+ "emoji": "📷",
93
+ "color": "amber",
94
+ "vibe": "Translates visual concepts into precise prompts that produce stunning AI photography."
95
+ },
96
+ {
97
+ "path": "design/design-inclusive-visuals-specialist.md",
98
+ "category": "design",
99
+ "name": "Inclusive Visuals Specialist",
100
+ "nameOverflows": true,
101
+ "description": "Representation expert who defeats systemic AI biases to generate culturally accurate, affirming, and non-stereotypical images and video.",
102
+ "emoji": "🌈",
103
+ "color": "#4DB6AC",
104
+ "vibe": "Defeats systemic AI biases to generate culturally accurate, affirming imagery."
105
+ },
106
+ {
107
+ "path": "design/design-ui-designer.md",
108
+ "category": "design",
109
+ "name": "UI Designer",
110
+ "nameOverflows": false,
111
+ "description": "Expert UI designer specializing in visual design systems, component libraries, and pixel-perfect interface creation. Creates beautiful, consistent, accessible user interfaces that enhance UX and reflect brand identity",
112
+ "emoji": "🎨",
113
+ "color": "purple",
114
+ "vibe": "Creates beautiful, consistent, accessible interfaces that feel just right."
115
+ },
116
+ {
117
+ "path": "design/design-ux-architect.md",
118
+ "category": "design",
119
+ "name": "UX Architect",
120
+ "nameOverflows": false,
121
+ "description": "Technical architecture and UX specialist who provides developers with solid foundations, CSS systems, and clear implementation guidance",
122
+ "emoji": "📐",
123
+ "color": "purple",
124
+ "vibe": "Gives developers solid foundations, CSS systems, and clear implementation paths."
125
+ },
126
+ {
127
+ "path": "design/design-ux-researcher.md",
128
+ "category": "design",
129
+ "name": "UX Researcher",
130
+ "nameOverflows": false,
131
+ "description": "Expert user experience researcher specializing in user behavior analysis, usability testing, and data-driven design insights. Provides actionable research findings that improve product usability and user satisfaction",
132
+ "emoji": "🔬",
133
+ "color": "green",
134
+ "vibe": "Validates design decisions with real user data, not assumptions."
135
+ },
136
+ {
137
+ "path": "design/design-visual-storyteller.md",
138
+ "category": "design",
139
+ "name": "Visual Storyteller",
140
+ "nameOverflows": false,
141
+ "description": "Expert visual communication specialist focused on creating compelling visual narratives, multimedia content, and brand storytelling through design. Specializes in transforming complex information into engaging visual stories that connect with audiences and drive emotional engagement.",
142
+ "emoji": "🎬",
143
+ "color": "purple",
144
+ "vibe": "Transforms complex information into visual narratives that move people."
145
+ },
146
+ {
147
+ "path": "design/design-whimsy-injector.md",
148
+ "category": "design",
149
+ "name": "Whimsy Injector",
150
+ "nameOverflows": false,
151
+ "description": "Expert creative specialist focused on adding personality, delight, and playful elements to brand experiences. Creates memorable, joyful interactions that differentiate brands through unexpected moments of whimsy",
152
+ "emoji": "✨",
153
+ "color": "pink",
154
+ "vibe": "Adds the unexpected moments of delight that make brands unforgettable."
155
+ },
156
+ {
157
+ "path": "engineering/engineering-ai-data-remediation-engineer.md",
158
+ "category": "engineering",
159
+ "name": "AI Data Remediation Engineer",
160
+ "nameOverflows": true,
161
+ "description": "Specialist in self-healing data pipelines — uses air-gapped local SLMs and semantic clustering to automatically detect, classify, and fix data anomalies at scale. Focuses exclusively on the remediation layer: intercepting bad data, generating deterministic fix logic via Ollama, and guaranteeing zero data loss. Not a general data engineer — a surgical specialist for when your data is broken and the pipeline can't stop.",
162
+ "emoji": "🧬",
163
+ "color": "green",
164
+ "vibe": "Fixes your broken data with surgical AI precision — no rows left behind."
165
+ },
166
+ {
167
+ "path": "engineering/engineering-ai-engineer.md",
168
+ "category": "engineering",
169
+ "name": "AI Engineer",
170
+ "nameOverflows": false,
171
+ "description": "Expert AI/ML engineer specializing in machine learning model development, deployment, and integration into production systems. Focused on building intelligent features, data pipelines, and AI-powered applications with emphasis on practical, scalable solutions.",
172
+ "emoji": "🤖",
173
+ "color": "blue",
174
+ "vibe": "Turns ML models into production features that actually scale."
175
+ },
176
+ {
177
+ "path": "engineering/engineering-autonomous-optimization-architect.md",
178
+ "category": "engineering",
179
+ "name": "Autonomous Optimization Architect",
180
+ "nameOverflows": true,
181
+ "description": "Intelligent system governor that continuously shadow-tests APIs for performance while enforcing strict financial and security guardrails against runaway costs.",
182
+ "emoji": "⚡",
183
+ "color": "#673AB7",
184
+ "vibe": "The system governor that makes things faster without bankrupting you."
185
+ },
186
+ {
187
+ "path": "engineering/engineering-backend-architect.md",
188
+ "category": "engineering",
189
+ "name": "Backend Architect",
190
+ "nameOverflows": false,
191
+ "description": "Senior backend architect specializing in scalable system design, database architecture, API development, and cloud infrastructure. Builds robust, secure, performant server-side applications and microservices",
192
+ "emoji": "🏗️",
193
+ "color": "blue",
194
+ "vibe": "Designs the systems that hold everything up — databases, APIs, cloud, scale.",
195
+ "displayName": "Backend Architect (engineering)"
196
+ },
197
+ {
198
+ "path": "engineering/engineering-cms-developer.md",
199
+ "category": "engineering",
200
+ "name": "CMS Developer",
201
+ "nameOverflows": false,
202
+ "description": "Drupal and WordPress specialist for theme development, custom plugins/modules, content architecture, and code-first CMS implementation",
203
+ "emoji": "🧱",
204
+ "color": "blue",
205
+ "vibe": "Drupal and WordPress specialist for theme development, custom plugins/modules, content architecture, and code-first CMS implementation"
206
+ },
207
+ {
208
+ "path": "engineering/engineering-code-reviewer.md",
209
+ "category": "engineering",
210
+ "name": "Code Reviewer",
211
+ "nameOverflows": false,
212
+ "description": "Expert code reviewer who provides constructive, actionable feedback focused on correctness, maintainability, security, and performance — not style preferences.",
213
+ "emoji": "👁️",
214
+ "color": "purple",
215
+ "vibe": "Reviews code like a mentor, not a gatekeeper. Every comment teaches something."
216
+ },
217
+ {
218
+ "path": "engineering/engineering-codebase-onboarding-engineer.md",
219
+ "category": "engineering",
220
+ "name": "Codebase Onboarding Engineer",
221
+ "nameOverflows": true,
222
+ "description": "Expert developer onboarding specialist who helps new engineers understand unfamiliar codebases fast by reading source code, tracing code paths, and stating only facts grounded in the code.",
223
+ "emoji": "🧭",
224
+ "color": "teal",
225
+ "vibe": "Gets new developers productive faster by reading the code, tracing the paths, and stating the facts. Nothing extra."
226
+ },
227
+ {
228
+ "path": "engineering/engineering-data-engineer.md",
229
+ "category": "engineering",
230
+ "name": "Data Engineer",
231
+ "nameOverflows": false,
232
+ "description": "Expert data engineer specializing in building reliable data pipelines, lakehouse architectures, and scalable data infrastructure. Masters ETL/ELT, Apache Spark, dbt, streaming systems, and cloud data platforms to turn raw data into trusted, analytics-ready assets.",
233
+ "emoji": "🔧",
234
+ "color": "orange",
235
+ "vibe": "Builds the pipelines that turn raw data into trusted, analytics-ready assets."
236
+ },
237
+ {
238
+ "path": "engineering/engineering-database-optimizer.md",
239
+ "category": "engineering",
240
+ "name": "Database Optimizer",
241
+ "nameOverflows": false,
242
+ "description": "Expert database specialist focusing on schema design, query optimization, indexing strategies, and performance tuning for PostgreSQL, MySQL, and modern databases like Supabase and PlanetScale.",
243
+ "emoji": "🗄️",
244
+ "color": "amber",
245
+ "vibe": "Indexes, query plans, and schema design — databases that don't wake you at 3am."
246
+ },
247
+ {
248
+ "path": "engineering/engineering-devops-automator.md",
249
+ "category": "engineering",
250
+ "name": "DevOps Automator",
251
+ "nameOverflows": false,
252
+ "description": "Expert DevOps engineer specializing in infrastructure automation, CI/CD pipeline development, and cloud operations",
253
+ "emoji": "⚙️",
254
+ "color": "orange",
255
+ "vibe": "Automates infrastructure so your team ships faster and sleeps better."
256
+ },
257
+ {
258
+ "path": "engineering/engineering-email-intelligence-engineer.md",
259
+ "category": "engineering",
260
+ "name": "Email Intelligence Engineer",
261
+ "nameOverflows": true,
262
+ "description": "Expert in extracting structured, reasoning-ready data from raw email threads for AI agents and automation systems",
263
+ "emoji": "📧",
264
+ "color": "indigo",
265
+ "vibe": "Turns messy MIME into reasoning-ready context because raw email is noise and your agent deserves signal"
266
+ },
267
+ {
268
+ "path": "engineering/engineering-embedded-firmware-engineer.md",
269
+ "category": "engineering",
270
+ "name": "Embedded Firmware Engineer",
271
+ "nameOverflows": true,
272
+ "description": "Specialist in bare-metal and RTOS firmware - ESP32/ESP-IDF, PlatformIO, Arduino, ARM Cortex-M, STM32 HAL/LL, Nordic nRF5/nRF Connect SDK, FreeRTOS, Zephyr",
273
+ "emoji": "🔩",
274
+ "color": "orange",
275
+ "vibe": "Writes production-grade firmware for hardware that can't afford to crash."
276
+ },
277
+ {
278
+ "path": "engineering/engineering-feishu-integration-developer.md",
279
+ "category": "engineering",
280
+ "name": "Feishu Integration Developer",
281
+ "nameOverflows": true,
282
+ "description": "Full-stack integration expert specializing in the Feishu (Lark) Open Platform — proficient in Feishu bots, mini programs, approval workflows, Bitable (multidimensional spreadsheets), interactive message cards, Webhooks, SSO authentication, and workflow automation, building enterprise-grade collaboration and automation solutions within the Feishu ecosystem.",
283
+ "emoji": "🔗",
284
+ "color": "blue",
285
+ "vibe": "Full-stack integration expert specializing in the Feishu (Lark) Open Platform"
286
+ },
287
+ {
288
+ "path": "engineering/engineering-filament-optimization-specialist.md",
289
+ "category": "engineering",
290
+ "name": "Filament Optimization Specialist",
291
+ "nameOverflows": true,
292
+ "description": "Expert in restructuring and optimizing Filament PHP admin interfaces for maximum usability and efficiency. Focuses on impactful structural changes — not just cosmetic tweaks.",
293
+ "emoji": "🔧",
294
+ "color": "indigo",
295
+ "vibe": "Pragmatic perfectionist — streamlines complex admin environments."
296
+ },
297
+ {
298
+ "path": "engineering/engineering-frontend-developer.md",
299
+ "category": "engineering",
300
+ "name": "Frontend Developer",
301
+ "nameOverflows": false,
302
+ "description": "Expert frontend developer specializing in modern web technologies, React/Vue/Angular frameworks, UI implementation, and performance optimization",
303
+ "emoji": "🖥️",
304
+ "color": "cyan",
305
+ "vibe": "Builds responsive, accessible web apps with pixel-perfect precision."
306
+ },
307
+ {
308
+ "path": "engineering/engineering-git-workflow-master.md",
309
+ "category": "engineering",
310
+ "name": "Git Workflow Master",
311
+ "nameOverflows": false,
312
+ "description": "Expert in Git workflows, branching strategies, and version control best practices including conventional commits, rebasing, worktrees, and CI-friendly branch management.",
313
+ "emoji": "🌿",
314
+ "color": "orange",
315
+ "vibe": "Clean history, atomic commits, and branches that tell a story."
316
+ },
317
+ {
318
+ "path": "engineering/engineering-incident-response-commander.md",
319
+ "category": "engineering",
320
+ "name": "Incident Response Commander",
321
+ "nameOverflows": true,
322
+ "description": "Expert incident commander specializing in production incident management, structured response coordination, post-mortem facilitation, SLO/SLI tracking, and on-call process design for reliable engineering organizations.",
323
+ "emoji": "🚨",
324
+ "color": "#e63946",
325
+ "vibe": "Turns production chaos into structured resolution."
326
+ },
327
+ {
328
+ "path": "engineering/engineering-minimal-change-engineer.md",
329
+ "category": "engineering",
330
+ "name": "Minimal Change Engineer",
331
+ "nameOverflows": true,
332
+ "description": "Engineering specialist focused on minimum-viable diffs — fixes only what was asked, refuses scope creep, prefers three similar lines over a premature abstraction. The discipline that prevents bug-fix PRs from becoming refactor avalanches.",
333
+ "emoji": "🪡",
334
+ "color": "slate",
335
+ "vibe": "The smallest diff that solves the problem — every extra line is a liability."
336
+ },
337
+ {
338
+ "path": "engineering/engineering-mobile-app-builder.md",
339
+ "category": "engineering",
340
+ "name": "Mobile App Builder",
341
+ "nameOverflows": false,
342
+ "description": "Specialized mobile application developer with expertise in native iOS/Android development and cross-platform frameworks",
343
+ "emoji": "📲",
344
+ "color": "purple",
345
+ "vibe": "Ships native-quality apps on iOS and Android, fast."
346
+ },
347
+ {
348
+ "path": "engineering/engineering-rapid-prototyper.md",
349
+ "category": "engineering",
350
+ "name": "Rapid Prototyper",
351
+ "nameOverflows": false,
352
+ "description": "Specialized in ultra-fast proof-of-concept development and MVP creation using efficient tools and frameworks",
353
+ "emoji": "⚡",
354
+ "color": "green",
355
+ "vibe": "Turns an idea into a working prototype before the meeting's over."
356
+ },
357
+ {
358
+ "path": "engineering/engineering-security-engineer.md",
359
+ "category": "engineering",
360
+ "name": "Security Engineer",
361
+ "nameOverflows": false,
362
+ "description": "Expert application security engineer specializing in threat modeling, vulnerability assessment, secure code review, security architecture design, and incident response for modern web, API, and cloud-native applications.",
363
+ "emoji": "🔒",
364
+ "color": "red",
365
+ "vibe": "Models threats, reviews code, hunts vulnerabilities, and designs security architecture that actually holds under adversarial pressure."
366
+ },
367
+ {
368
+ "path": "engineering/engineering-senior-developer.md",
369
+ "category": "engineering",
370
+ "name": "Senior Developer",
371
+ "nameOverflows": false,
372
+ "description": "Premium implementation specialist - Masters Laravel/Livewire/FluxUI, advanced CSS, Three.js integration",
373
+ "emoji": "💎",
374
+ "color": "green",
375
+ "vibe": "Premium full-stack craftsperson — Laravel, Livewire, Three.js, advanced CSS."
376
+ },
377
+ {
378
+ "path": "engineering/engineering-software-architect.md",
379
+ "category": "engineering",
380
+ "name": "Software Architect",
381
+ "nameOverflows": false,
382
+ "description": "Expert software architect specializing in system design, domain-driven design, architectural patterns, and technical decision-making for scalable, maintainable systems.",
383
+ "emoji": "🏛️",
384
+ "color": "indigo",
385
+ "vibe": "Designs systems that survive the team that built them. Every decision has a trade-off — name it."
386
+ },
387
+ {
388
+ "path": "engineering/engineering-solidity-smart-contract-engineer.md",
389
+ "category": "engineering",
390
+ "name": "Solidity Smart Contract Engineer",
391
+ "nameOverflows": true,
392
+ "description": "Expert Solidity developer specializing in EVM smart contract architecture, gas optimization, upgradeable proxy patterns, DeFi protocol development, and security-first contract design across Ethereum and L2 chains.",
393
+ "emoji": "⛓️",
394
+ "color": "orange",
395
+ "vibe": "Battle-hardened Solidity developer who lives and breathes the EVM."
396
+ },
397
+ {
398
+ "path": "engineering/engineering-sre.md",
399
+ "category": "engineering",
400
+ "name": "SRE (Site Reliability Engineer)",
401
+ "nameOverflows": true,
402
+ "description": "Expert site reliability engineer specializing in SLOs, error budgets, observability, chaos engineering, and toil reduction for production systems at scale.",
403
+ "emoji": "🛡️",
404
+ "color": "#e63946",
405
+ "vibe": "Reliability is a feature. Error budgets fund velocity — spend them wisely."
406
+ },
407
+ {
408
+ "path": "engineering/engineering-technical-writer.md",
409
+ "category": "engineering",
410
+ "name": "Technical Writer",
411
+ "nameOverflows": false,
412
+ "description": "Expert technical writer specializing in developer documentation, API references, README files, and tutorials. Transforms complex engineering concepts into clear, accurate, and engaging docs that developers actually read and use.",
413
+ "emoji": "📚",
414
+ "color": "teal",
415
+ "vibe": "Writes the docs that developers actually read and use."
416
+ },
417
+ {
418
+ "path": "engineering/engineering-threat-detection-engineer.md",
419
+ "category": "engineering",
420
+ "name": "Threat Detection Engineer",
421
+ "nameOverflows": true,
422
+ "description": "Expert detection engineer specializing in SIEM rule development, MITRE ATT&CK coverage mapping, threat hunting, alert tuning, and detection-as-code pipelines for security operations teams.",
423
+ "emoji": "🎯",
424
+ "color": "#7b2d8e",
425
+ "vibe": "Builds the detection layer that catches attackers after they bypass prevention."
426
+ },
427
+ {
428
+ "path": "engineering/engineering-voice-ai-integration-engineer.md",
429
+ "category": "engineering",
430
+ "name": "Voice AI Integration Engineer",
431
+ "nameOverflows": true,
432
+ "description": "Expert in building end-to-end speech transcription pipelines using Whisper-style models and cloud ASR services — from raw audio ingestion through preprocessing, transcript cleanup, subtitle generation, speaker diarization, and structured downstream integration into apps, APIs, and CMS platforms.",
433
+ "emoji": "🎙️",
434
+ "color": "violet",
435
+ "vibe": "Turns raw audio into structured, production-ready text that machines and humans can actually use."
436
+ },
437
+ {
438
+ "path": "engineering/engineering-wechat-mini-program-developer.md",
439
+ "category": "engineering",
440
+ "name": "WeChat Mini Program Developer",
441
+ "nameOverflows": true,
442
+ "description": "Expert WeChat Mini Program developer specializing in 小程序 development with WXML/WXSS/WXS, WeChat API integration, payment systems, subscription messaging, and the full WeChat ecosystem.",
443
+ "emoji": "💬",
444
+ "color": "green",
445
+ "vibe": "Builds performant Mini Programs that thrive in the WeChat ecosystem."
446
+ },
447
+ {
448
+ "path": "finance/finance-bookkeeper-controller.md",
449
+ "category": "finance",
450
+ "name": "Bookkeeper & Controller",
451
+ "nameOverflows": true,
452
+ "description": "Expert bookkeeper and controller specializing in day-to-day accounting operations, financial reconciliations, month-end close processes, and internal controls. Ensures the accuracy, completeness, and timeliness of financial records while maintaining GAAP compliance and audit readiness at all times.",
453
+ "emoji": "📒",
454
+ "color": "green",
455
+ "vibe": "Every penny accounted for, every close on time — the backbone of financial trust."
456
+ },
457
+ {
458
+ "path": "finance/finance-financial-analyst.md",
459
+ "category": "finance",
460
+ "name": "Financial Analyst",
461
+ "nameOverflows": false,
462
+ "description": "Expert financial analyst specializing in financial modeling, forecasting, scenario analysis, and data-driven decision support. Transforms raw financial data into actionable business intelligence that drives strategic planning, investment decisions, and operational optimization.",
463
+ "emoji": "📊",
464
+ "color": "green",
465
+ "vibe": "Turns spreadsheets into strategy — every number tells a story, every model drives a decision."
466
+ },
467
+ {
468
+ "path": "finance/finance-fpa-analyst.md",
469
+ "category": "finance",
470
+ "name": "FP&A Analyst",
471
+ "nameOverflows": false,
472
+ "description": "Expert Financial Planning & Analysis (FP&A) analyst specializing in budgeting, variance analysis, financial planning, rolling forecasts, and strategic decision support. Bridges the gap between the numbers and the business narrative to drive operational performance and strategic resource allocation.",
473
+ "emoji": "📈",
474
+ "color": "green",
475
+ "vibe": "The budget whisperer — turns plans into numbers and numbers into action."
476
+ },
477
+ {
478
+ "path": "finance/finance-investment-researcher.md",
479
+ "category": "finance",
480
+ "name": "Investment Researcher",
481
+ "nameOverflows": false,
482
+ "description": "Expert investment researcher specializing in market research, due diligence, portfolio analysis, and asset valuation. Conducts rigorous fundamental and quantitative analysis to identify investment opportunities, assess risks, and support data-driven portfolio decisions across public equities, private markets, and alternative assets.",
483
+ "emoji": "🔍",
484
+ "color": "green",
485
+ "vibe": "Digs deeper than the consensus — finds alpha in the footnotes and risks in the narratives."
486
+ },
487
+ {
488
+ "path": "finance/finance-tax-strategist.md",
489
+ "category": "finance",
490
+ "name": "Tax Strategist",
491
+ "nameOverflows": false,
492
+ "description": "Expert tax strategist specializing in tax optimization, multi-jurisdictional compliance, transfer pricing, and strategic tax planning. Navigates complex tax codes to minimize liability while ensuring full regulatory compliance across local, state, federal, and international tax regimes.",
493
+ "emoji": "🏛️",
494
+ "color": "green",
495
+ "vibe": "Finds every legal dollar of savings in the tax code — compliance is the floor, optimization is the mission."
496
+ },
497
+ {
498
+ "path": "game-development/blender/blender-addon-engineer.md",
499
+ "category": "game-development",
500
+ "name": "Blender Add-on Engineer",
501
+ "nameOverflows": true,
502
+ "description": "Blender tooling specialist - Builds Python add-ons, asset validators, exporters, and pipeline automations that turn repetitive DCC work into reliable one-click workflows",
503
+ "emoji": "🧩",
504
+ "color": "blue",
505
+ "vibe": "Turns repetitive Blender pipeline work into reliable one-click tools that artists actually use."
506
+ },
507
+ {
508
+ "path": "game-development/game-audio-engineer.md",
509
+ "category": "game-development",
510
+ "name": "Game Audio Engineer",
511
+ "nameOverflows": false,
512
+ "description": "Interactive audio specialist - Masters FMOD/Wwise integration, adaptive music systems, spatial audio, and audio performance budgeting across all game engines",
513
+ "emoji": "🎵",
514
+ "color": "indigo",
515
+ "vibe": "Makes every gunshot, footstep, and musical cue feel alive in the game world."
516
+ },
517
+ {
518
+ "path": "game-development/game-designer.md",
519
+ "category": "game-development",
520
+ "name": "Game Designer",
521
+ "nameOverflows": false,
522
+ "description": "Systems and mechanics architect - Masters GDD authorship, player psychology, economy balancing, and gameplay loop design across all engines and genres",
523
+ "emoji": "🎮",
524
+ "color": "yellow",
525
+ "vibe": "Thinks in loops, levers, and player motivations to architect compelling gameplay."
526
+ },
527
+ {
528
+ "path": "game-development/godot/godot-gameplay-scripter.md",
529
+ "category": "game-development",
530
+ "name": "Godot Gameplay Scripter",
531
+ "nameOverflows": true,
532
+ "description": "Composition and signal integrity specialist - Masters GDScript 2.0, C# integration, node-based architecture, and type-safe signal design for Godot 4 projects",
533
+ "emoji": "🎯",
534
+ "color": "purple",
535
+ "vibe": "Builds Godot 4 gameplay systems with the discipline of a software architect."
536
+ },
537
+ {
538
+ "path": "game-development/godot/godot-multiplayer-engineer.md",
539
+ "category": "game-development",
540
+ "name": "Godot Multiplayer Engineer",
541
+ "nameOverflows": true,
542
+ "description": "Godot 4 networking specialist - Masters the MultiplayerAPI, scene replication, ENet/WebRTC transport, RPCs, and authority models for real-time multiplayer games",
543
+ "emoji": "🌐",
544
+ "color": "violet",
545
+ "vibe": "Masters Godot's MultiplayerAPI to make real-time netcode feel seamless."
546
+ },
547
+ {
548
+ "path": "game-development/godot/godot-shader-developer.md",
549
+ "category": "game-development",
550
+ "name": "Godot Shader Developer",
551
+ "nameOverflows": false,
552
+ "description": "Godot 4 visual effects specialist - Masters the Godot Shading Language (GLSL-like), VisualShader editor, CanvasItem and Spatial shaders, post-processing, and performance optimization for 2D/3D effects",
553
+ "emoji": "💎",
554
+ "color": "purple",
555
+ "vibe": "Bends light and pixels through Godot's shading language to create stunning effects."
556
+ },
557
+ {
558
+ "path": "game-development/level-designer.md",
559
+ "category": "game-development",
560
+ "name": "Level Designer",
561
+ "nameOverflows": false,
562
+ "description": "Spatial storytelling and flow specialist - Masters layout theory, pacing architecture, encounter design, and environmental narrative across all game engines",
563
+ "emoji": "🗺️",
564
+ "color": "teal",
565
+ "vibe": "Treats every level as an authored experience where space tells the story."
566
+ },
567
+ {
568
+ "path": "game-development/narrative-designer.md",
569
+ "category": "game-development",
570
+ "name": "Narrative Designer",
571
+ "nameOverflows": false,
572
+ "description": "Story systems and dialogue architect - Masters GDD-aligned narrative design, branching dialogue, lore architecture, and environmental storytelling across all game engines",
573
+ "emoji": "📖",
574
+ "color": "red",
575
+ "vibe": "Architects story systems where narrative and gameplay are inseparable."
576
+ },
577
+ {
578
+ "path": "game-development/roblox-studio/roblox-avatar-creator.md",
579
+ "category": "game-development",
580
+ "name": "Roblox Avatar Creator",
581
+ "nameOverflows": false,
582
+ "description": "Roblox UGC and avatar pipeline specialist - Masters Roblox's avatar system, UGC item creation, accessory rigging, texture standards, and the Creator Marketplace submission pipeline",
583
+ "emoji": "👤",
584
+ "color": "fuchsia",
585
+ "vibe": "Masters the UGC pipeline from rigging to Creator Marketplace submission."
586
+ },
587
+ {
588
+ "path": "game-development/roblox-studio/roblox-experience-designer.md",
589
+ "category": "game-development",
590
+ "name": "Roblox Experience Designer",
591
+ "nameOverflows": true,
592
+ "description": "Roblox platform UX and monetization specialist - Masters engagement loop design, DataStore-driven progression, Roblox monetization systems (Passes, Developer Products, UGC), and player retention for Roblox experiences",
593
+ "emoji": "🎪",
594
+ "color": "lime",
595
+ "vibe": "Designs engagement loops and monetization systems that keep players coming back."
596
+ },
597
+ {
598
+ "path": "game-development/roblox-studio/roblox-systems-scripter.md",
599
+ "category": "game-development",
600
+ "name": "Roblox Systems Scripter",
601
+ "nameOverflows": true,
602
+ "description": "Roblox platform engineering specialist - Masters Luau, the client-server security model, RemoteEvents/RemoteFunctions, DataStore, and module architecture for scalable Roblox experiences",
603
+ "emoji": "🔧",
604
+ "color": "rose",
605
+ "vibe": "Builds scalable Roblox experiences with rock-solid Luau and client-server security."
606
+ },
607
+ {
608
+ "path": "game-development/technical-artist.md",
609
+ "category": "game-development",
610
+ "name": "Technical Artist",
611
+ "nameOverflows": false,
612
+ "description": "Art-to-engine pipeline specialist - Masters shaders, VFX systems, LOD pipelines, performance budgeting, and cross-engine asset optimization",
613
+ "emoji": "🎨",
614
+ "color": "pink",
615
+ "vibe": "The bridge between artistic vision and engine reality."
616
+ },
617
+ {
618
+ "path": "game-development/unity/unity-architect.md",
619
+ "category": "game-development",
620
+ "name": "Unity Architect",
621
+ "nameOverflows": false,
622
+ "description": "Data-driven modularity specialist - Masters ScriptableObjects, decoupled systems, and single-responsibility component design for scalable Unity projects",
623
+ "emoji": "🏛️",
624
+ "color": "blue",
625
+ "vibe": "Designs data-driven, decoupled Unity systems that scale without spaghetti."
626
+ },
627
+ {
628
+ "path": "game-development/unity/unity-editor-tool-developer.md",
629
+ "category": "game-development",
630
+ "name": "Unity Editor Tool Developer",
631
+ "nameOverflows": true,
632
+ "description": "Unity editor automation specialist - Masters custom EditorWindows, PropertyDrawers, AssetPostprocessors, ScriptedImporters, and pipeline automation that saves teams hours per week",
633
+ "emoji": "🛠️",
634
+ "color": "gray",
635
+ "vibe": "Builds custom Unity editor tools that save teams hours every week."
636
+ },
637
+ {
638
+ "path": "game-development/unity/unity-multiplayer-engineer.md",
639
+ "category": "game-development",
640
+ "name": "Unity Multiplayer Engineer",
641
+ "nameOverflows": true,
642
+ "description": "Networked gameplay specialist - Masters Netcode for GameObjects, Unity Gaming Services (Relay/Lobby), client-server authority, lag compensation, and state synchronization",
643
+ "emoji": "🔗",
644
+ "color": "blue",
645
+ "vibe": "Makes networked Unity gameplay feel local through smart sync and prediction."
646
+ },
647
+ {
648
+ "path": "game-development/unity/unity-shader-graph-artist.md",
649
+ "category": "game-development",
650
+ "name": "Unity Shader Graph Artist",
651
+ "nameOverflows": true,
652
+ "description": "Visual effects and material specialist - Masters Unity Shader Graph, HLSL, URP/HDRP rendering pipelines, and custom pass authoring for real-time visual effects",
653
+ "emoji": "✨",
654
+ "color": "cyan",
655
+ "vibe": "Crafts real-time visual magic through Shader Graph and custom render passes."
656
+ },
657
+ {
658
+ "path": "game-development/unreal-engine/unreal-multiplayer-architect.md",
659
+ "category": "game-development",
660
+ "name": "Unreal Multiplayer Architect",
661
+ "nameOverflows": true,
662
+ "description": "Unreal Engine networking specialist - Masters Actor replication, GameMode/GameState architecture, server-authoritative gameplay, network prediction, and dedicated server setup for UE5",
663
+ "emoji": "🌐",
664
+ "color": "red",
665
+ "vibe": "Architects server-authoritative Unreal multiplayer that feels lag-free."
666
+ },
667
+ {
668
+ "path": "game-development/unreal-engine/unreal-systems-engineer.md",
669
+ "category": "game-development",
670
+ "name": "Unreal Systems Engineer",
671
+ "nameOverflows": true,
672
+ "description": "Performance and hybrid architecture specialist - Masters C++/Blueprint continuum, Nanite geometry, Lumen GI, and Gameplay Ability System for AAA-grade Unreal Engine projects",
673
+ "emoji": "⚙️",
674
+ "color": "orange",
675
+ "vibe": "Masters the C++/Blueprint continuum for AAA-grade Unreal Engine projects."
676
+ },
677
+ {
678
+ "path": "game-development/unreal-engine/unreal-technical-artist.md",
679
+ "category": "game-development",
680
+ "name": "Unreal Technical Artist",
681
+ "nameOverflows": true,
682
+ "description": "Unreal Engine visual pipeline specialist - Masters the Material Editor, Niagara VFX, Procedural Content Generation, and the art-to-engine pipeline for UE5 projects",
683
+ "emoji": "🎨",
684
+ "color": "orange",
685
+ "vibe": "Bridges Niagara VFX, Material Editor, and PCG into polished UE5 visuals."
686
+ },
687
+ {
688
+ "path": "game-development/unreal-engine/unreal-world-builder.md",
689
+ "category": "game-development",
690
+ "name": "Unreal World Builder",
691
+ "nameOverflows": false,
692
+ "description": "Open-world and environment specialist - Masters UE5 World Partition, Landscape, procedural foliage, HLOD, and large-scale level streaming for seamless open-world experiences",
693
+ "emoji": "🌍",
694
+ "color": "green",
695
+ "vibe": "Builds seamless open worlds with World Partition, Nanite, and procedural foliage."
696
+ },
697
+ {
698
+ "path": "integrations/mcp-memory/backend-architect-with-memory.md",
699
+ "category": "integrations",
700
+ "name": "Backend Architect",
701
+ "nameOverflows": false,
702
+ "description": "Senior backend architect specializing in scalable system design, database architecture, API development, and cloud infrastructure. Builds robust, secure, performant server-side applications and microservices",
703
+ "emoji": null,
704
+ "color": "blue",
705
+ "vibe": null,
706
+ "displayName": "Backend Architect (integrations)"
707
+ },
708
+ {
709
+ "path": "marketing/marketing-agentic-search-optimizer.md",
710
+ "category": "marketing",
711
+ "name": "Agentic Search Optimizer",
712
+ "nameOverflows": true,
713
+ "description": "Expert in WebMCP readiness and agentic task completion — audits whether AI agents can actually accomplish tasks on your site (book, buy, register, subscribe), implements WebMCP declarative and imperative patterns, and measures task completion rates across AI browsing agents",
714
+ "emoji": "🤖",
715
+ "color": "#0891B2",
716
+ "vibe": "While everyone else is optimizing to get cited by AI, this agent makes sure AI can actually do the thing on your site"
717
+ },
718
+ {
719
+ "path": "marketing/marketing-ai-citation-strategist.md",
720
+ "category": "marketing",
721
+ "name": "AI Citation Strategist",
722
+ "nameOverflows": false,
723
+ "description": "Expert in AI recommendation engine optimization (AEO/GEO) — audits brand visibility across ChatGPT, Claude, Gemini, and Perplexity, identifies why competitors get cited instead, and delivers content fixes that improve AI citations",
724
+ "emoji": "🔮",
725
+ "color": "#6D28D9",
726
+ "vibe": "Figures out why the AI recommends your competitor and rewires the signals so it recommends you instead"
727
+ },
728
+ {
729
+ "path": "marketing/marketing-app-store-optimizer.md",
730
+ "category": "marketing",
731
+ "name": "App Store Optimizer",
732
+ "nameOverflows": false,
733
+ "description": "Expert app store marketing specialist focused on App Store Optimization (ASO), conversion rate optimization, and app discoverability",
734
+ "emoji": "📱",
735
+ "color": "blue",
736
+ "vibe": "Gets your app found, downloaded, and loved in the store."
737
+ },
738
+ {
739
+ "path": "marketing/marketing-baidu-seo-specialist.md",
740
+ "category": "marketing",
741
+ "name": "Baidu SEO Specialist",
742
+ "nameOverflows": false,
743
+ "description": "Expert Baidu search optimization specialist focused on Chinese search engine ranking, Baidu ecosystem integration, ICP compliance, Chinese keyword research, and mobile-first indexing for the China market.",
744
+ "emoji": "🇨🇳",
745
+ "color": "blue",
746
+ "vibe": "Masters Baidu's algorithm so your brand ranks in China's search ecosystem."
747
+ },
748
+ {
749
+ "path": "marketing/marketing-bilibili-content-strategist.md",
750
+ "category": "marketing",
751
+ "name": "Bilibili Content Strategist",
752
+ "nameOverflows": true,
753
+ "description": "Expert Bilibili marketing specialist focused on UP主 growth, danmaku culture mastery, B站 algorithm optimization, community building, and branded content strategy for China's leading video community platform.",
754
+ "emoji": "🎬",
755
+ "color": "pink",
756
+ "vibe": "Speaks fluent danmaku and grows your brand on B站."
757
+ },
758
+ {
759
+ "path": "marketing/marketing-book-co-author.md",
760
+ "category": "marketing",
761
+ "name": "Book Co-Author",
762
+ "nameOverflows": false,
763
+ "description": "Strategic thought-leadership book collaborator for founders, experts, and operators turning voice notes, fragments, and positioning into structured first-person chapters.",
764
+ "emoji": "📘",
765
+ "color": "#8B5E3C",
766
+ "vibe": "Turns rough expertise into a recognizable book people can quote, remember, and buy into."
767
+ },
768
+ {
769
+ "path": "marketing/marketing-carousel-growth-engine.md",
770
+ "category": "marketing",
771
+ "name": "Carousel Growth Engine",
772
+ "nameOverflows": false,
773
+ "description": "Autonomous TikTok and Instagram carousel generation specialist. Analyzes any website URL with Playwright, generates viral 6-slide carousels via Gemini image generation, publishes directly to feed via Upload-Post API with auto trending music, fetches analytics, and iteratively improves through a data-driven learning loop.",
774
+ "emoji": "🎠",
775
+ "color": "#FF0050",
776
+ "vibe": "Autonomously generates viral carousels from any URL and publishes them to feed."
777
+ },
778
+ {
779
+ "path": "marketing/marketing-china-ecommerce-operator.md",
780
+ "category": "marketing",
781
+ "name": "China E-Commerce Operator",
782
+ "nameOverflows": true,
783
+ "description": "Expert China e-commerce operations specialist covering Taobao, Tmall, Pinduoduo, and JD ecosystems with deep expertise in product listing optimization, live commerce, store operations, 618/Double 11 campaigns, and cross-platform strategy.",
784
+ "emoji": "🛒",
785
+ "color": "red",
786
+ "vibe": "Runs your Taobao, Tmall, Pinduoduo, and JD storefronts like a native operator."
787
+ },
788
+ {
789
+ "path": "marketing/marketing-china-market-localization-strategist.md",
790
+ "category": "marketing",
791
+ "name": "China Market Localization Strategist",
792
+ "nameOverflows": true,
793
+ "description": "Full-stack China market localization expert who transforms real-time trend signals into executable go-to-market strategies across Douyin, Xiaohongshu, WeChat, Bilibili, and beyond",
794
+ "emoji": "🇨🇳",
795
+ "color": "#E60012",
796
+ "vibe": "Turns China's chaotic trend landscape into a precision-guided marketing machine — data in, revenue out."
797
+ },
798
+ {
799
+ "path": "marketing/marketing-content-creator.md",
800
+ "category": "marketing",
801
+ "name": "Content Creator",
802
+ "nameOverflows": false,
803
+ "description": "Expert content strategist and creator for multi-platform campaigns. Develops editorial calendars, creates compelling copy, manages brand storytelling, and optimizes content for engagement across all digital channels.",
804
+ "emoji": "✍️",
805
+ "color": "teal",
806
+ "vibe": "Crafts compelling stories across every platform your audience lives on."
807
+ },
808
+ {
809
+ "path": "marketing/marketing-cross-border-ecommerce.md",
810
+ "category": "marketing",
811
+ "name": "Cross-Border E-Commerce Specialist",
812
+ "nameOverflows": true,
813
+ "description": "Full-funnel cross-border e-commerce strategist covering Amazon, Shopee, Lazada, AliExpress, Temu, and TikTok Shop operations, international logistics and overseas warehousing, compliance and taxation, multilingual listing optimization, brand globalization, and DTC independent site development.",
814
+ "emoji": "🌏",
815
+ "color": "blue",
816
+ "vibe": "Takes your products from Chinese factories to global bestseller lists."
817
+ },
818
+ {
819
+ "path": "marketing/marketing-douyin-strategist.md",
820
+ "category": "marketing",
821
+ "name": "Douyin Strategist",
822
+ "nameOverflows": false,
823
+ "description": "Short-video marketing expert specializing in the Douyin platform, with deep expertise in recommendation algorithm mechanics, viral video planning, livestream commerce workflows, and full-funnel brand growth through content matrix strategies.",
824
+ "emoji": "🎵",
825
+ "color": "#000000",
826
+ "vibe": "Masters the Douyin algorithm so your short videos actually get seen."
827
+ },
828
+ {
829
+ "path": "marketing/marketing-growth-hacker.md",
830
+ "category": "marketing",
831
+ "name": "Growth Hacker",
832
+ "nameOverflows": false,
833
+ "description": "Expert growth strategist specializing in rapid user acquisition through data-driven experimentation. Develops viral loops, optimizes conversion funnels, and finds scalable growth channels for exponential business growth.",
834
+ "emoji": "🚀",
835
+ "color": "green",
836
+ "vibe": "Finds the growth channel nobody's exploited yet — then scales it."
837
+ },
838
+ {
839
+ "path": "marketing/marketing-instagram-curator.md",
840
+ "category": "marketing",
841
+ "name": "Instagram Curator",
842
+ "nameOverflows": false,
843
+ "description": "Expert Instagram marketing specialist focused on visual storytelling, community building, and multi-format content optimization. Masters aesthetic development and drives meaningful engagement.",
844
+ "emoji": "📸",
845
+ "color": "#E4405F",
846
+ "vibe": "Masters the grid aesthetic and turns scrollers into an engaged community."
847
+ },
848
+ {
849
+ "path": "marketing/marketing-kuaishou-strategist.md",
850
+ "category": "marketing",
851
+ "name": "Kuaishou Strategist",
852
+ "nameOverflows": false,
853
+ "description": "Expert Kuaishou marketing strategist specializing in short-video content for China's lower-tier city markets, live commerce operations, community trust building, and grassroots audience growth on 快手.",
854
+ "emoji": "🎥",
855
+ "color": "orange",
856
+ "vibe": "Grows grassroots audiences and drives live commerce on 快手."
857
+ },
858
+ {
859
+ "path": "marketing/marketing-linkedin-content-creator.md",
860
+ "category": "marketing",
861
+ "name": "LinkedIn Content Creator",
862
+ "nameOverflows": true,
863
+ "description": "Expert LinkedIn content strategist focused on thought leadership, personal brand building, and high-engagement professional content. Masters LinkedIn's algorithm and culture to drive inbound opportunities for founders, job seekers, developers, and anyone building a professional presence.",
864
+ "emoji": "💼",
865
+ "color": "#0A66C2",
866
+ "vibe": "Turns professional expertise into scroll-stopping content that makes the right people find you."
867
+ },
868
+ {
869
+ "path": "marketing/marketing-livestream-commerce-coach.md",
870
+ "category": "marketing",
871
+ "name": "Livestream Commerce Coach",
872
+ "nameOverflows": true,
873
+ "description": "Veteran livestream e-commerce coach specializing in host training and live room operations across Douyin, Kuaishou, Taobao Live, and Channels, covering script design, product sequencing, paid-vs-organic traffic balancing, conversion closing techniques, and real-time data-driven optimization.",
874
+ "emoji": "🎙️",
875
+ "color": "#E63946",
876
+ "vibe": "Coaches your livestream hosts from awkward beginners to million-yuan sellers."
877
+ },
878
+ {
879
+ "path": "marketing/marketing-podcast-strategist.md",
880
+ "category": "marketing",
881
+ "name": "Podcast Strategist",
882
+ "nameOverflows": false,
883
+ "description": "Content strategy and operations expert for the Chinese podcast market, with deep expertise in Xiaoyuzhou, Ximalaya, and other major audio platforms, covering show positioning, audio production, audience growth, multi-platform distribution, and monetization to help podcast creators build sticky audio content brands.",
884
+ "emoji": "🎧",
885
+ "color": "purple",
886
+ "vibe": "Guides your podcast from concept to loyal audience in China's booming audio scene."
887
+ },
888
+ {
889
+ "path": "marketing/marketing-private-domain-operator.md",
890
+ "category": "marketing",
891
+ "name": "Private Domain Operator",
892
+ "nameOverflows": true,
893
+ "description": "Expert in building enterprise WeChat (WeCom) private domain ecosystems, with deep expertise in SCRM systems, segmented community operations, Mini Program commerce integration, user lifecycle management, and full-funnel conversion optimization.",
894
+ "emoji": "🔒",
895
+ "color": "#1A73E8",
896
+ "vibe": "Builds your WeChat private traffic empire from first contact to lifetime value."
897
+ },
898
+ {
899
+ "path": "marketing/marketing-reddit-community-builder.md",
900
+ "category": "marketing",
901
+ "name": "Reddit Community Builder",
902
+ "nameOverflows": true,
903
+ "description": "Expert Reddit marketing specialist focused on authentic community engagement, value-driven content creation, and long-term relationship building. Masters Reddit culture navigation.",
904
+ "emoji": "💬",
905
+ "color": "#FF4500",
906
+ "vibe": "Speaks fluent Reddit and builds community trust the authentic way."
907
+ },
908
+ {
909
+ "path": "marketing/marketing-seo-specialist.md",
910
+ "category": "marketing",
911
+ "name": "SEO Specialist",
912
+ "nameOverflows": false,
913
+ "description": "Expert search engine optimization strategist specializing in technical SEO, content optimization, link authority building, and organic search growth. Drives sustainable traffic through data-driven search strategies.",
914
+ "emoji": "🔍",
915
+ "color": "#4285F4",
916
+ "vibe": "Drives sustainable organic traffic through technical SEO and content strategy."
917
+ },
918
+ {
919
+ "path": "marketing/marketing-short-video-editing-coach.md",
920
+ "category": "marketing",
921
+ "name": "Short-Video Editing Coach",
922
+ "nameOverflows": true,
923
+ "description": "Hands-on short-video editing coach covering the full post-production pipeline, with mastery of CapCut Pro, Premiere Pro, DaVinci Resolve, and Final Cut Pro across composition and camera language, color grading, audio engineering, motion graphics and VFX, subtitle design, multi-platform export optimization, editing workflow efficiency, and AI-assisted editing.",
924
+ "emoji": "🎬",
925
+ "color": "#7B2D8E",
926
+ "vibe": "Turns raw footage into scroll-stopping short videos with professional polish."
927
+ },
928
+ {
929
+ "path": "marketing/marketing-social-media-strategist.md",
930
+ "category": "marketing",
931
+ "name": "Social Media Strategist",
932
+ "nameOverflows": true,
933
+ "description": "Expert social media strategist for LinkedIn, Twitter, and professional platforms. Creates cross-platform campaigns, builds communities, manages real-time engagement, and develops thought leadership strategies.",
934
+ "emoji": "📣",
935
+ "color": "blue",
936
+ "vibe": "Orchestrates cross-platform campaigns that build community and drive engagement."
937
+ },
938
+ {
939
+ "path": "marketing/marketing-tiktok-strategist.md",
940
+ "category": "marketing",
941
+ "name": "TikTok Strategist",
942
+ "nameOverflows": false,
943
+ "description": "Expert TikTok marketing specialist focused on viral content creation, algorithm optimization, and community building. Masters TikTok's unique culture and features for brand growth.",
944
+ "emoji": "🎵",
945
+ "color": "#000000",
946
+ "vibe": "Rides the algorithm and builds community through authentic TikTok culture."
947
+ },
948
+ {
949
+ "path": "marketing/marketing-twitter-engager.md",
950
+ "category": "marketing",
951
+ "name": "Twitter Engager",
952
+ "nameOverflows": false,
953
+ "description": "Expert Twitter marketing specialist focused on real-time engagement, thought leadership building, and community-driven growth. Builds brand authority through authentic conversation participation and viral thread creation.",
954
+ "emoji": "🐦",
955
+ "color": "#1DA1F2",
956
+ "vibe": "Builds thought leadership and brand authority 280 characters at a time."
957
+ },
958
+ {
959
+ "path": "marketing/marketing-video-optimization-specialist.md",
960
+ "category": "marketing",
961
+ "name": "Video Optimization Specialist",
962
+ "nameOverflows": true,
963
+ "description": "Video marketing strategist specializing in YouTube algorithm optimization, audience retention, chaptering, thumbnail concepts, and cross-platform video syndication.",
964
+ "emoji": "🎬",
965
+ "color": "red",
966
+ "vibe": "Energetic, data-driven, strategic, and hyper-focused on audience retention"
967
+ },
968
+ {
969
+ "path": "marketing/marketing-wechat-official-account.md",
970
+ "category": "marketing",
971
+ "name": "WeChat Official Account Manager",
972
+ "nameOverflows": true,
973
+ "description": "Expert WeChat Official Account (OA) strategist specializing in content marketing, subscriber engagement, and conversion optimization. Masters multi-format content and builds loyal communities through consistent value delivery.",
974
+ "emoji": "📱",
975
+ "color": "#09B83E",
976
+ "vibe": "Grows loyal WeChat subscriber communities through consistent value delivery."
977
+ },
978
+ {
979
+ "path": "marketing/marketing-weibo-strategist.md",
980
+ "category": "marketing",
981
+ "name": "Weibo Strategist",
982
+ "nameOverflows": false,
983
+ "description": "Full-spectrum operations expert for Sina Weibo, with deep expertise in trending topic mechanics, Super Topic community management, public sentiment monitoring, fan economy strategies, and Weibo advertising, helping brands achieve viral reach and sustained growth on China's leading public discourse platform.",
984
+ "emoji": "🔥",
985
+ "color": "#FF8200",
986
+ "vibe": "Makes your brand trend on Weibo and keeps the conversation going."
987
+ },
988
+ {
989
+ "path": "marketing/marketing-xiaohongshu-specialist.md",
990
+ "category": "marketing",
991
+ "name": "Xiaohongshu Specialist",
992
+ "nameOverflows": false,
993
+ "description": "Expert Xiaohongshu marketing specialist focused on lifestyle content, trend-driven strategies, and authentic community engagement. Masters micro-content creation and drives viral growth through aesthetic storytelling.",
994
+ "emoji": "🌸",
995
+ "color": "#FF1B6D",
996
+ "vibe": "Masters lifestyle content and aesthetic storytelling on 小红书."
997
+ },
998
+ {
999
+ "path": "marketing/marketing-zhihu-strategist.md",
1000
+ "category": "marketing",
1001
+ "name": "Zhihu Strategist",
1002
+ "nameOverflows": false,
1003
+ "description": "Expert Zhihu marketing specialist focused on thought leadership, community credibility, and knowledge-driven engagement. Masters question-answering strategy and builds brand authority through authentic expertise sharing.",
1004
+ "emoji": "🧠",
1005
+ "color": "#0084FF",
1006
+ "vibe": "Builds brand authority through expert knowledge-sharing on 知乎."
1007
+ },
1008
+ {
1009
+ "path": "paid-media/paid-media-auditor.md",
1010
+ "category": "paid-media",
1011
+ "name": "Paid Media Auditor",
1012
+ "nameOverflows": false,
1013
+ "description": "Comprehensive paid media auditor who systematically evaluates Google Ads, Microsoft Ads, and Meta accounts across 200+ checkpoints spanning account structure, tracking, bidding, creative, audiences, and competitive positioning. Produces actionable audit reports with prioritized recommendations and projected impact.",
1014
+ "emoji": "📋",
1015
+ "color": "orange",
1016
+ "vibe": "Finds the waste in your ad spend before your CFO does."
1017
+ },
1018
+ {
1019
+ "path": "paid-media/paid-media-creative-strategist.md",
1020
+ "category": "paid-media",
1021
+ "name": "Ad Creative Strategist",
1022
+ "nameOverflows": false,
1023
+ "description": "Paid media creative specialist focused on ad copywriting, RSA optimization, asset group design, and creative testing frameworks across Google, Meta, Microsoft, and programmatic platforms. Bridges the gap between performance data and persuasive messaging.",
1024
+ "emoji": "✍️",
1025
+ "color": "orange",
1026
+ "vibe": "Turns ad creative from guesswork into a repeatable science."
1027
+ },
1028
+ {
1029
+ "path": "paid-media/paid-media-paid-social-strategist.md",
1030
+ "category": "paid-media",
1031
+ "name": "Paid Social Strategist",
1032
+ "nameOverflows": false,
1033
+ "description": "Cross-platform paid social advertising specialist covering Meta (Facebook/Instagram), LinkedIn, TikTok, Pinterest, X, and Snapchat. Designs full-funnel social ad programs from prospecting through retargeting with platform-specific creative and audience strategies.",
1034
+ "emoji": "📱",
1035
+ "color": "orange",
1036
+ "vibe": "Makes every dollar on Meta, LinkedIn, and TikTok ads work harder."
1037
+ },
1038
+ {
1039
+ "path": "paid-media/paid-media-ppc-strategist.md",
1040
+ "category": "paid-media",
1041
+ "name": "PPC Campaign Strategist",
1042
+ "nameOverflows": true,
1043
+ "description": "Senior paid media strategist specializing in large-scale search, shopping, and performance max campaign architecture across Google, Microsoft, and Amazon ad platforms. Designs account structures, budget allocation frameworks, and bidding strategies that scale from $10K to $10M+ monthly spend.",
1044
+ "emoji": "💰",
1045
+ "color": "orange",
1046
+ "vibe": "Architects PPC campaigns that scale from $10K to $10M+ monthly."
1047
+ },
1048
+ {
1049
+ "path": "paid-media/paid-media-programmatic-buyer.md",
1050
+ "category": "paid-media",
1051
+ "name": "Programmatic & Display Buyer",
1052
+ "nameOverflows": true,
1053
+ "description": "Display advertising and programmatic media buying specialist covering managed placements, Google Display Network, DV360, trade desk platforms, partner media (newsletters, sponsored content), and ABM display strategies via platforms like Demandbase and 6Sense.",
1054
+ "emoji": "📺",
1055
+ "color": "orange",
1056
+ "vibe": "Buys display and video inventory at scale with surgical precision."
1057
+ },
1058
+ {
1059
+ "path": "paid-media/paid-media-search-query-analyst.md",
1060
+ "category": "paid-media",
1061
+ "name": "Search Query Analyst",
1062
+ "nameOverflows": false,
1063
+ "description": "Specialist in search term analysis, negative keyword architecture, and query-to-intent mapping. Turns raw search query data into actionable optimizations that eliminate waste and amplify high-intent traffic across paid search accounts.",
1064
+ "emoji": "🔍",
1065
+ "color": "orange",
1066
+ "vibe": "Mines search queries to find the gold your competitors are missing."
1067
+ },
1068
+ {
1069
+ "path": "paid-media/paid-media-tracking-specialist.md",
1070
+ "category": "paid-media",
1071
+ "name": "Tracking & Measurement Specialist",
1072
+ "nameOverflows": true,
1073
+ "description": "Expert in conversion tracking architecture, tag management, and attribution modeling across Google Tag Manager, GA4, Google Ads, Meta CAPI, LinkedIn Insight Tag, and server-side implementations. Ensures every conversion is counted correctly and every dollar of ad spend is measurable.",
1074
+ "emoji": "📡",
1075
+ "color": "orange",
1076
+ "vibe": "If it's not tracked correctly, it didn't happen."
1077
+ },
1078
+ {
1079
+ "path": "product/product-behavioral-nudge-engine.md",
1080
+ "category": "product",
1081
+ "name": "Behavioral Nudge Engine",
1082
+ "nameOverflows": true,
1083
+ "description": "Behavioral psychology specialist that adapts software interaction cadences and styles to maximize user motivation and success.",
1084
+ "emoji": "🧠",
1085
+ "color": "#FF8A65",
1086
+ "vibe": "Adapts software interactions to maximize user motivation through behavioral psychology."
1087
+ },
1088
+ {
1089
+ "path": "product/product-feedback-synthesizer.md",
1090
+ "category": "product",
1091
+ "name": "Feedback Synthesizer",
1092
+ "nameOverflows": false,
1093
+ "description": "Expert in collecting, analyzing, and synthesizing user feedback from multiple channels to extract actionable product insights. Transforms qualitative feedback into quantitative priorities and strategic recommendations.",
1094
+ "emoji": "🔍",
1095
+ "color": "blue",
1096
+ "vibe": "Distills a thousand user voices into the five things you need to build next."
1097
+ },
1098
+ {
1099
+ "path": "product/product-manager.md",
1100
+ "category": "product",
1101
+ "name": "Product Manager",
1102
+ "nameOverflows": false,
1103
+ "description": "Holistic product leader who owns the full product lifecycle — from discovery and strategy through roadmap, stakeholder alignment, go-to-market, and outcome measurement. Bridges business goals, user needs, and technical reality to ship the right thing at the right time.",
1104
+ "emoji": "🧭",
1105
+ "color": "blue",
1106
+ "vibe": "Ships the right thing, not just the next thing — outcome-obsessed, user-grounded, and diplomatically ruthless about focus."
1107
+ },
1108
+ {
1109
+ "path": "product/product-sprint-prioritizer.md",
1110
+ "category": "product",
1111
+ "name": "Sprint Prioritizer",
1112
+ "nameOverflows": false,
1113
+ "description": "Expert product manager specializing in agile sprint planning, feature prioritization, and resource allocation. Focused on maximizing team velocity and business value delivery through data-driven prioritization frameworks.",
1114
+ "emoji": "🎯",
1115
+ "color": "green",
1116
+ "vibe": "Maximizes sprint value through data-driven prioritization and ruthless focus."
1117
+ },
1118
+ {
1119
+ "path": "product/product-trend-researcher.md",
1120
+ "category": "product",
1121
+ "name": "Trend Researcher",
1122
+ "nameOverflows": false,
1123
+ "description": "Expert market intelligence analyst specializing in identifying emerging trends, competitive analysis, and opportunity assessment. Focused on providing actionable insights that drive product strategy and innovation decisions.",
1124
+ "emoji": "🔭",
1125
+ "color": "purple",
1126
+ "vibe": "Spots emerging trends before they hit the mainstream."
1127
+ },
1128
+ {
1129
+ "path": "project-management/project-management-experiment-tracker.md",
1130
+ "category": "project-management",
1131
+ "name": "Experiment Tracker",
1132
+ "nameOverflows": false,
1133
+ "description": "Expert project manager specializing in experiment design, execution tracking, and data-driven decision making. Focused on managing A/B tests, feature experiments, and hypothesis validation through systematic experimentation and rigorous analysis.",
1134
+ "emoji": "🧪",
1135
+ "color": "purple",
1136
+ "vibe": "Designs experiments, tracks results, and lets the data decide."
1137
+ },
1138
+ {
1139
+ "path": "project-management/project-management-jira-workflow-steward.md",
1140
+ "category": "project-management",
1141
+ "name": "Jira Workflow Steward",
1142
+ "nameOverflows": false,
1143
+ "description": "Expert delivery operations specialist who enforces Jira-linked Git workflows, traceable commits, structured pull requests, and release-safe branch strategy across software teams.",
1144
+ "emoji": "📋",
1145
+ "color": "orange",
1146
+ "vibe": "Enforces traceable commits, structured PRs, and release-safe branch strategy."
1147
+ },
1148
+ {
1149
+ "path": "project-management/project-management-project-shepherd.md",
1150
+ "category": "project-management",
1151
+ "name": "Project Shepherd",
1152
+ "nameOverflows": false,
1153
+ "description": "Expert project manager specializing in cross-functional project coordination, timeline management, and stakeholder alignment. Focused on shepherding projects from conception to completion while managing resources, risks, and communications across multiple teams and departments.",
1154
+ "emoji": "🐑",
1155
+ "color": "blue",
1156
+ "vibe": "Herds cross-functional chaos into on-time, on-scope delivery."
1157
+ },
1158
+ {
1159
+ "path": "project-management/project-management-studio-operations.md",
1160
+ "category": "project-management",
1161
+ "name": "Studio Operations",
1162
+ "nameOverflows": false,
1163
+ "description": "Expert operations manager specializing in day-to-day studio efficiency, process optimization, and resource coordination. Focused on ensuring smooth operations, maintaining productivity standards, and supporting all teams with the tools and processes needed for success.",
1164
+ "emoji": "🏭",
1165
+ "color": "green",
1166
+ "vibe": "Keeps the studio running smoothly — processes, tools, and people in sync."
1167
+ },
1168
+ {
1169
+ "path": "project-management/project-management-studio-producer.md",
1170
+ "category": "project-management",
1171
+ "name": "Studio Producer",
1172
+ "nameOverflows": false,
1173
+ "description": "Senior strategic leader specializing in high-level creative and technical project orchestration, resource allocation, and multi-project portfolio management. Focused on aligning creative vision with business objectives while managing complex cross-functional initiatives and ensuring optimal studio operations.",
1174
+ "emoji": "🎬",
1175
+ "color": "gold",
1176
+ "vibe": "Aligns creative vision with business objectives across complex initiatives."
1177
+ },
1178
+ {
1179
+ "path": "project-management/project-manager-senior.md",
1180
+ "category": "project-management",
1181
+ "name": "Senior Project Manager",
1182
+ "nameOverflows": false,
1183
+ "description": "Converts specs to tasks and remembers previous projects. Focused on realistic scope, no background processes, exact spec requirements",
1184
+ "emoji": "📝",
1185
+ "color": "blue",
1186
+ "vibe": "Converts specs to tasks with realistic scope — no gold-plating, no fantasy."
1187
+ },
1188
+ {
1189
+ "path": "sales/sales-account-strategist.md",
1190
+ "category": "sales",
1191
+ "name": "Account Strategist",
1192
+ "nameOverflows": false,
1193
+ "description": "Expert post-sale account strategist specializing in land-and-expand execution, stakeholder mapping, QBR facilitation, and net revenue retention. Turns closed deals into long-term platform relationships through systematic expansion planning and multi-threaded account development.",
1194
+ "emoji": "🗺️",
1195
+ "color": "#2E7D32",
1196
+ "vibe": "Maps the org, finds the whitespace, and turns customers into platforms."
1197
+ },
1198
+ {
1199
+ "path": "sales/sales-coach.md",
1200
+ "category": "sales",
1201
+ "name": "Sales Coach",
1202
+ "nameOverflows": false,
1203
+ "description": "Expert sales coaching specialist focused on rep development, pipeline review facilitation, call coaching, deal strategy, and forecast accuracy. Makes every rep and every deal better through structured coaching methodology and behavioral feedback.",
1204
+ "emoji": "🏋️",
1205
+ "color": "#E65100",
1206
+ "vibe": "Asks the question that makes the rep rethink the entire deal."
1207
+ },
1208
+ {
1209
+ "path": "sales/sales-deal-strategist.md",
1210
+ "category": "sales",
1211
+ "name": "Deal Strategist",
1212
+ "nameOverflows": false,
1213
+ "description": "Senior deal strategist specializing in MEDDPICC qualification, competitive positioning, and win planning for complex B2B sales cycles. Scores opportunities, exposes pipeline risk, and builds deal strategies that survive forecast review.",
1214
+ "emoji": "♟️",
1215
+ "color": "#1B4D3E",
1216
+ "vibe": "Qualifies deals like a surgeon and kills happy ears on contact."
1217
+ },
1218
+ {
1219
+ "path": "sales/sales-discovery-coach.md",
1220
+ "category": "sales",
1221
+ "name": "Discovery Coach",
1222
+ "nameOverflows": false,
1223
+ "description": "Coaches sales teams on elite discovery methodology — question design, current-state mapping, gap quantification, and call structure that surfaces real buying motivation.",
1224
+ "emoji": "🔍",
1225
+ "color": "#5C7CFA",
1226
+ "vibe": "Asks one more question than everyone else — and that's the one that closes the deal."
1227
+ },
1228
+ {
1229
+ "path": "sales/sales-engineer.md",
1230
+ "category": "sales",
1231
+ "name": "Sales Engineer",
1232
+ "nameOverflows": false,
1233
+ "description": "Senior pre-sales engineer specializing in technical discovery, demo engineering, POC scoping, competitive battlecards, and bridging product capabilities to business outcomes. Wins the technical decision so the deal can close.",
1234
+ "emoji": "🛠️",
1235
+ "color": "#2E5090",
1236
+ "vibe": "Wins the technical decision before the deal even hits procurement."
1237
+ },
1238
+ {
1239
+ "path": "sales/sales-outbound-strategist.md",
1240
+ "category": "sales",
1241
+ "name": "Outbound Strategist",
1242
+ "nameOverflows": false,
1243
+ "description": "Signal-based outbound specialist who designs multi-channel prospecting sequences, defines ICPs, and builds pipeline through research-driven personalization — not volume.",
1244
+ "emoji": "🎯",
1245
+ "color": "#E8590C",
1246
+ "vibe": "Turns buying signals into booked meetings before the competition even notices."
1247
+ },
1248
+ {
1249
+ "path": "sales/sales-pipeline-analyst.md",
1250
+ "category": "sales",
1251
+ "name": "Pipeline Analyst",
1252
+ "nameOverflows": false,
1253
+ "description": "Revenue operations analyst specializing in pipeline health diagnostics, deal velocity analysis, forecast accuracy, and data-driven sales coaching. Turns CRM data into actionable pipeline intelligence that surfaces risks before they become missed quarters.",
1254
+ "emoji": "📊",
1255
+ "color": "#059669",
1256
+ "vibe": "Tells you your forecast is wrong before you realize it yourself."
1257
+ },
1258
+ {
1259
+ "path": "sales/sales-proposal-strategist.md",
1260
+ "category": "sales",
1261
+ "name": "Proposal Strategist",
1262
+ "nameOverflows": false,
1263
+ "description": "Strategic proposal architect who transforms RFPs and sales opportunities into compelling win narratives. Specializes in win theme development, competitive positioning, executive summary craft, and building proposals that persuade rather than merely comply.",
1264
+ "emoji": "🏹",
1265
+ "color": "#2563EB",
1266
+ "vibe": "Turns RFP responses into stories buyers can't put down."
1267
+ },
1268
+ {
1269
+ "path": "spatial-computing/macos-spatial-metal-engineer.md",
1270
+ "category": "spatial-computing",
1271
+ "name": "macOS Spatial/Metal Engineer",
1272
+ "nameOverflows": true,
1273
+ "description": "Native Swift and Metal specialist building high-performance 3D rendering systems and spatial computing experiences for macOS and Vision Pro",
1274
+ "emoji": "🍎",
1275
+ "color": "metallic-blue",
1276
+ "vibe": "Pushes Metal to its limits for 3D rendering on macOS and Vision Pro."
1277
+ },
1278
+ {
1279
+ "path": "spatial-computing/terminal-integration-specialist.md",
1280
+ "category": "spatial-computing",
1281
+ "name": "Terminal Integration Specialist",
1282
+ "nameOverflows": true,
1283
+ "description": "Terminal emulation, text rendering optimization, and SwiftTerm integration for modern Swift applications",
1284
+ "emoji": "🖥️",
1285
+ "color": "green",
1286
+ "vibe": "Masters terminal emulation and text rendering in modern Swift applications."
1287
+ },
1288
+ {
1289
+ "path": "spatial-computing/visionos-spatial-engineer.md",
1290
+ "category": "spatial-computing",
1291
+ "name": "visionOS Spatial Engineer",
1292
+ "nameOverflows": true,
1293
+ "description": "Native visionOS spatial computing, SwiftUI volumetric interfaces, and Liquid Glass design implementation",
1294
+ "emoji": "🥽",
1295
+ "color": "indigo",
1296
+ "vibe": "Builds native volumetric interfaces and Liquid Glass experiences for visionOS."
1297
+ },
1298
+ {
1299
+ "path": "spatial-computing/xr-cockpit-interaction-specialist.md",
1300
+ "category": "spatial-computing",
1301
+ "name": "XR Cockpit Interaction Specialist",
1302
+ "nameOverflows": true,
1303
+ "description": "Specialist in designing and developing immersive cockpit-based control systems for XR environments",
1304
+ "emoji": "🕹️",
1305
+ "color": "orange",
1306
+ "vibe": "Designs immersive cockpit control systems that feel natural in XR."
1307
+ },
1308
+ {
1309
+ "path": "spatial-computing/xr-immersive-developer.md",
1310
+ "category": "spatial-computing",
1311
+ "name": "XR Immersive Developer",
1312
+ "nameOverflows": false,
1313
+ "description": "Expert WebXR and immersive technology developer with specialization in browser-based AR/VR/XR applications",
1314
+ "emoji": "🌐",
1315
+ "color": "neon-cyan",
1316
+ "vibe": "Builds browser-based AR/VR/XR experiences that push WebXR to its limits."
1317
+ },
1318
+ {
1319
+ "path": "spatial-computing/xr-interface-architect.md",
1320
+ "category": "spatial-computing",
1321
+ "name": "XR Interface Architect",
1322
+ "nameOverflows": false,
1323
+ "description": "Spatial interaction designer and interface strategist for immersive AR/VR/XR environments",
1324
+ "emoji": "🫧",
1325
+ "color": "neon-green",
1326
+ "vibe": "Designs spatial interfaces where interaction feels like instinct, not instruction."
1327
+ },
1328
+ {
1329
+ "path": "specialized/accounts-payable-agent.md",
1330
+ "category": "specialized",
1331
+ "name": "Accounts Payable Agent",
1332
+ "nameOverflows": false,
1333
+ "description": "Autonomous payment processing specialist that executes vendor payments, contractor invoices, and recurring bills across any payment rail — crypto, fiat, stablecoins. Integrates with AI agent workflows via tool calls.",
1334
+ "emoji": "💸",
1335
+ "color": "green",
1336
+ "vibe": "Moves money across any rail — crypto, fiat, stablecoins — so you don't have to."
1337
+ },
1338
+ {
1339
+ "path": "specialized/agentic-identity-trust.md",
1340
+ "category": "specialized",
1341
+ "name": "Agentic Identity & Trust Architect",
1342
+ "nameOverflows": true,
1343
+ "description": "Designs identity, authentication, and trust verification systems for autonomous AI agents operating in multi-agent environments. Ensures agents can prove who they are, what they're authorized to do, and what they actually did.",
1344
+ "emoji": "🔐",
1345
+ "color": "#2d5a27",
1346
+ "vibe": "Ensures every AI agent can prove who it is, what it's allowed to do, and what it actually did."
1347
+ },
1348
+ {
1349
+ "path": "specialized/agents-orchestrator.md",
1350
+ "category": "specialized",
1351
+ "name": "Agents Orchestrator",
1352
+ "nameOverflows": false,
1353
+ "description": "Autonomous pipeline manager that orchestrates the entire development workflow. You are the leader of this process.",
1354
+ "emoji": "🎛️",
1355
+ "color": "cyan",
1356
+ "vibe": "The conductor who runs the entire dev pipeline from spec to ship."
1357
+ },
1358
+ {
1359
+ "path": "specialized/automation-governance-architect.md",
1360
+ "category": "specialized",
1361
+ "name": "Automation Governance Architect",
1362
+ "nameOverflows": true,
1363
+ "description": "Governance-first architect for business automations (n8n-first) who audits value, risk, and maintainability before implementation.",
1364
+ "emoji": "⚙️",
1365
+ "color": "cyan",
1366
+ "vibe": "Calm, skeptical, and operations-focused. Prefer reliable systems over automation hype."
1367
+ },
1368
+ {
1369
+ "path": "specialized/blockchain-security-auditor.md",
1370
+ "category": "specialized",
1371
+ "name": "Blockchain Security Auditor",
1372
+ "nameOverflows": true,
1373
+ "description": "Expert smart contract security auditor specializing in vulnerability detection, formal verification, exploit analysis, and comprehensive audit report writing for DeFi protocols and blockchain applications.",
1374
+ "emoji": "🛡️",
1375
+ "color": "red",
1376
+ "vibe": "Finds the exploit in your smart contract before the attacker does."
1377
+ },
1378
+ {
1379
+ "path": "specialized/compliance-auditor.md",
1380
+ "category": "specialized",
1381
+ "name": "Compliance Auditor",
1382
+ "nameOverflows": false,
1383
+ "description": "Expert technical compliance auditor specializing in SOC 2, ISO 27001, HIPAA, and PCI-DSS audits — from readiness assessment through evidence collection to certification.",
1384
+ "emoji": "📋",
1385
+ "color": "orange",
1386
+ "vibe": "Walks you from readiness assessment through evidence collection to SOC 2 certification."
1387
+ },
1388
+ {
1389
+ "path": "specialized/corporate-training-designer.md",
1390
+ "category": "specialized",
1391
+ "name": "Corporate Training Designer",
1392
+ "nameOverflows": true,
1393
+ "description": "Expert in enterprise training system design and curriculum development — proficient in training needs analysis, instructional design methodology, blended learning program design, internal trainer development, leadership programs, and training effectiveness evaluation and continuous optimization.",
1394
+ "emoji": "📚",
1395
+ "color": "orange",
1396
+ "vibe": "Expert in enterprise training system design and curriculum development"
1397
+ },
1398
+ {
1399
+ "path": "specialized/customer-service.md",
1400
+ "category": "specialized",
1401
+ "name": "Customer Service",
1402
+ "nameOverflows": false,
1403
+ "description": "Friendly, professional customer service specialist for any industry — handling inquiries, complaints, account support, FAQs, and seamless escalation with warmth, efficiency, and a genuine commitment to customer satisfaction",
1404
+ "emoji": "🎧",
1405
+ "color": "teal",
1406
+ "vibe": "Every customer interaction is a chance to turn a problem into loyalty — handle it with care, speed, and a human touch."
1407
+ },
1408
+ {
1409
+ "path": "specialized/data-consolidation-agent.md",
1410
+ "category": "specialized",
1411
+ "name": "Data Consolidation Agent",
1412
+ "nameOverflows": true,
1413
+ "description": "AI agent that consolidates extracted sales data into live reporting dashboards with territory, rep, and pipeline summaries",
1414
+ "emoji": "🗄️",
1415
+ "color": "#38a169",
1416
+ "vibe": "Consolidates scattered sales data into live reporting dashboards."
1417
+ },
1418
+ {
1419
+ "path": "specialized/government-digital-presales-consultant.md",
1420
+ "category": "specialized",
1421
+ "name": "Government Digital Presales Consultant",
1422
+ "nameOverflows": true,
1423
+ "description": "Presales expert for China's government digital transformation market (ToG), proficient in policy interpretation, solution design, bid document preparation, POC validation, compliance requirements (classified protection/cryptographic assessment/Xinchuang domestic IT), and stakeholder management — helping technical teams efficiently win government IT projects.",
1424
+ "emoji": "🏛️",
1425
+ "color": "#8B0000",
1426
+ "vibe": "Presales expert for China's government digital transformation market (ToG)"
1427
+ },
1428
+ {
1429
+ "path": "specialized/healthcare-customer-service.md",
1430
+ "category": "specialized",
1431
+ "name": "Healthcare Customer Service",
1432
+ "nameOverflows": true,
1433
+ "description": "Empathetic healthcare customer service specialist for patient support, billing inquiries, appointment management, insurance questions, complaint resolution, and seamless escalation to clinical or administrative staff",
1434
+ "emoji": "🏥",
1435
+ "color": "teal",
1436
+ "vibe": "Every patient deserves to feel heard, respected, and supported — especially when they're scared, confused, or frustrated."
1437
+ },
1438
+ {
1439
+ "path": "specialized/healthcare-marketing-compliance.md",
1440
+ "category": "specialized",
1441
+ "name": "Healthcare Marketing Compliance Specialist",
1442
+ "nameOverflows": true,
1443
+ "description": "Expert in healthcare marketing compliance in China, proficient in the Advertising Law, Medical Advertisement Management Measures, Drug Administration Law, and related regulations — covering pharmaceuticals, medical devices, medical aesthetics, health supplements, and internet healthcare across content review, risk control, platform rule interpretation, and patient privacy protection, helping enterprises conduct effective health marketing within legal boundaries.",
1444
+ "emoji": "⚕️",
1445
+ "color": "#2E8B57",
1446
+ "vibe": "Expert in healthcare marketing compliance in China"
1447
+ },
1448
+ {
1449
+ "path": "specialized/hospitality-guest-services.md",
1450
+ "category": "specialized",
1451
+ "name": "Hospitality Guest Services",
1452
+ "nameOverflows": true,
1453
+ "description": "Comprehensive hospitality guest services specialist for hotels, resorts, restaurants, and event venues — covering reservations, check-in/check-out, concierge services, guest complaint resolution, loyalty program management, and post-stay follow-up to deliver exceptional guest experiences that drive loyalty and revenue",
1454
+ "emoji": "🏨",
1455
+ "color": "teal",
1456
+ "vibe": "Comprehensive hospitality guest services specialist for hotels, resorts, restaurants, and event venues"
1457
+ },
1458
+ {
1459
+ "path": "specialized/hr-onboarding.md",
1460
+ "category": "specialized",
1461
+ "name": "HR Onboarding",
1462
+ "nameOverflows": false,
1463
+ "description": "Comprehensive HR onboarding specialist for employee orientation, documentation management, compliance tracking, benefits enrollment, culture integration, and new hire support — delivering a seamless first-day-to-first-year experience that drives retention and productivity",
1464
+ "emoji": "🤝",
1465
+ "color": "green",
1466
+ "vibe": "The first 90 days determine whether a new hire becomes a long-term contributor or a regrettable turnover. Get it right from day one."
1467
+ },
1468
+ {
1469
+ "path": "specialized/identity-graph-operator.md",
1470
+ "category": "specialized",
1471
+ "name": "Identity Graph Operator",
1472
+ "nameOverflows": true,
1473
+ "description": "Operates a shared identity graph that multiple AI agents resolve against. Ensures every agent in a multi-agent system gets the same canonical answer for \"who is this entity?\" - deterministically, even under concurrent writes.",
1474
+ "emoji": "🕸️",
1475
+ "color": "#C5A572",
1476
+ "vibe": "Ensures every agent in a multi-agent system gets the same canonical answer for \"who is this?\""
1477
+ },
1478
+ {
1479
+ "path": "specialized/language-translator.md",
1480
+ "category": "specialized",
1481
+ "name": "Language Translator",
1482
+ "nameOverflows": false,
1483
+ "description": "Real-time Spanish ↔ English translation specialist with cultural context, regional dialect awareness, travel phrase guidance, and tone-appropriate communication for everyday, business, and emergency situations",
1484
+ "emoji": "🌐",
1485
+ "color": "teal",
1486
+ "vibe": "Bridges languages with precision, cultural respect, and the fluency of a native speaker who's lived in both worlds."
1487
+ },
1488
+ {
1489
+ "path": "specialized/legal-billing-time-tracking.md",
1490
+ "category": "specialized",
1491
+ "name": "Legal Billing & Time Tracking",
1492
+ "nameOverflows": true,
1493
+ "description": "Comprehensive legal billing and time tracking specialist for accurate time capture, invoice generation, billing narrative writing, collections management, trust account compliance, and billing analysis — maximizing revenue recovery while maintaining client relationships and ethical compliance across any firm size or billing model",
1494
+ "emoji": "⏱️",
1495
+ "color": "green",
1496
+ "vibe": null
1497
+ },
1498
+ {
1499
+ "path": "specialized/legal-client-intake.md",
1500
+ "category": "specialized",
1501
+ "name": "Legal Client Intake",
1502
+ "nameOverflows": false,
1503
+ "description": "Comprehensive legal client intake specialist for qualifying prospects, collecting case information, scheduling consultations, managing conflict checks, and delivering attorney-ready intake summaries across any practice area and firm size",
1504
+ "emoji": "📋",
1505
+ "color": "blue",
1506
+ "vibe": null
1507
+ },
1508
+ {
1509
+ "path": "specialized/legal-document-review.md",
1510
+ "category": "specialized",
1511
+ "name": "Legal Document Review",
1512
+ "nameOverflows": false,
1513
+ "description": "Comprehensive legal document review specialist for contracts, litigation documents, and real estate agreements — summarizing documents, flagging risk clauses, comparing contract versions, and checking compliance across any law firm size or practice area",
1514
+ "emoji": "⚖️",
1515
+ "color": "blue",
1516
+ "vibe": "Every word in a legal document matters. Every missed clause is a liability. Every risk caught early is a client protected."
1517
+ },
1518
+ {
1519
+ "path": "specialized/loan-officer-assistant.md",
1520
+ "category": "specialized",
1521
+ "name": "Loan Officer Assistant",
1522
+ "nameOverflows": false,
1523
+ "description": "Comprehensive loan officer assistant for mortgage and lending professionals — covering borrower intake, pre-qualification, document collection, pipeline management, compliance tracking, rate quoting, and closing coordination across residential, commercial, and consumer lending",
1524
+ "emoji": "🏦",
1525
+ "color": "blue",
1526
+ "vibe": "Comprehensive loan officer assistant for mortgage and lending professionals"
1527
+ },
1528
+ {
1529
+ "path": "specialized/lsp-index-engineer.md",
1530
+ "category": "specialized",
1531
+ "name": "LSP/Index Engineer",
1532
+ "nameOverflows": false,
1533
+ "description": "Language Server Protocol specialist building unified code intelligence systems through LSP client orchestration and semantic indexing",
1534
+ "emoji": "🔎",
1535
+ "color": "orange",
1536
+ "vibe": "Builds unified code intelligence through LSP orchestration and semantic indexing."
1537
+ },
1538
+ {
1539
+ "path": "specialized/real-estate-buyer-seller.md",
1540
+ "category": "specialized",
1541
+ "name": "Real Estate Buyer & Seller",
1542
+ "nameOverflows": true,
1543
+ "description": "Comprehensive real estate agent assistant for buyer representation, seller representation, listing management, offer negotiation, transaction coordination, and closing support — delivering a world-class client experience from first showing to final closing across residential and investment real estate",
1544
+ "emoji": "🏠",
1545
+ "color": "teal",
1546
+ "vibe": null
1547
+ },
1548
+ {
1549
+ "path": "specialized/recruitment-specialist.md",
1550
+ "category": "specialized",
1551
+ "name": "Recruitment Specialist",
1552
+ "nameOverflows": false,
1553
+ "description": "Expert recruitment operations and talent acquisition specialist — skilled in China's major hiring platforms, talent assessment frameworks, and labor law compliance. Helps companies efficiently attract, screen, and retain top talent while building a competitive employer brand.",
1554
+ "emoji": "🎯",
1555
+ "color": "blue",
1556
+ "vibe": "Builds your full-cycle recruiting engine across China's hiring platforms, from sourcing to onboarding to compliance."
1557
+ },
1558
+ {
1559
+ "path": "specialized/report-distribution-agent.md",
1560
+ "category": "specialized",
1561
+ "name": "Report Distribution Agent",
1562
+ "nameOverflows": true,
1563
+ "description": "AI agent that automates distribution of consolidated sales reports to representatives based on territorial parameters",
1564
+ "emoji": "📤",
1565
+ "color": "#d69e2e",
1566
+ "vibe": "Automates delivery of consolidated sales reports to the right reps."
1567
+ },
1568
+ {
1569
+ "path": "specialized/retail-customer-returns.md",
1570
+ "category": "specialized",
1571
+ "name": "Retail Customer Returns",
1572
+ "nameOverflows": true,
1573
+ "description": "Comprehensive retail customer returns specialist for processing returns, exchanges, and refunds across in-store, online, and omnichannel retail — handling policy enforcement, fraud prevention, customer retention, vendor returns, and returns analytics to maximize recovery while preserving customer loyalty",
1574
+ "emoji": "🛒",
1575
+ "color": "amber",
1576
+ "vibe": null
1577
+ },
1578
+ {
1579
+ "path": "specialized/sales-data-extraction-agent.md",
1580
+ "category": "specialized",
1581
+ "name": "Sales Data Extraction Agent",
1582
+ "nameOverflows": true,
1583
+ "description": "AI agent specialized in monitoring Excel files and extracting key sales metrics (MTD, YTD, Year End) for internal live reporting",
1584
+ "emoji": "📊",
1585
+ "color": "#2b6cb0",
1586
+ "vibe": "Watches your Excel files and extracts the metrics that matter."
1587
+ },
1588
+ {
1589
+ "path": "specialized/sales-outreach.md",
1590
+ "category": "specialized",
1591
+ "name": "Sales Outreach",
1592
+ "nameOverflows": false,
1593
+ "description": "Consultative B2B sales outreach specialist for cold prospecting, lead follow-up, objection handling, proposal writing, and pipeline management — combining data-driven targeting with genuine relationship-building to open doors and close deals",
1594
+ "emoji": "🎯",
1595
+ "color": "amber",
1596
+ "vibe": "The best salespeople don't sell — they help people buy. Every outreach is a conversation starter, not a pitch."
1597
+ },
1598
+ {
1599
+ "path": "specialized/specialized-chief-of-staff.md",
1600
+ "category": "specialized",
1601
+ "name": "Chief of Staff",
1602
+ "nameOverflows": false,
1603
+ "description": "Master coordinator for founders and executives — filters noise, owns processes, enforces consistency, routes decisions, and positions outputs for impact so the boss can think clearly.",
1604
+ "emoji": "🧭",
1605
+ "color": "#6B7280",
1606
+ "vibe": "I don't own any function. I own the space between all of them."
1607
+ },
1608
+ {
1609
+ "path": "specialized/specialized-civil-engineer.md",
1610
+ "category": "specialized",
1611
+ "name": "Civil Engineer",
1612
+ "nameOverflows": false,
1613
+ "description": "Expert civil and structural engineer with global standards coverage — Eurocode, DIN, ACI, AISC, ASCE, AS/NZS, CSA, GB, IS, AIJ, and more. Specializes in structural analysis, geotechnical design, construction documentation, building code compliance, and multi-standard international projects.",
1614
+ "emoji": "🏗️",
1615
+ "color": "yellow",
1616
+ "vibe": "Designs structures that stand across borders — from seismic Tokyo to wind-swept Dubai, always code-compliant and constructible."
1617
+ },
1618
+ {
1619
+ "path": "specialized/specialized-cultural-intelligence-strategist.md",
1620
+ "category": "specialized",
1621
+ "name": "Cultural Intelligence Strategist",
1622
+ "nameOverflows": true,
1623
+ "description": "CQ specialist that detects invisible exclusion, researches global context, and ensures software resonates authentically across intersectional identities.",
1624
+ "emoji": "🌍",
1625
+ "color": "#FFA000",
1626
+ "vibe": "Detects invisible exclusion and ensures your software resonates across cultures."
1627
+ },
1628
+ {
1629
+ "path": "specialized/specialized-developer-advocate.md",
1630
+ "category": "specialized",
1631
+ "name": "Developer Advocate",
1632
+ "nameOverflows": false,
1633
+ "description": "Expert developer advocate specializing in building developer communities, creating compelling technical content, optimizing developer experience (DX), and driving platform adoption through authentic engineering engagement. Bridges product and engineering teams with external developers.",
1634
+ "emoji": "🗣️",
1635
+ "color": "purple",
1636
+ "vibe": "Bridges your product team and the developer community through authentic engagement."
1637
+ },
1638
+ {
1639
+ "path": "specialized/specialized-document-generator.md",
1640
+ "category": "specialized",
1641
+ "name": "Document Generator",
1642
+ "nameOverflows": false,
1643
+ "description": "Expert document creation specialist who generates professional PDF, PPTX, DOCX, and XLSX files using code-based approaches with proper formatting, charts, and data visualization.",
1644
+ "emoji": "📄",
1645
+ "color": "blue",
1646
+ "vibe": "Professional documents from code — PDFs, slides, spreadsheets, and reports."
1647
+ },
1648
+ {
1649
+ "path": "specialized/specialized-french-consulting-market.md",
1650
+ "category": "specialized",
1651
+ "name": "French Consulting Market Navigator",
1652
+ "nameOverflows": true,
1653
+ "description": "Navigate the French ESN/SI freelance ecosystem — margin models, platform mechanics (Malt, collective.work), portage salarial, rate positioning, and payment cycle realities",
1654
+ "emoji": "🇫🇷",
1655
+ "color": "#002395",
1656
+ "vibe": "The insider who decodes the opaque French consulting food chain so freelancers stop leaving money on the table"
1657
+ },
1658
+ {
1659
+ "path": "specialized/specialized-korean-business-navigator.md",
1660
+ "category": "specialized",
1661
+ "name": "Korean Business Navigator",
1662
+ "nameOverflows": true,
1663
+ "description": "Korean business culture for foreign professionals — 품의 decision process, nunchi reading, KakaoTalk business etiquette, hierarchy navigation, and relationship-first deal mechanics",
1664
+ "emoji": "🇰🇷",
1665
+ "color": "#003478",
1666
+ "vibe": "The bridge between Western directness and Korean relationship dynamics — reads the room so you don't torch the deal"
1667
+ },
1668
+ {
1669
+ "path": "specialized/specialized-mcp-builder.md",
1670
+ "category": "specialized",
1671
+ "name": "MCP Builder",
1672
+ "nameOverflows": false,
1673
+ "description": "Expert Model Context Protocol developer who designs, builds, and tests MCP servers that extend AI agent capabilities with custom tools, resources, and prompts.",
1674
+ "emoji": "🔌",
1675
+ "color": "indigo",
1676
+ "vibe": "Builds the tools that make AI agents actually useful in the real world."
1677
+ },
1678
+ {
1679
+ "path": "specialized/specialized-model-qa.md",
1680
+ "category": "specialized",
1681
+ "name": "Model QA Specialist",
1682
+ "nameOverflows": false,
1683
+ "description": "Independent model QA expert who audits ML and statistical models end-to-end - from documentation review and data reconstruction to replication, calibration testing, interpretability analysis, performance monitoring, and audit-grade reporting.",
1684
+ "emoji": "🔬",
1685
+ "color": "#B22222",
1686
+ "vibe": "Audits ML models end-to-end — from data reconstruction to calibration testing."
1687
+ },
1688
+ {
1689
+ "path": "specialized/specialized-salesforce-architect.md",
1690
+ "category": "specialized",
1691
+ "name": "Salesforce Architect",
1692
+ "nameOverflows": false,
1693
+ "description": "Solution architecture for Salesforce platform — multi-cloud design, integration patterns, governor limits, deployment strategy, and data model governance for enterprise-scale orgs",
1694
+ "emoji": "☁️",
1695
+ "color": "#00A1E0",
1696
+ "vibe": "The calm hand that turns a tangled Salesforce org into an architecture that scales — one governor limit at a time"
1697
+ },
1698
+ {
1699
+ "path": "specialized/specialized-workflow-architect.md",
1700
+ "category": "specialized",
1701
+ "name": "Workflow Architect",
1702
+ "nameOverflows": false,
1703
+ "description": "Workflow design specialist who maps complete workflow trees for every system, user journey, and agent interaction — covering happy paths, all branch conditions, failure modes, recovery paths, handoff contracts, and observable states to produce build-ready specs that agents can implement against and QA can test against.",
1704
+ "emoji": "🗺️",
1705
+ "color": "orange",
1706
+ "vibe": "Every path the system can take — mapped, named, and specified before a single line is written."
1707
+ },
1708
+ {
1709
+ "path": "specialized/study-abroad-advisor.md",
1710
+ "category": "specialized",
1711
+ "name": "Study Abroad Advisor",
1712
+ "nameOverflows": false,
1713
+ "description": "Full-spectrum study abroad planning expert covering the US, UK, Canada, Australia, Europe, Hong Kong, and Singapore — proficient in undergraduate, master's, and PhD application strategy, school selection, essay coaching, profile enhancement, standardized test planning, visa preparation, and overseas life adaptation, helping Chinese students craft personalized end-to-end study abroad plans.",
1714
+ "emoji": "🎓",
1715
+ "color": "#1B4D3E",
1716
+ "vibe": "Full-spectrum study abroad planning expert covering the US, UK, Canada, Australia, Europe, Hong Kong, and Singapore"
1717
+ },
1718
+ {
1719
+ "path": "specialized/supply-chain-strategist.md",
1720
+ "category": "specialized",
1721
+ "name": "Supply Chain Strategist",
1722
+ "nameOverflows": true,
1723
+ "description": "Expert supply chain management and procurement strategy specialist — skilled in supplier development, strategic sourcing, quality control, and supply chain digitalization. Grounded in China's manufacturing ecosystem, helps companies build efficient, resilient, and sustainable supply chains.",
1724
+ "emoji": "🔗",
1725
+ "color": "blue",
1726
+ "vibe": "Expert supply chain management and procurement strategy specialist"
1727
+ },
1728
+ {
1729
+ "path": "support/support-analytics-reporter.md",
1730
+ "category": "support",
1731
+ "name": "Analytics Reporter",
1732
+ "nameOverflows": false,
1733
+ "description": "Expert data analyst transforming raw data into actionable business insights. Creates dashboards, performs statistical analysis, tracks KPIs, and provides strategic decision support through data visualization and reporting.",
1734
+ "emoji": "📊",
1735
+ "color": "teal",
1736
+ "vibe": "Transforms raw data into the insights that drive your next decision."
1737
+ },
1738
+ {
1739
+ "path": "support/support-executive-summary-generator.md",
1740
+ "category": "support",
1741
+ "name": "Executive Summary Generator",
1742
+ "nameOverflows": true,
1743
+ "description": "Consultant-grade AI specialist trained to think and communicate like a senior strategy consultant. Transforms complex business inputs into concise, actionable executive summaries using McKinsey SCQA, BCG Pyramid Principle, and Bain frameworks for C-suite decision-makers.",
1744
+ "emoji": "📝",
1745
+ "color": "purple",
1746
+ "vibe": "Thinks like a McKinsey consultant, writes for the C-suite."
1747
+ },
1748
+ {
1749
+ "path": "support/support-finance-tracker.md",
1750
+ "category": "support",
1751
+ "name": "Finance Tracker",
1752
+ "nameOverflows": false,
1753
+ "description": "Expert financial analyst and controller specializing in financial planning, budget management, and business performance analysis. Maintains financial health, optimizes cash flow, and provides strategic financial insights for business growth.",
1754
+ "emoji": "💰",
1755
+ "color": "green",
1756
+ "vibe": "Keeps the books clean, the cash flowing, and the forecasts honest."
1757
+ },
1758
+ {
1759
+ "path": "support/support-infrastructure-maintainer.md",
1760
+ "category": "support",
1761
+ "name": "Infrastructure Maintainer",
1762
+ "nameOverflows": true,
1763
+ "description": "Expert infrastructure specialist focused on system reliability, performance optimization, and technical operations management. Maintains robust, scalable infrastructure supporting business operations with security, performance, and cost efficiency.",
1764
+ "emoji": "🏢",
1765
+ "color": "orange",
1766
+ "vibe": "Keeps the lights on, the servers humming, and the alerts quiet."
1767
+ },
1768
+ {
1769
+ "path": "support/support-legal-compliance-checker.md",
1770
+ "category": "support",
1771
+ "name": "Legal Compliance Checker",
1772
+ "nameOverflows": true,
1773
+ "description": "Expert legal and compliance specialist ensuring business operations, data handling, and content creation comply with relevant laws, regulations, and industry standards across multiple jurisdictions.",
1774
+ "emoji": "⚖️",
1775
+ "color": "red",
1776
+ "vibe": "Ensures your operations comply with the law across every jurisdiction that matters."
1777
+ },
1778
+ {
1779
+ "path": "support/support-support-responder.md",
1780
+ "category": "support",
1781
+ "name": "Support Responder",
1782
+ "nameOverflows": false,
1783
+ "description": "Expert customer support specialist delivering exceptional customer service, issue resolution, and user experience optimization. Specializes in multi-channel support, proactive customer care, and turning support interactions into positive brand experiences.",
1784
+ "emoji": "💬",
1785
+ "color": "blue",
1786
+ "vibe": "Turns frustrated users into loyal advocates, one interaction at a time."
1787
+ },
1788
+ {
1789
+ "path": "testing/testing-accessibility-auditor.md",
1790
+ "category": "testing",
1791
+ "name": "Accessibility Auditor",
1792
+ "nameOverflows": false,
1793
+ "description": "Expert accessibility specialist who audits interfaces against WCAG standards, tests with assistive technologies, and ensures inclusive design. Defaults to finding barriers — if it's not tested with a screen reader, it's not accessible.",
1794
+ "emoji": "♿",
1795
+ "color": "#0077B6",
1796
+ "vibe": "If it's not tested with a screen reader, it's not accessible."
1797
+ },
1798
+ {
1799
+ "path": "testing/testing-api-tester.md",
1800
+ "category": "testing",
1801
+ "name": "API Tester",
1802
+ "nameOverflows": false,
1803
+ "description": "Expert API testing specialist focused on comprehensive API validation, performance testing, and quality assurance across all systems and third-party integrations",
1804
+ "emoji": "🔌",
1805
+ "color": "purple",
1806
+ "vibe": "Breaks your API before your users do."
1807
+ },
1808
+ {
1809
+ "path": "testing/testing-evidence-collector.md",
1810
+ "category": "testing",
1811
+ "name": "Evidence Collector",
1812
+ "nameOverflows": false,
1813
+ "description": "Screenshot-obsessed, fantasy-allergic QA specialist - Default to finding 3-5 issues, requires visual proof for everything",
1814
+ "emoji": "📸",
1815
+ "color": "orange",
1816
+ "vibe": "Screenshot-obsessed QA who won't approve anything without visual proof."
1817
+ },
1818
+ {
1819
+ "path": "testing/testing-performance-benchmarker.md",
1820
+ "category": "testing",
1821
+ "name": "Performance Benchmarker",
1822
+ "nameOverflows": true,
1823
+ "description": "Expert performance testing and optimization specialist focused on measuring, analyzing, and improving system performance across all applications and infrastructure",
1824
+ "emoji": "⏱️",
1825
+ "color": "orange",
1826
+ "vibe": "Measures everything, optimizes what matters, and proves the improvement."
1827
+ },
1828
+ {
1829
+ "path": "testing/testing-reality-checker.md",
1830
+ "category": "testing",
1831
+ "name": "Reality Checker",
1832
+ "nameOverflows": false,
1833
+ "description": "Stops fantasy approvals, evidence-based certification - Default to \"NEEDS WORK\", requires overwhelming proof for production readiness",
1834
+ "emoji": "🧐",
1835
+ "color": "red",
1836
+ "vibe": "Defaults to \"NEEDS WORK\" — requires overwhelming proof for production readiness."
1837
+ },
1838
+ {
1839
+ "path": "testing/testing-test-results-analyzer.md",
1840
+ "category": "testing",
1841
+ "name": "Test Results Analyzer",
1842
+ "nameOverflows": false,
1843
+ "description": "Expert test analysis specialist focused on comprehensive test result evaluation, quality metrics analysis, and actionable insight generation from testing activities",
1844
+ "emoji": "📋",
1845
+ "color": "indigo",
1846
+ "vibe": "Reads test results like a detective reads evidence — nothing gets past."
1847
+ },
1848
+ {
1849
+ "path": "testing/testing-tool-evaluator.md",
1850
+ "category": "testing",
1851
+ "name": "Tool Evaluator",
1852
+ "nameOverflows": false,
1853
+ "description": "Expert technology assessment specialist focused on evaluating, testing, and recommending tools, software, and platforms for business use and productivity optimization",
1854
+ "emoji": "🔧",
1855
+ "color": "teal",
1856
+ "vibe": "Tests and recommends the right tools so your team doesn't waste time on the wrong ones."
1857
+ },
1858
+ {
1859
+ "path": "testing/testing-workflow-optimizer.md",
1860
+ "category": "testing",
1861
+ "name": "Workflow Optimizer",
1862
+ "nameOverflows": false,
1863
+ "description": "Expert process improvement specialist focused on analyzing, optimizing, and automating workflows across all business functions for maximum productivity and efficiency",
1864
+ "emoji": "⚡",
1865
+ "color": "green",
1866
+ "vibe": "Finds the bottleneck, fixes the process, automates the rest."
1867
+ }
1868
+ ]
1869
+ }