monomind 1.14.6 → 1.15.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 (314) hide show
  1. package/.claude/agents/reengineer-squad/boss.md +113 -0
  2. package/.claude/agents/reengineer-squad/critic-architect.md +132 -0
  3. package/.claude/agents/reengineer-squad/git-manager.md +145 -0
  4. package/.claude/agents/reengineer-squad/idea-generator.md +95 -0
  5. package/.claude/agents/reengineer-squad/implementer.md +112 -0
  6. package/.claude/agents/reengineer-squad/integration-planner.md +112 -0
  7. package/.claude/agents/reengineer-squad/source-analyst.md +103 -0
  8. package/.claude/agents/reengineer-squad/target-analyst.md +118 -0
  9. package/.claude/agents/reengineer-squad/tester.md +105 -0
  10. package/.claude/commands/mastermind/master.md +35 -14
  11. package/.claude/helpers/handlers/capture-handler.cjs +155 -18
  12. package/.claude/helpers/monolean-activate.cjs +20 -0
  13. package/.claude/helpers/monolean-config.cjs +76 -0
  14. package/.claude/helpers/monolean-instructions.cjs +109 -0
  15. package/.claude/helpers/monolean-propagate.cjs +9 -0
  16. package/.claude/helpers/monolean-tracker.cjs +18 -0
  17. package/.claude/helpers/skill-registry.json +2 -2
  18. package/.claude/settings.json +34 -2
  19. package/.claude/skills/agent-browser-testing/SKILL.md +301 -18
  20. package/.claude/skills/mastermind/runorg.md +69 -23
  21. package/.claude/skills/monodesign/SKILL.md +32 -1
  22. package/.claude/skills/monodesign/adapt.md +53 -0
  23. package/.claude/skills/monodesign/agents/monodesign-asset-producer.md +100 -0
  24. package/.claude/skills/monodesign/animate.md +65 -0
  25. package/.claude/skills/monodesign/audit.md +89 -0
  26. package/.claude/skills/monodesign/bolder.md +50 -0
  27. package/.claude/skills/monodesign/clarify.md +64 -0
  28. package/.claude/skills/monodesign/colorize.md +68 -0
  29. package/.claude/skills/monodesign/craft.md +51 -0
  30. package/.claude/skills/monodesign/critique.md +66 -0
  31. package/.claude/skills/monodesign/delight.md +47 -0
  32. package/.claude/skills/monodesign/distill.md +56 -0
  33. package/.claude/skills/monodesign/document.md +80 -0
  34. package/.claude/skills/monodesign/extract.md +74 -0
  35. package/.claude/skills/monodesign/harden.md +65 -0
  36. package/.claude/skills/monodesign/live.md +59 -0
  37. package/.claude/skills/monodesign/onboard.md +50 -0
  38. package/.claude/skills/monodesign/optimize.md +64 -0
  39. package/.claude/skills/monodesign/overdrive.md +56 -0
  40. package/.claude/skills/monodesign/polish.md +68 -0
  41. package/.claude/skills/monodesign/quieter.md +57 -0
  42. package/.claude/skills/monodesign/reference/antipatterns-catalog.md +248 -76
  43. package/.claude/skills/monodesign/reference/codex.md +107 -0
  44. package/.claude/skills/monodesign/reference/craft.md +3 -0
  45. package/.claude/skills/monodesign/reference/hooks.md +99 -0
  46. package/.claude/skills/monodesign/reference/image-prompts.md +12 -0
  47. package/.claude/skills/monodesign/shape.md +71 -0
  48. package/.claude/skills/monodesign/teach.md +69 -0
  49. package/.claude/skills/monodesign/typeset.md +59 -0
  50. package/.claude/skills/monolean/SKILL.md +118 -0
  51. package/.claude/skills/monolean-audit/SKILL.md +41 -0
  52. package/.claude/skills/monolean-debt/SKILL.md +46 -0
  53. package/.claude/skills/monolean-help/SKILL.md +60 -0
  54. package/.claude/skills/monolean-review/SKILL.md +57 -0
  55. package/package.json +8 -2
  56. package/packages/@monomind/cli/bin/cli.js +3 -1
  57. package/packages/@monomind/cli/dist/dashboard/server.js +137 -0
  58. package/packages/@monomind/cli/dist/src/__tests__/browse-adapters.test.d.ts +2 -0
  59. package/packages/@monomind/cli/dist/src/__tests__/browse-adapters.test.js +51 -0
  60. package/packages/@monomind/cli/dist/src/__tests__/browse-analyzer.test.d.ts +2 -0
  61. package/packages/@monomind/cli/dist/src/__tests__/browse-analyzer.test.js +68 -0
  62. package/packages/@monomind/cli/dist/src/__tests__/browse-builtin-handlers.test.d.ts +2 -0
  63. package/packages/@monomind/cli/dist/src/__tests__/browse-builtin-handlers.test.js +139 -0
  64. package/packages/@monomind/cli/dist/src/__tests__/browse-cdp.test.d.ts +2 -0
  65. package/packages/@monomind/cli/dist/src/__tests__/browse-cdp.test.js +169 -0
  66. package/packages/@monomind/cli/dist/src/__tests__/browse-dashboard.test.d.ts +2 -0
  67. package/packages/@monomind/cli/dist/src/__tests__/browse-dashboard.test.js +179 -0
  68. package/packages/@monomind/cli/dist/src/__tests__/browse-engine.test.d.ts +2 -0
  69. package/packages/@monomind/cli/dist/src/__tests__/browse-engine.test.js +122 -0
  70. package/packages/@monomind/cli/dist/src/__tests__/browse-expression.test.d.ts +2 -0
  71. package/packages/@monomind/cli/dist/src/__tests__/browse-expression.test.js +54 -0
  72. package/packages/@monomind/cli/dist/src/__tests__/browse-store.test.d.ts +2 -0
  73. package/packages/@monomind/cli/dist/src/__tests__/browse-store.test.js +99 -0
  74. package/packages/@monomind/cli/dist/src/__tests__/browse-workflow-types.test.d.ts +2 -0
  75. package/packages/@monomind/cli/dist/src/__tests__/browse-workflow-types.test.js +33 -0
  76. package/packages/@monomind/cli/dist/src/browser/action-builder/analyzer.d.ts +11 -0
  77. package/packages/@monomind/cli/dist/src/browser/action-builder/analyzer.js +71 -0
  78. package/packages/@monomind/cli/dist/src/browser/action-builder/types.d.ts +47 -0
  79. package/packages/@monomind/cli/dist/src/browser/action-builder/types.js +2 -0
  80. package/packages/@monomind/cli/dist/src/browser/adapters/gemini.d.ts +3 -0
  81. package/packages/@monomind/cli/dist/src/browser/adapters/gemini.js +16 -0
  82. package/packages/@monomind/cli/dist/src/browser/adapters/google.d.ts +3 -0
  83. package/packages/@monomind/cli/dist/src/browser/adapters/google.js +17 -0
  84. package/packages/@monomind/cli/dist/src/browser/adapters/index.d.ts +19 -0
  85. package/packages/@monomind/cli/dist/src/browser/adapters/index.js +23 -0
  86. package/packages/@monomind/cli/dist/src/browser/adapters/instagram.d.ts +3 -0
  87. package/packages/@monomind/cli/dist/src/browser/adapters/instagram.js +17 -0
  88. package/packages/@monomind/cli/dist/src/browser/adapters/linkedin.d.ts +3 -0
  89. package/packages/@monomind/cli/dist/src/browser/adapters/linkedin.js +19 -0
  90. package/packages/@monomind/cli/dist/src/browser/adapters/microsoft.d.ts +3 -0
  91. package/packages/@monomind/cli/dist/src/browser/adapters/microsoft.js +16 -0
  92. package/packages/@monomind/cli/dist/src/browser/adapters/x.d.ts +3 -0
  93. package/packages/@monomind/cli/dist/src/browser/adapters/x.js +19 -0
  94. package/packages/@monomind/cli/dist/src/browser/dashboard/api-types.d.ts +50 -0
  95. package/packages/@monomind/cli/dist/src/browser/dashboard/api-types.js +14 -0
  96. package/packages/@monomind/cli/dist/src/browser/dashboard/server.d.ts +9 -0
  97. package/packages/@monomind/cli/dist/src/browser/dashboard/server.js +62 -0
  98. package/packages/@monomind/cli/dist/src/browser/dashboard/ui.html +1811 -0
  99. package/packages/@monomind/cli/dist/src/browser/workflow/builtin-handlers.d.ts +3 -0
  100. package/packages/@monomind/cli/dist/src/browser/workflow/builtin-handlers.js +343 -0
  101. package/packages/@monomind/cli/dist/src/browser/workflow/engine.d.ts +15 -0
  102. package/packages/@monomind/cli/dist/src/browser/workflow/engine.js +127 -0
  103. package/packages/@monomind/cli/dist/src/browser/workflow/expression.d.ts +4 -0
  104. package/packages/@monomind/cli/dist/src/browser/workflow/expression.js +64 -0
  105. package/packages/@monomind/cli/dist/src/browser/workflow/store.d.ts +24 -0
  106. package/packages/@monomind/cli/dist/src/browser/workflow/store.js +145 -0
  107. package/packages/@monomind/cli/dist/src/browser/workflow/types.d.ts +48 -0
  108. package/packages/@monomind/cli/dist/src/browser/workflow/types.js +2 -0
  109. package/packages/@monomind/cli/dist/src/commands/browse-action.d.ts +4 -0
  110. package/packages/@monomind/cli/dist/src/commands/browse-action.js +151 -0
  111. package/packages/@monomind/cli/dist/src/commands/browse-platform.d.ts +4 -0
  112. package/packages/@monomind/cli/dist/src/commands/browse-platform.js +117 -0
  113. package/packages/@monomind/cli/dist/src/commands/browse-workflow.d.ts +4 -0
  114. package/packages/@monomind/cli/dist/src/commands/browse-workflow.js +153 -0
  115. package/packages/@monomind/cli/dist/src/commands/browse.d.ts +10 -6
  116. package/packages/@monomind/cli/dist/src/commands/browse.js +11 -2154
  117. package/packages/@monomind/cli/dist/src/commands/design-detect.d.ts +21 -0
  118. package/packages/@monomind/cli/dist/src/commands/design-detect.js +127 -0
  119. package/packages/@monomind/cli/dist/src/commands/design-palette.d.ts +22 -0
  120. package/packages/@monomind/cli/dist/src/commands/design-palette.js +539 -0
  121. package/packages/@monomind/cli/dist/src/commands/hooks-core-commands.d.ts +10 -0
  122. package/packages/@monomind/cli/dist/src/commands/hooks-core-commands.js +377 -0
  123. package/packages/@monomind/cli/dist/src/commands/hooks-coverage-commands.d.ts +12 -0
  124. package/packages/@monomind/cli/dist/src/commands/hooks-coverage-commands.js +1217 -0
  125. package/packages/@monomind/cli/dist/src/commands/hooks-coverage-utils.d.ts +42 -0
  126. package/packages/@monomind/cli/dist/src/commands/hooks-coverage-utils.js +220 -0
  127. package/packages/@monomind/cli/dist/src/commands/hooks-extended-commands.d.ts +14 -0
  128. package/packages/@monomind/cli/dist/src/commands/hooks-extended-commands.js +579 -0
  129. package/packages/@monomind/cli/dist/src/commands/hooks-formatting.d.ts +13 -0
  130. package/packages/@monomind/cli/dist/src/commands/hooks-formatting.js +42 -0
  131. package/packages/@monomind/cli/dist/src/commands/hooks-routing-commands.d.ts +15 -0
  132. package/packages/@monomind/cli/dist/src/commands/hooks-routing-commands.js +723 -0
  133. package/packages/@monomind/cli/dist/src/commands/hooks-workers.d.ts +9 -0
  134. package/packages/@monomind/cli/dist/src/commands/hooks-workers.js +782 -0
  135. package/packages/@monomind/cli/dist/src/commands/hooks.d.ts +8 -0
  136. package/packages/@monomind/cli/dist/src/commands/hooks.js +179 -4103
  137. package/packages/@monomind/cli/dist/src/commands/index.d.ts +1 -0
  138. package/packages/@monomind/cli/dist/src/commands/index.js +6 -0
  139. package/packages/@monomind/cli/dist/src/commands/org.js +14 -15
  140. package/packages/@monomind/cli/dist/src/commands/tokens.js +77 -1
  141. package/packages/@monomind/cli/dist/src/graph/enrich.mjs +362 -0
  142. package/packages/@monomind/cli/dist/src/init/executor.js +18 -8
  143. package/packages/@monomind/cli/dist/src/init/settings-generator.js +39 -5
  144. package/packages/@monomind/cli/dist/src/init/statusline-generator.js +25 -5
  145. package/packages/@monomind/cli/dist/src/mcp-tools/browser-tools.d.ts +3 -5
  146. package/packages/@monomind/cli/dist/src/mcp-tools/browser-tools.js +619 -326
  147. package/packages/@monomind/cli/dist/src/mcp-tools/hooks-embedding.d.ts +161 -0
  148. package/packages/@monomind/cli/dist/src/mcp-tools/hooks-embedding.js +506 -0
  149. package/packages/@monomind/cli/dist/src/mcp-tools/hooks-intelligence.d.ts +26 -0
  150. package/packages/@monomind/cli/dist/src/mcp-tools/hooks-intelligence.js +1328 -0
  151. package/packages/@monomind/cli/dist/src/mcp-tools/hooks-routing.d.ts +27 -0
  152. package/packages/@monomind/cli/dist/src/mcp-tools/hooks-routing.js +1591 -0
  153. package/packages/@monomind/cli/dist/src/mcp-tools/hooks-tools.d.ts +3 -38
  154. package/packages/@monomind/cli/dist/src/mcp-tools/hooks-tools.js +5 -3393
  155. package/packages/@monomind/cli/dist/src/mcp-tools/monograph-tools.js +24 -14
  156. package/packages/@monomind/cli/dist/src/mcp-tools/workflow-tools.js +54 -1
  157. package/packages/@monomind/cli/dist/src/memory/embedding-operations.d.ts +58 -0
  158. package/packages/@monomind/cli/dist/src/memory/embedding-operations.js +299 -0
  159. package/packages/@monomind/cli/dist/src/memory/ewc-consolidation.js +37 -3
  160. package/packages/@monomind/cli/dist/src/memory/hnsw-operations.d.ts +130 -0
  161. package/packages/@monomind/cli/dist/src/memory/hnsw-operations.js +400 -0
  162. package/packages/@monomind/cli/dist/src/memory/intelligence.js +42 -23
  163. package/packages/@monomind/cli/dist/src/memory/memory-bridge.js +52 -8
  164. package/packages/@monomind/cli/dist/src/memory/memory-crud.d.ts +67 -0
  165. package/packages/@monomind/cli/dist/src/memory/memory-crud.js +415 -0
  166. package/packages/@monomind/cli/dist/src/memory/memory-initializer.d.ts +9 -322
  167. package/packages/@monomind/cli/dist/src/memory/memory-initializer.js +17 -1794
  168. package/packages/@monomind/cli/dist/src/memory/memory-migrations.d.ts +30 -0
  169. package/packages/@monomind/cli/dist/src/memory/memory-migrations.js +134 -0
  170. package/packages/@monomind/cli/dist/src/memory/memory-read.d.ts +78 -0
  171. package/packages/@monomind/cli/dist/src/memory/memory-read.js +331 -0
  172. package/packages/@monomind/cli/dist/src/memory/memory-schema.d.ts +13 -0
  173. package/packages/@monomind/cli/dist/src/memory/memory-schema.js +167 -0
  174. package/packages/@monomind/cli/dist/src/memory/sona-optimizer.js +37 -4
  175. package/packages/@monomind/cli/dist/src/monovector/route-outcomes.js +16 -6
  176. package/packages/@monomind/cli/dist/src/pricing/model-pricing.d.ts +41 -0
  177. package/packages/@monomind/cli/dist/src/pricing/model-pricing.js +61 -0
  178. package/packages/@monomind/cli/dist/src/ui/.monomind/capture/active-run.json +1 -0
  179. package/packages/@monomind/cli/dist/src/ui/collector.mjs +799 -0
  180. package/packages/@monomind/cli/dist/src/ui/dashboard.html +13986 -0
  181. package/packages/@monomind/cli/dist/src/ui/data/agent-avatars.html +763 -0
  182. package/packages/@monomind/cli/dist/src/ui/data/agent-avatars.json +966 -0
  183. package/packages/@monomind/cli/dist/src/ui/data/avatars/account-strategist.svg +58 -0
  184. package/packages/@monomind/cli/dist/src/ui/data/avatars/accounts-payable.svg +54 -0
  185. package/packages/@monomind/cli/dist/src/ui/data/avatars/adaptive-coordinator.svg +55 -0
  186. package/packages/@monomind/cli/dist/src/ui/data/avatars/adaptive-coordinator2.svg +54 -0
  187. package/packages/@monomind/cli/dist/src/ui/data/avatars/ai-citation.svg +57 -0
  188. package/packages/@monomind/cli/dist/src/ui/data/avatars/ai-engineer.svg +61 -0
  189. package/packages/@monomind/cli/dist/src/ui/data/avatars/analytics-reporter.svg +53 -0
  190. package/packages/@monomind/cli/dist/src/ui/data/avatars/api-tester.svg +53 -0
  191. package/packages/@monomind/cli/dist/src/ui/data/avatars/architecture.svg +54 -0
  192. package/packages/@monomind/cli/dist/src/ui/data/avatars/automation-governance.svg +55 -0
  193. package/packages/@monomind/cli/dist/src/ui/data/avatars/backend-dev.svg +53 -0
  194. package/packages/@monomind/cli/dist/src/ui/data/avatars/benchmarker.svg +54 -0
  195. package/packages/@monomind/cli/dist/src/ui/data/avatars/blockchain-auditor.svg +53 -0
  196. package/packages/@monomind/cli/dist/src/ui/data/avatars/byzantine-coord.svg +57 -0
  197. package/packages/@monomind/cli/dist/src/ui/data/avatars/case-analyst.svg +57 -0
  198. package/packages/@monomind/cli/dist/src/ui/data/avatars/cicd-engineer.svg +55 -0
  199. package/packages/@monomind/cli/dist/src/ui/data/avatars/cloud-architect.svg +54 -0
  200. package/packages/@monomind/cli/dist/src/ui/data/avatars/code-review-swarm.svg +57 -0
  201. package/packages/@monomind/cli/dist/src/ui/data/avatars/coder-v119.svg +57 -0
  202. package/packages/@monomind/cli/dist/src/ui/data/avatars/coder.svg +58 -0
  203. package/packages/@monomind/cli/dist/src/ui/data/avatars/collective-coord.svg +54 -0
  204. package/packages/@monomind/cli/dist/src/ui/data/avatars/compliance-auditor.svg +58 -0
  205. package/packages/@monomind/cli/dist/src/ui/data/avatars/consensus-coordinator.svg +54 -0
  206. package/packages/@monomind/cli/dist/src/ui/data/avatars/content-creator.svg +54 -0
  207. package/packages/@monomind/cli/dist/src/ui/data/avatars/crdt-synchronizer.svg +53 -0
  208. package/packages/@monomind/cli/dist/src/ui/data/avatars/cro-specialist.svg +58 -0
  209. package/packages/@monomind/cli/dist/src/ui/data/avatars/data-consolidator.svg +54 -0
  210. package/packages/@monomind/cli/dist/src/ui/data/avatars/data-engineer.svg +53 -0
  211. package/packages/@monomind/cli/dist/src/ui/data/avatars/database-optimizer.svg +61 -0
  212. package/packages/@monomind/cli/dist/src/ui/data/avatars/deal-strategist.svg +54 -0
  213. package/packages/@monomind/cli/dist/src/ui/data/avatars/defender.svg +53 -0
  214. package/packages/@monomind/cli/dist/src/ui/data/avatars/devops-automator.svg +56 -0
  215. package/packages/@monomind/cli/dist/src/ui/data/avatars/discovery-coach.svg +54 -0
  216. package/packages/@monomind/cli/dist/src/ui/data/avatars/email-marketing.svg +57 -0
  217. package/packages/@monomind/cli/dist/src/ui/data/avatars/embedded-firmware.svg +61 -0
  218. package/packages/@monomind/cli/dist/src/ui/data/avatars/evidence-collector.svg +57 -0
  219. package/packages/@monomind/cli/dist/src/ui/data/avatars/experiment-tracker.svg +53 -0
  220. package/packages/@monomind/cli/dist/src/ui/data/avatars/feedback-synthesizer.svg +54 -0
  221. package/packages/@monomind/cli/dist/src/ui/data/avatars/finance-tracker.svg +54 -0
  222. package/packages/@monomind/cli/dist/src/ui/data/avatars/frontend-developer.svg +54 -0
  223. package/packages/@monomind/cli/dist/src/ui/data/avatars/game-audio-engineer.svg +59 -0
  224. package/packages/@monomind/cli/dist/src/ui/data/avatars/game-designer.svg +54 -0
  225. package/packages/@monomind/cli/dist/src/ui/data/avatars/gossip-coordinator.svg +54 -0
  226. package/packages/@monomind/cli/dist/src/ui/data/avatars/hierarchical-coord.svg +54 -0
  227. package/packages/@monomind/cli/dist/src/ui/data/avatars/incident-commander.svg +57 -0
  228. package/packages/@monomind/cli/dist/src/ui/data/avatars/infrastructure.svg +54 -0
  229. package/packages/@monomind/cli/dist/src/ui/data/avatars/input-validator.svg +53 -0
  230. package/packages/@monomind/cli/dist/src/ui/data/avatars/ios-developer.svg +54 -0
  231. package/packages/@monomind/cli/dist/src/ui/data/avatars/issue-tracker.svg +53 -0
  232. package/packages/@monomind/cli/dist/src/ui/data/avatars/judge.svg +55 -0
  233. package/packages/@monomind/cli/dist/src/ui/data/avatars/launch-strategist.svg +54 -0
  234. package/packages/@monomind/cli/dist/src/ui/data/avatars/legal-compliance.svg +53 -0
  235. package/packages/@monomind/cli/dist/src/ui/data/avatars/level-designer.svg +53 -0
  236. package/packages/@monomind/cli/dist/src/ui/data/avatars/load-balancer.svg +57 -0
  237. package/packages/@monomind/cli/dist/src/ui/data/avatars/mcp-builder.svg +53 -0
  238. package/packages/@monomind/cli/dist/src/ui/data/avatars/memory-coordinator.svg +55 -0
  239. package/packages/@monomind/cli/dist/src/ui/data/avatars/mesh-coordinator.svg +55 -0
  240. package/packages/@monomind/cli/dist/src/ui/data/avatars/ml-developer.svg +58 -0
  241. package/packages/@monomind/cli/dist/src/ui/data/avatars/mobile-app-builder.svg +53 -0
  242. package/packages/@monomind/cli/dist/src/ui/data/avatars/mobile-dev.svg +54 -0
  243. package/packages/@monomind/cli/dist/src/ui/data/avatars/model-qa.svg +58 -0
  244. package/packages/@monomind/cli/dist/src/ui/data/avatars/narrative-designer.svg +58 -0
  245. package/packages/@monomind/cli/dist/src/ui/data/avatars/outbound-strategist.svg +55 -0
  246. package/packages/@monomind/cli/dist/src/ui/data/avatars/path-validator.svg +54 -0
  247. package/packages/@monomind/cli/dist/src/ui/data/avatars/payment-agent.svg +53 -0
  248. package/packages/@monomind/cli/dist/src/ui/data/avatars/perf-analyzer.svg +58 -0
  249. package/packages/@monomind/cli/dist/src/ui/data/avatars/pipeline-analyst.svg +54 -0
  250. package/packages/@monomind/cli/dist/src/ui/data/avatars/planner.svg +55 -0
  251. package/packages/@monomind/cli/dist/src/ui/data/avatars/pr-manager.svg +54 -0
  252. package/packages/@monomind/cli/dist/src/ui/data/avatars/pricing-strategist.svg +54 -0
  253. package/packages/@monomind/cli/dist/src/ui/data/avatars/product-manager.svg +54 -0
  254. package/packages/@monomind/cli/dist/src/ui/data/avatars/production-validator.svg +54 -0
  255. package/packages/@monomind/cli/dist/src/ui/data/avatars/project-shepherd.svg +54 -0
  256. package/packages/@monomind/cli/dist/src/ui/data/avatars/proposal-strategist.svg +54 -0
  257. package/packages/@monomind/cli/dist/src/ui/data/avatars/prosecutor.svg +57 -0
  258. package/packages/@monomind/cli/dist/src/ui/data/avatars/pseudocode.svg +53 -0
  259. package/packages/@monomind/cli/dist/src/ui/data/avatars/queen-coordinator.svg +55 -0
  260. package/packages/@monomind/cli/dist/src/ui/data/avatars/quorum-manager.svg +53 -0
  261. package/packages/@monomind/cli/dist/src/ui/data/avatars/raft-manager.svg +53 -0
  262. package/packages/@monomind/cli/dist/src/ui/data/avatars/reality-checker.svg +58 -0
  263. package/packages/@monomind/cli/dist/src/ui/data/avatars/recruitment.svg +58 -0
  264. package/packages/@monomind/cli/dist/src/ui/data/avatars/refinement.svg +53 -0
  265. package/packages/@monomind/cli/dist/src/ui/data/avatars/release-manager.svg +54 -0
  266. package/packages/@monomind/cli/dist/src/ui/data/avatars/repo-architect.svg +54 -0
  267. package/packages/@monomind/cli/dist/src/ui/data/avatars/researcher.svg +58 -0
  268. package/packages/@monomind/cli/dist/src/ui/data/avatars/resource-allocator.svg +53 -0
  269. package/packages/@monomind/cli/dist/src/ui/data/avatars/reviewer.svg +53 -0
  270. package/packages/@monomind/cli/dist/src/ui/data/avatars/safe-executor.svg +53 -0
  271. package/packages/@monomind/cli/dist/src/ui/data/avatars/sales-coach.svg +53 -0
  272. package/packages/@monomind/cli/dist/src/ui/data/avatars/sales-engineer.svg +58 -0
  273. package/packages/@monomind/cli/dist/src/ui/data/avatars/scout-explorer.svg +58 -0
  274. package/packages/@monomind/cli/dist/src/ui/data/avatars/security-architect.svg +54 -0
  275. package/packages/@monomind/cli/dist/src/ui/data/avatars/security-auditor.svg +55 -0
  276. package/packages/@monomind/cli/dist/src/ui/data/avatars/senior-developer.svg +58 -0
  277. package/packages/@monomind/cli/dist/src/ui/data/avatars/senior-pm.svg +58 -0
  278. package/packages/@monomind/cli/dist/src/ui/data/avatars/seo-specialist.svg +57 -0
  279. package/packages/@monomind/cli/dist/src/ui/data/avatars/social-media.svg +54 -0
  280. package/packages/@monomind/cli/dist/src/ui/data/avatars/solidity-engineer.svg +58 -0
  281. package/packages/@monomind/cli/dist/src/ui/data/avatars/sparc-coder.svg +58 -0
  282. package/packages/@monomind/cli/dist/src/ui/data/avatars/sparc-coord.svg +56 -0
  283. package/packages/@monomind/cli/dist/src/ui/data/avatars/specification.svg +57 -0
  284. package/packages/@monomind/cli/dist/src/ui/data/avatars/sprint-prioritizer.svg +53 -0
  285. package/packages/@monomind/cli/dist/src/ui/data/avatars/sre.svg +54 -0
  286. package/packages/@monomind/cli/dist/src/ui/data/avatars/studio-operations.svg +53 -0
  287. package/packages/@monomind/cli/dist/src/ui/data/avatars/studio-producer.svg +55 -0
  288. package/packages/@monomind/cli/dist/src/ui/data/avatars/support-responder.svg +56 -0
  289. package/packages/@monomind/cli/dist/src/ui/data/avatars/system-architect.svg +54 -0
  290. package/packages/@monomind/cli/dist/src/ui/data/avatars/task-orchestrator.svg +56 -0
  291. package/packages/@monomind/cli/dist/src/ui/data/avatars/technical-artist.svg +53 -0
  292. package/packages/@monomind/cli/dist/src/ui/data/avatars/technical-writer.svg +59 -0
  293. package/packages/@monomind/cli/dist/src/ui/data/avatars/tester.svg +53 -0
  294. package/packages/@monomind/cli/dist/src/ui/data/avatars/threat-detection.svg +61 -0
  295. package/packages/@monomind/cli/dist/src/ui/data/avatars/trend-researcher.svg +54 -0
  296. package/packages/@monomind/cli/dist/src/ui/data/avatars/trial-director.svg +55 -0
  297. package/packages/@monomind/cli/dist/src/ui/data/avatars/unity-architect.svg +54 -0
  298. package/packages/@monomind/cli/dist/src/ui/data/avatars/visionos-engineer.svg +57 -0
  299. package/packages/@monomind/cli/dist/src/ui/data/avatars/worker-specialist.svg +55 -0
  300. package/packages/@monomind/cli/dist/src/ui/data/avatars/workflow-architect.svg +57 -0
  301. package/packages/@monomind/cli/dist/src/ui/data/avatars/workflow-automation.svg +54 -0
  302. package/packages/@monomind/cli/dist/src/ui/data/avatars/zk-steward.svg +54 -0
  303. package/packages/@monomind/cli/dist/src/ui/data/known-projects.json +1 -0
  304. package/packages/@monomind/cli/dist/src/ui/data/mastermind-sessions.json +1 -0
  305. package/packages/@monomind/cli/dist/src/ui/data/sessions/_index.json +1 -0
  306. package/packages/@monomind/cli/dist/src/ui/orgs.html +2215 -0
  307. package/packages/@monomind/cli/dist/src/ui/server.mjs +6175 -0
  308. package/packages/@monomind/cli/dist/src/ui/sse-manager.mjs +119 -0
  309. package/packages/@monomind/cli/dist/src/update/checker.js +1 -1
  310. package/packages/@monomind/cli/dist/workflow/builtin-handlers.js +321 -0
  311. package/packages/@monomind/cli/dist/workflow/engine.js +253 -0
  312. package/packages/@monomind/cli/dist/workflow/expression.js +98 -0
  313. package/packages/@monomind/cli/dist/workflow/types.js +2 -0
  314. package/packages/@monomind/cli/package.json +8 -5
@@ -0,0 +1,53 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
2
+ <defs>
3
+ <clipPath id="circ">
4
+ <circle cx="60" cy="60" r="58"/>
5
+ </clipPath>
6
+ <clipPath id="headClip">
7
+ <ellipse cx="60" cy="42" rx="24" ry="28"/>
8
+ </clipPath>
9
+ </defs>
10
+
11
+ <!-- Background -->
12
+ <circle cx="60" cy="60" r="58" fill="#EEF9FF"/>
13
+ <circle cx="60" cy="60" r="58" fill="none" stroke="#2196A8" stroke-width="3"/>
14
+
15
+ <g clip-path="url(#circ)">
16
+
17
+ <!-- body -->
18
+ <ellipse cx="60" cy="112" rx="26" ry="36" fill="#2196A8"/>
19
+ <ellipse cx="60" cy="110" rx="22" ry="32" fill="#16707A"/>
20
+ <!-- collar -->
21
+ <path d="M44,96 Q60,108 76,96" fill="#EEF9FF"/>
22
+ <!-- neck -->
23
+ <rect x="54" y="70" width="12" height="10" rx="4" fill="#C68642"/>
24
+
25
+ <!-- head base -->
26
+ <ellipse cx="60" cy="44" rx="22" ry="26" fill="#C68642"/>
27
+
28
+ <circle cx="38" cy="46" r="5" fill="#C68642"/>
29
+ <circle cx="38" cy="46" r="3" fill="#C68642" opacity="0.5"/>
30
+ <circle cx="82" cy="46" r="5" fill="#C68642"/>
31
+ <circle cx="82" cy="46" r="3" fill="#C68642" opacity="0.5"/>
32
+
33
+ <!-- hair -->
34
+ <ellipse cx="60" cy="24" rx="19" ry="8" fill="#3B2314"/>
35
+ <circle cx="60" cy="14" r="10" fill="#3B2314"/>
36
+ <!-- face features -->
37
+ <path d="M45,44 Q51,39 57,44 Q51,49 45,44Z" fill="white"/>
38
+ <path d="M63,44 Q69,39 75,44 Q69,49 63,44Z" fill="white"/>
39
+ <circle cx="51" cy="44" r="2.8" fill="#1a5c4a"/>
40
+ <circle cx="69" cy="44" r="2.8" fill="#1a5c4a"/>
41
+ <circle cx="52" cy="43" r="1.1" fill="white"/>
42
+ <circle cx="70" cy="43" r="1.1" fill="white"/>
43
+ <ellipse cx="60" cy="52" rx="2.5" ry="1.8" fill="#C68642" opacity="0.7" stroke="#C68642" stroke-width="0.5"/>
44
+ <path d="M54,60 L66,60" stroke="#C4726A" stroke-width="2" stroke-linecap="round"/>
45
+
46
+ <!-- accessory -->
47
+
48
+ </g>
49
+
50
+ <!-- role badge -->
51
+ <circle cx="88" cy="88" r="16" fill="#2196A8" opacity="0.95"/>
52
+ <text x="88" y="93" text-anchor="middle" font-size="14" fill="white" font-family="sans-serif">🗳️</text>
53
+ </svg>
@@ -0,0 +1,53 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
2
+ <defs>
3
+ <clipPath id="circ">
4
+ <circle cx="60" cy="60" r="58"/>
5
+ </clipPath>
6
+ <clipPath id="headClip">
7
+ <ellipse cx="60" cy="42" rx="24" ry="28"/>
8
+ </clipPath>
9
+ </defs>
10
+
11
+ <!-- Background -->
12
+ <circle cx="60" cy="60" r="58" fill="#EEF9FF"/>
13
+ <circle cx="60" cy="60" r="58" fill="none" stroke="#2196A8" stroke-width="3"/>
14
+
15
+ <g clip-path="url(#circ)">
16
+
17
+ <!-- body -->
18
+ <ellipse cx="60" cy="112" rx="26" ry="36" fill="#2196A8"/>
19
+ <ellipse cx="60" cy="110" rx="22" ry="32" fill="#16707A"/>
20
+ <!-- collar -->
21
+ <path d="M44,96 Q60,108 76,96" fill="#EEF9FF"/>
22
+ <!-- neck -->
23
+ <rect x="54" y="70" width="12" height="10" rx="4" fill="#FFE0C8"/>
24
+
25
+ <!-- head base -->
26
+ <ellipse cx="60" cy="44" rx="22" ry="26" fill="#FFE0C8"/>
27
+
28
+ <circle cx="38" cy="46" r="5" fill="#FFE0C8"/>
29
+ <circle cx="38" cy="46" r="3" fill="#FFE0C8" opacity="0.5"/>
30
+ <circle cx="82" cy="46" r="5" fill="#FFE0C8"/>
31
+ <circle cx="82" cy="46" r="3" fill="#FFE0C8" opacity="0.5"/>
32
+
33
+ <!-- hair -->
34
+ <ellipse cx="60" cy="22" rx="18" ry="9" fill="#D4D4D4"/>
35
+ <rect x="55" y="6" width="10" height="20" rx="5" fill="#D4D4D4"/>
36
+ <!-- face features -->
37
+ <ellipse cx="51" cy="44" rx="5.5" ry="4" fill="white"/>
38
+ <ellipse cx="69" cy="44" rx="5.5" ry="4" fill="white"/>
39
+ <circle cx="51" cy="44" r="3" fill="#5B2D8E"/>
40
+ <circle cx="69" cy="44" r="3" fill="#5B2D8E"/>
41
+ <circle cx="52.5" cy="43" r="1.2" fill="white"/>
42
+ <circle cx="70.5" cy="43" r="1.2" fill="white"/>
43
+ <ellipse cx="60" cy="52" rx="2.5" ry="1.8" fill="#FFE0C8" opacity="0.7" stroke="#FFE0C8" stroke-width="0.5"/>
44
+ <path d="M54,60 L66,60" stroke="#C4726A" stroke-width="2" stroke-linecap="round"/>
45
+
46
+ <!-- accessory -->
47
+
48
+ </g>
49
+
50
+ <!-- role badge -->
51
+ <circle cx="88" cy="88" r="16" fill="#2196A8" opacity="0.95"/>
52
+ <text x="88" y="93" text-anchor="middle" font-size="14" fill="white" font-family="sans-serif">🚣</text>
53
+ </svg>
@@ -0,0 +1,58 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
2
+ <defs>
3
+ <clipPath id="circ">
4
+ <circle cx="60" cy="60" r="58"/>
5
+ </clipPath>
6
+ <clipPath id="headClip">
7
+ <ellipse cx="60" cy="42" rx="24" ry="28"/>
8
+ </clipPath>
9
+ </defs>
10
+
11
+ <!-- Background -->
12
+ <circle cx="60" cy="60" r="58" fill="#FFFBF0"/>
13
+ <circle cx="60" cy="60" r="58" fill="none" stroke="#CA8A04" stroke-width="3"/>
14
+
15
+ <g clip-path="url(#circ)">
16
+
17
+ <!-- body -->
18
+ <ellipse cx="60" cy="112" rx="26" ry="36" fill="#CA8A04"/>
19
+ <ellipse cx="60" cy="110" rx="22" ry="32" fill="#A06800"/>
20
+ <!-- collar -->
21
+ <path d="M44,96 Q60,108 76,96" fill="#FFFBF0"/>
22
+ <!-- neck -->
23
+ <rect x="54" y="70" width="12" height="10" rx="4" fill="#F5C18E"/>
24
+
25
+ <!-- head base -->
26
+ <ellipse cx="60" cy="44" rx="22" ry="26" fill="#F5C18E"/>
27
+
28
+ <circle cx="38" cy="46" r="5" fill="#F5C18E"/>
29
+ <circle cx="38" cy="46" r="3" fill="#F5C18E" opacity="0.5"/>
30
+ <circle cx="82" cy="46" r="5" fill="#F5C18E"/>
31
+ <circle cx="82" cy="46" r="3" fill="#F5C18E" opacity="0.5"/>
32
+
33
+ <!-- hair -->
34
+ <ellipse cx="60" cy="21" rx="21" ry="12" fill="#8B5E3C"/>
35
+ <rect x="39" y="21" width="10" height="22" rx="5" fill="#8B5E3C"/>
36
+ <rect x="71" y="21" width="10" height="22" rx="5" fill="#8B5E3C"/>
37
+ <!-- face features -->
38
+ <ellipse cx="51" cy="44" rx="5" ry="2.5" fill="white"/>
39
+ <ellipse cx="69" cy="44" rx="5" ry="2.5" fill="white"/>
40
+ <circle cx="51" cy="44" r="2.2" fill="#8B4513"/>
41
+ <circle cx="69" cy="44" r="2.2" fill="#8B4513"/>
42
+ <circle cx="52" cy="43.2" r="1" fill="white"/>
43
+ <circle cx="70" cy="43.2" r="1" fill="white"/>
44
+ <ellipse cx="60" cy="52" rx="2.5" ry="1.8" fill="#F5C18E" opacity="0.7" stroke="#F5C18E" stroke-width="0.5"/>
45
+ <path d="M54,60 L66,60" stroke="#C4726A" stroke-width="2" stroke-linecap="round"/>
46
+
47
+ <!-- accessory -->
48
+ <path d="M43,44 Q51,50 59,44" stroke="#555" stroke-width="2" fill="none"/>
49
+ <path d="M61,44 Q69,50 77,44" stroke="#555" stroke-width="2" fill="none"/>
50
+ <line x1="59" y1="44" x2="61" y2="44" stroke="#555" stroke-width="1.5"/>
51
+ <line x1="43" y1="44" x2="41" y2="46" stroke="#555" stroke-width="1.5"/>
52
+ <line x1="77" y1="44" x2="79" y2="46" stroke="#555" stroke-width="1.5"/>
53
+ </g>
54
+
55
+ <!-- role badge -->
56
+ <circle cx="88" cy="88" r="16" fill="#CA8A04" opacity="0.95"/>
57
+ <text x="88" y="93" text-anchor="middle" font-size="14" fill="white" font-family="sans-serif">🔍</text>
58
+ </svg>
@@ -0,0 +1,58 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
2
+ <defs>
3
+ <clipPath id="circ">
4
+ <circle cx="60" cy="60" r="58"/>
5
+ </clipPath>
6
+ <clipPath id="headClip">
7
+ <ellipse cx="60" cy="42" rx="24" ry="28"/>
8
+ </clipPath>
9
+ </defs>
10
+
11
+ <!-- Background -->
12
+ <circle cx="60" cy="60" r="58" fill="#F5F0FF"/>
13
+ <circle cx="60" cy="60" r="58" fill="none" stroke="#6D28D9" stroke-width="3"/>
14
+
15
+ <g clip-path="url(#circ)">
16
+
17
+ <!-- body -->
18
+ <ellipse cx="60" cy="112" rx="26" ry="36" fill="#6D28D9"/>
19
+ <ellipse cx="60" cy="110" rx="22" ry="32" fill="#5014B8"/>
20
+ <!-- collar -->
21
+ <path d="M44,96 Q60,108 76,96" fill="#F5F0FF"/>
22
+ <!-- neck -->
23
+ <rect x="54" y="70" width="12" height="10" rx="4" fill="#6B3F2A"/>
24
+
25
+ <!-- head base -->
26
+ <ellipse cx="60" cy="44" rx="22" ry="26" fill="#6B3F2A"/>
27
+
28
+ <circle cx="38" cy="46" r="5" fill="#6B3F2A"/>
29
+ <circle cx="38" cy="46" r="3" fill="#6B3F2A" opacity="0.5"/>
30
+ <circle cx="82" cy="46" r="5" fill="#6B3F2A"/>
31
+ <circle cx="82" cy="46" r="3" fill="#6B3F2A" opacity="0.5"/>
32
+
33
+ <!-- hair -->
34
+ <ellipse cx="60" cy="18" rx="24" ry="14" fill="#8B5E3C"/>
35
+ <circle cx="38" cy="25" r="9" fill="#8B5E3C"/>
36
+ <circle cx="82" cy="25" r="9" fill="#8B5E3C"/>
37
+ <circle cx="48" cy="14" r="8" fill="#8B5E3C"/>
38
+ <circle cx="72" cy="14" r="8" fill="#8B5E3C"/>
39
+ <circle cx="60" cy="11" r="9" fill="#8B5E3C"/>
40
+ <!-- face features -->
41
+ <ellipse cx="51" cy="44" rx="5" ry="2.5" fill="white"/>
42
+ <ellipse cx="69" cy="44" rx="5" ry="2.5" fill="white"/>
43
+ <circle cx="51" cy="44" r="2.2" fill="#1a5c4a"/>
44
+ <circle cx="69" cy="44" r="2.2" fill="#1a5c4a"/>
45
+ <circle cx="52" cy="43.2" r="1" fill="white"/>
46
+ <circle cx="70" cy="43.2" r="1" fill="white"/>
47
+ <ellipse cx="60" cy="52" rx="2.5" ry="1.8" fill="#6B3F2A" opacity="0.7" stroke="#6B3F2A" stroke-width="0.5"/>
48
+ <path d="M53,61 Q60,65 67,61" stroke="#C4726A" stroke-width="1.8" fill="none" stroke-linecap="round"/>
49
+ <ellipse cx="46" cy="52" rx="5" ry="3" fill="#ff9999" opacity="0.3"/>
50
+ <ellipse cx="74" cy="52" rx="5" ry="3" fill="#ff9999" opacity="0.3"/>
51
+ <!-- accessory -->
52
+
53
+ </g>
54
+
55
+ <!-- role badge -->
56
+ <circle cx="88" cy="88" r="16" fill="#6D28D9" opacity="0.95"/>
57
+ <text x="88" y="93" text-anchor="middle" font-size="14" fill="white" font-family="sans-serif">🎯</text>
58
+ </svg>
@@ -0,0 +1,53 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
2
+ <defs>
3
+ <clipPath id="circ">
4
+ <circle cx="60" cy="60" r="58"/>
5
+ </clipPath>
6
+ <clipPath id="headClip">
7
+ <ellipse cx="60" cy="42" rx="24" ry="28"/>
8
+ </clipPath>
9
+ </defs>
10
+
11
+ <!-- Background -->
12
+ <circle cx="60" cy="60" r="58" fill="#E8FAF5"/>
13
+ <circle cx="60" cy="60" r="58" fill="none" stroke="#2A9D8F" stroke-width="3"/>
14
+
15
+ <g clip-path="url(#circ)">
16
+
17
+ <!-- body -->
18
+ <ellipse cx="60" cy="112" rx="26" ry="36" fill="#2A9D8F"/>
19
+ <ellipse cx="60" cy="110" rx="22" ry="32" fill="#1A7D72"/>
20
+ <!-- collar -->
21
+ <path d="M44,96 Q60,108 76,96" fill="#E8FAF5"/>
22
+ <!-- neck -->
23
+ <rect x="54" y="70" width="12" height="10" rx="4" fill="#FDDBB4"/>
24
+
25
+ <!-- head base -->
26
+ <ellipse cx="60" cy="44" rx="22" ry="26" fill="#FDDBB4"/>
27
+
28
+ <circle cx="38" cy="46" r="5" fill="#FDDBB4"/>
29
+ <circle cx="38" cy="46" r="3" fill="#FDDBB4" opacity="0.5"/>
30
+ <circle cx="82" cy="46" r="5" fill="#FDDBB4"/>
31
+ <circle cx="82" cy="46" r="3" fill="#FDDBB4" opacity="0.5"/>
32
+
33
+ <!-- hair -->
34
+ <ellipse cx="60" cy="22" rx="18" ry="9" fill="#1a1208"/>
35
+ <rect x="55" y="6" width="10" height="20" rx="5" fill="#1a1208"/>
36
+ <!-- face features -->
37
+ <circle cx="51" cy="44" r="4.5" fill="white"/>
38
+ <circle cx="69" cy="44" r="4.5" fill="white"/>
39
+ <circle cx="51" cy="44" r="3" fill="#5B2D8E"/>
40
+ <circle cx="69" cy="44" r="3" fill="#5B2D8E"/>
41
+ <circle cx="52" cy="43" r="1.2" fill="white"/>
42
+ <circle cx="70" cy="43" r="1.2" fill="white"/>
43
+ <ellipse cx="60" cy="52" rx="2.5" ry="1.8" fill="#FDDBB4" opacity="0.7" stroke="#FDDBB4" stroke-width="0.5"/>
44
+ <path d="M53,61 Q60,65 67,61" stroke="#C4726A" stroke-width="1.8" fill="none" stroke-linecap="round"/>
45
+
46
+ <!-- accessory -->
47
+
48
+ </g>
49
+
50
+ <!-- role badge -->
51
+ <circle cx="88" cy="88" r="16" fill="#2A9D8F" opacity="0.95"/>
52
+ <text x="88" y="93" text-anchor="middle" font-size="14" fill="white" font-family="sans-serif">✨</text>
53
+ </svg>
@@ -0,0 +1,54 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
2
+ <defs>
3
+ <clipPath id="circ">
4
+ <circle cx="60" cy="60" r="58"/>
5
+ </clipPath>
6
+ <clipPath id="headClip">
7
+ <ellipse cx="60" cy="42" rx="24" ry="28"/>
8
+ </clipPath>
9
+ </defs>
10
+
11
+ <!-- Background -->
12
+ <circle cx="60" cy="60" r="58" fill="#F0F2F5"/>
13
+ <circle cx="60" cy="60" r="58" fill="none" stroke="#2D3748" stroke-width="3"/>
14
+
15
+ <g clip-path="url(#circ)">
16
+
17
+ <!-- body -->
18
+ <ellipse cx="60" cy="112" rx="26" ry="36" fill="#2D3748"/>
19
+ <ellipse cx="60" cy="110" rx="22" ry="32" fill="#1a212e"/>
20
+ <!-- collar -->
21
+ <path d="M44,96 Q60,108 76,96" fill="#F0F2F5"/>
22
+ <!-- neck -->
23
+ <rect x="54" y="70" width="12" height="10" rx="4" fill="#FDDBB4"/>
24
+
25
+ <!-- head base -->
26
+ <ellipse cx="60" cy="44" rx="22" ry="26" fill="#FDDBB4"/>
27
+
28
+ <circle cx="38" cy="46" r="5" fill="#FDDBB4"/>
29
+ <circle cx="38" cy="46" r="3" fill="#FDDBB4" opacity="0.5"/>
30
+ <circle cx="82" cy="46" r="5" fill="#FDDBB4"/>
31
+ <circle cx="82" cy="46" r="3" fill="#FDDBB4" opacity="0.5"/>
32
+
33
+ <!-- hair -->
34
+ <ellipse cx="60" cy="22" rx="20" ry="10" fill="#D4D4D4"/>
35
+ <rect x="40" y="22" width="40" height="8" rx="4" fill="#D4D4D4"/>
36
+ <!-- face features -->
37
+ <circle cx="51" cy="44" r="4.5" fill="white"/>
38
+ <circle cx="69" cy="44" r="4.5" fill="white"/>
39
+ <circle cx="51" cy="44" r="3" fill="#2a3a5c"/>
40
+ <circle cx="69" cy="44" r="3" fill="#2a3a5c"/>
41
+ <circle cx="52" cy="43" r="1.2" fill="white"/>
42
+ <circle cx="70" cy="43" r="1.2" fill="white"/>
43
+ <ellipse cx="60" cy="52" rx="2.5" ry="1.8" fill="#FDDBB4" opacity="0.7" stroke="#FDDBB4" stroke-width="0.5"/>
44
+ <path d="M54,60 L66,60" stroke="#C4726A" stroke-width="2" stroke-linecap="round"/>
45
+ <ellipse cx="46" cy="52" rx="5" ry="3" fill="#ff9999" opacity="0.3"/>
46
+ <ellipse cx="74" cy="52" rx="5" ry="3" fill="#ff9999" opacity="0.3"/>
47
+ <!-- accessory -->
48
+
49
+ </g>
50
+
51
+ <!-- role badge -->
52
+ <circle cx="88" cy="88" r="16" fill="#2D3748" opacity="0.95"/>
53
+ <text x="88" y="93" text-anchor="middle" font-size="14" fill="white" font-family="sans-serif">🚀</text>
54
+ </svg>
@@ -0,0 +1,54 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
2
+ <defs>
3
+ <clipPath id="circ">
4
+ <circle cx="60" cy="60" r="58"/>
5
+ </clipPath>
6
+ <clipPath id="headClip">
7
+ <ellipse cx="60" cy="42" rx="24" ry="28"/>
8
+ </clipPath>
9
+ </defs>
10
+
11
+ <!-- Background -->
12
+ <circle cx="60" cy="60" r="58" fill="#F0F2F5"/>
13
+ <circle cx="60" cy="60" r="58" fill="none" stroke="#2D3748" stroke-width="3"/>
14
+
15
+ <g clip-path="url(#circ)">
16
+
17
+ <!-- body -->
18
+ <ellipse cx="60" cy="112" rx="26" ry="36" fill="#2D3748"/>
19
+ <ellipse cx="60" cy="110" rx="22" ry="32" fill="#1a212e"/>
20
+ <!-- collar -->
21
+ <path d="M44,96 Q60,108 76,96" fill="#F0F2F5"/>
22
+ <!-- neck -->
23
+ <rect x="54" y="70" width="12" height="10" rx="4" fill="#D4956A"/>
24
+
25
+ <!-- head base -->
26
+ <ellipse cx="60" cy="44" rx="22" ry="26" fill="#D4956A"/>
27
+
28
+ <circle cx="38" cy="46" r="5" fill="#D4956A"/>
29
+ <circle cx="38" cy="46" r="3" fill="#D4956A" opacity="0.5"/>
30
+ <circle cx="82" cy="46" r="5" fill="#D4956A"/>
31
+ <circle cx="82" cy="46" r="3" fill="#D4956A" opacity="0.5"/>
32
+
33
+ <!-- hair -->
34
+ <ellipse cx="60" cy="21" rx="21" ry="12" fill="#C0A060"/>
35
+ <rect x="39" y="21" width="10" height="22" rx="5" fill="#C0A060"/>
36
+ <rect x="71" y="21" width="10" height="22" rx="5" fill="#C0A060"/>
37
+ <!-- face features -->
38
+ <path d="M45,44 Q51,39 57,44 Q51,49 45,44Z" fill="white"/>
39
+ <path d="M63,44 Q69,39 75,44 Q69,49 63,44Z" fill="white"/>
40
+ <circle cx="51" cy="44" r="2.8" fill="#1a5c4a"/>
41
+ <circle cx="69" cy="44" r="2.8" fill="#1a5c4a"/>
42
+ <circle cx="52" cy="43" r="1.1" fill="white"/>
43
+ <circle cx="70" cy="43" r="1.1" fill="white"/>
44
+ <ellipse cx="60" cy="52" rx="2.5" ry="1.8" fill="#D4956A" opacity="0.7" stroke="#D4956A" stroke-width="0.5"/>
45
+ <path d="M54,60 L66,60" stroke="#C4726A" stroke-width="2" stroke-linecap="round"/>
46
+
47
+ <!-- accessory -->
48
+
49
+ </g>
50
+
51
+ <!-- role badge -->
52
+ <circle cx="88" cy="88" r="16" fill="#2D3748" opacity="0.95"/>
53
+ <text x="88" y="93" text-anchor="middle" font-size="14" fill="white" font-family="sans-serif">🏗️</text>
54
+ </svg>
@@ -0,0 +1,58 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
2
+ <defs>
3
+ <clipPath id="circ">
4
+ <circle cx="60" cy="60" r="58"/>
5
+ </clipPath>
6
+ <clipPath id="headClip">
7
+ <ellipse cx="60" cy="42" rx="24" ry="28"/>
8
+ </clipPath>
9
+ </defs>
10
+
11
+ <!-- Background -->
12
+ <circle cx="60" cy="60" r="58" fill="#EBF4FF"/>
13
+ <circle cx="60" cy="60" r="58" fill="none" stroke="#3B7DD8" stroke-width="3"/>
14
+
15
+ <g clip-path="url(#circ)">
16
+
17
+ <!-- body -->
18
+ <ellipse cx="60" cy="112" rx="26" ry="36" fill="#3B7DD8"/>
19
+ <ellipse cx="60" cy="110" rx="22" ry="32" fill="#1a5bb5"/>
20
+ <!-- collar -->
21
+ <path d="M44,96 Q60,108 76,96" fill="#EBF4FF"/>
22
+ <!-- neck -->
23
+ <rect x="54" y="70" width="12" height="10" rx="4" fill="#A0693A"/>
24
+
25
+ <!-- head base -->
26
+ <ellipse cx="60" cy="44" rx="22" ry="26" fill="#A0693A"/>
27
+
28
+ <circle cx="38" cy="46" r="5" fill="#A0693A"/>
29
+ <circle cx="38" cy="46" r="3" fill="#A0693A" opacity="0.5"/>
30
+ <circle cx="82" cy="46" r="5" fill="#A0693A"/>
31
+ <circle cx="82" cy="46" r="3" fill="#A0693A" opacity="0.5"/>
32
+
33
+ <!-- hair -->
34
+ <ellipse cx="60" cy="20" rx="22" ry="13" fill="#D4D4D4"/>
35
+ <rect x="37" y="20" width="11" height="42" rx="5" fill="#D4D4D4"/>
36
+ <rect x="72" y="20" width="11" height="42" rx="5" fill="#D4D4D4"/>
37
+ <!-- face features -->
38
+ <circle cx="51" cy="44" r="4.5" fill="white"/>
39
+ <circle cx="69" cy="44" r="4.5" fill="white"/>
40
+ <circle cx="51" cy="44" r="3" fill="#5B2D8E"/>
41
+ <circle cx="69" cy="44" r="3" fill="#5B2D8E"/>
42
+ <circle cx="52" cy="43" r="1.2" fill="white"/>
43
+ <circle cx="70" cy="43" r="1.2" fill="white"/>
44
+ <ellipse cx="60" cy="52" rx="2.5" ry="1.8" fill="#A0693A" opacity="0.7" stroke="#A0693A" stroke-width="0.5"/>
45
+ <path d="M54,60 L66,60" stroke="#C4726A" stroke-width="2" stroke-linecap="round"/>
46
+
47
+ <!-- accessory -->
48
+ <path d="M43,44 Q51,50 59,44" stroke="#555" stroke-width="2" fill="none"/>
49
+ <path d="M61,44 Q69,50 77,44" stroke="#555" stroke-width="2" fill="none"/>
50
+ <line x1="59" y1="44" x2="61" y2="44" stroke="#555" stroke-width="1.5"/>
51
+ <line x1="43" y1="44" x2="41" y2="46" stroke="#555" stroke-width="1.5"/>
52
+ <line x1="77" y1="44" x2="79" y2="46" stroke="#555" stroke-width="1.5"/>
53
+ </g>
54
+
55
+ <!-- role badge -->
56
+ <circle cx="88" cy="88" r="16" fill="#3B7DD8" opacity="0.95"/>
57
+ <text x="88" y="93" text-anchor="middle" font-size="14" fill="white" font-family="sans-serif">📚</text>
58
+ </svg>
@@ -0,0 +1,53 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
2
+ <defs>
3
+ <clipPath id="circ">
4
+ <circle cx="60" cy="60" r="58"/>
5
+ </clipPath>
6
+ <clipPath id="headClip">
7
+ <ellipse cx="60" cy="42" rx="24" ry="28"/>
8
+ </clipPath>
9
+ </defs>
10
+
11
+ <!-- Background -->
12
+ <circle cx="60" cy="60" r="58" fill="#FFF6EE"/>
13
+ <circle cx="60" cy="60" r="58" fill="none" stroke="#F4A261" stroke-width="3"/>
14
+
15
+ <g clip-path="url(#circ)">
16
+
17
+ <!-- body -->
18
+ <ellipse cx="60" cy="112" rx="26" ry="36" fill="#F4A261"/>
19
+ <ellipse cx="60" cy="110" rx="22" ry="32" fill="#D4824A"/>
20
+ <!-- collar -->
21
+ <path d="M44,96 Q60,108 76,96" fill="#FFF6EE"/>
22
+ <!-- neck -->
23
+ <rect x="54" y="70" width="12" height="10" rx="4" fill="#A0693A"/>
24
+
25
+ <!-- head base -->
26
+ <ellipse cx="60" cy="44" rx="22" ry="26" fill="#A0693A"/>
27
+
28
+ <circle cx="38" cy="46" r="5" fill="#A0693A"/>
29
+ <circle cx="38" cy="46" r="3" fill="#A0693A" opacity="0.5"/>
30
+ <circle cx="82" cy="46" r="5" fill="#A0693A"/>
31
+ <circle cx="82" cy="46" r="3" fill="#A0693A" opacity="0.5"/>
32
+
33
+ <!-- hair -->
34
+ <ellipse cx="60" cy="22" rx="18" ry="9" fill="#D4D4D4"/>
35
+ <rect x="55" y="6" width="10" height="20" rx="5" fill="#D4D4D4"/>
36
+ <!-- face features -->
37
+ <circle cx="51" cy="44" r="4.5" fill="white"/>
38
+ <circle cx="69" cy="44" r="4.5" fill="white"/>
39
+ <circle cx="51" cy="44" r="3" fill="#5B2D8E"/>
40
+ <circle cx="69" cy="44" r="3" fill="#5B2D8E"/>
41
+ <circle cx="52" cy="43" r="1.2" fill="white"/>
42
+ <circle cx="70" cy="43" r="1.2" fill="white"/>
43
+ <ellipse cx="60" cy="52" rx="2.5" ry="1.8" fill="#A0693A" opacity="0.7" stroke="#A0693A" stroke-width="0.5"/>
44
+ <path d="M52,60 Q60,66 68,60" stroke="#C4726A" stroke-width="2" fill="none" stroke-linecap="round"/>
45
+
46
+ <!-- accessory -->
47
+
48
+ </g>
49
+
50
+ <!-- role badge -->
51
+ <circle cx="88" cy="88" r="16" fill="#F4A261" opacity="0.95"/>
52
+ <text x="88" y="93" text-anchor="middle" font-size="14" fill="white" font-family="sans-serif">📦</text>
53
+ </svg>
@@ -0,0 +1,53 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
2
+ <defs>
3
+ <clipPath id="circ">
4
+ <circle cx="60" cy="60" r="58"/>
5
+ </clipPath>
6
+ <clipPath id="headClip">
7
+ <ellipse cx="60" cy="42" rx="24" ry="28"/>
8
+ </clipPath>
9
+ </defs>
10
+
11
+ <!-- Background -->
12
+ <circle cx="60" cy="60" r="58" fill="#EBF4FF"/>
13
+ <circle cx="60" cy="60" r="58" fill="none" stroke="#3B7DD8" stroke-width="3"/>
14
+
15
+ <g clip-path="url(#circ)">
16
+
17
+ <!-- body -->
18
+ <ellipse cx="60" cy="112" rx="26" ry="36" fill="#3B7DD8"/>
19
+ <ellipse cx="60" cy="110" rx="22" ry="32" fill="#1a5bb5"/>
20
+ <!-- collar -->
21
+ <path d="M44,96 Q60,108 76,96" fill="#EBF4FF"/>
22
+ <!-- neck -->
23
+ <rect x="54" y="70" width="12" height="10" rx="4" fill="#D4956A"/>
24
+
25
+ <!-- head base -->
26
+ <ellipse cx="60" cy="44" rx="22" ry="26" fill="#D4956A"/>
27
+
28
+ <circle cx="38" cy="46" r="5" fill="#D4956A"/>
29
+ <circle cx="38" cy="46" r="3" fill="#D4956A" opacity="0.5"/>
30
+ <circle cx="82" cy="46" r="5" fill="#D4956A"/>
31
+ <circle cx="82" cy="46" r="3" fill="#D4956A" opacity="0.5"/>
32
+
33
+ <!-- hair -->
34
+ <ellipse cx="60" cy="24" rx="19" ry="8" fill="#E84040"/>
35
+ <circle cx="60" cy="14" r="10" fill="#E84040"/>
36
+ <!-- face features -->
37
+ <path d="M45,44 Q51,39 57,44 Q51,49 45,44Z" fill="white"/>
38
+ <path d="M63,44 Q69,39 75,44 Q69,49 63,44Z" fill="white"/>
39
+ <circle cx="51" cy="44" r="2.8" fill="#8B4513"/>
40
+ <circle cx="69" cy="44" r="2.8" fill="#8B4513"/>
41
+ <circle cx="52" cy="43" r="1.1" fill="white"/>
42
+ <circle cx="70" cy="43" r="1.1" fill="white"/>
43
+ <ellipse cx="60" cy="52" rx="2.5" ry="1.8" fill="#D4956A" opacity="0.7" stroke="#D4956A" stroke-width="0.5"/>
44
+ <path d="M52,60 Q60,66 68,60" stroke="#C4726A" stroke-width="2" fill="none" stroke-linecap="round"/>
45
+
46
+ <!-- accessory -->
47
+
48
+ </g>
49
+
50
+ <!-- role badge -->
51
+ <circle cx="88" cy="88" r="16" fill="#3B7DD8" opacity="0.95"/>
52
+ <text x="88" y="93" text-anchor="middle" font-size="14" fill="white" font-family="sans-serif">🔍</text>
53
+ </svg>
@@ -0,0 +1,53 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
2
+ <defs>
3
+ <clipPath id="circ">
4
+ <circle cx="60" cy="60" r="58"/>
5
+ </clipPath>
6
+ <clipPath id="headClip">
7
+ <ellipse cx="60" cy="42" rx="24" ry="28"/>
8
+ </clipPath>
9
+ </defs>
10
+
11
+ <!-- Background -->
12
+ <circle cx="60" cy="60" r="58" fill="#FFF0F0"/>
13
+ <circle cx="60" cy="60" r="58" fill="none" stroke="#E63946" stroke-width="3"/>
14
+
15
+ <g clip-path="url(#circ)">
16
+
17
+ <!-- body -->
18
+ <ellipse cx="60" cy="112" rx="26" ry="36" fill="#E63946"/>
19
+ <ellipse cx="60" cy="110" rx="22" ry="32" fill="#b52835"/>
20
+ <!-- collar -->
21
+ <path d="M44,96 Q60,108 76,96" fill="#FFF0F0"/>
22
+ <!-- neck -->
23
+ <rect x="54" y="70" width="12" height="10" rx="4" fill="#FFE0C8"/>
24
+
25
+ <!-- head base -->
26
+ <ellipse cx="60" cy="44" rx="22" ry="26" fill="#FFE0C8"/>
27
+
28
+ <circle cx="38" cy="46" r="5" fill="#FFE0C8"/>
29
+ <circle cx="38" cy="46" r="3" fill="#FFE0C8" opacity="0.5"/>
30
+ <circle cx="82" cy="46" r="5" fill="#FFE0C8"/>
31
+ <circle cx="82" cy="46" r="3" fill="#FFE0C8" opacity="0.5"/>
32
+
33
+ <!-- hair -->
34
+ <ellipse cx="60" cy="22" rx="18" ry="9" fill="#D4D4D4"/>
35
+ <rect x="55" y="6" width="10" height="20" rx="5" fill="#D4D4D4"/>
36
+ <!-- face features -->
37
+ <ellipse cx="51" cy="44" rx="5.5" ry="4" fill="white"/>
38
+ <ellipse cx="69" cy="44" rx="5.5" ry="4" fill="white"/>
39
+ <circle cx="51" cy="44" r="3" fill="#2a3a5c"/>
40
+ <circle cx="69" cy="44" r="3" fill="#2a3a5c"/>
41
+ <circle cx="52.5" cy="43" r="1.2" fill="white"/>
42
+ <circle cx="70.5" cy="43" r="1.2" fill="white"/>
43
+ <ellipse cx="60" cy="52" rx="2.5" ry="1.8" fill="#FFE0C8" opacity="0.7" stroke="#FFE0C8" stroke-width="0.5"/>
44
+ <path d="M53,61 Q60,65 67,61" stroke="#C4726A" stroke-width="1.8" fill="none" stroke-linecap="round"/>
45
+
46
+ <!-- accessory -->
47
+
48
+ </g>
49
+
50
+ <!-- role badge -->
51
+ <circle cx="88" cy="88" r="16" fill="#E63946" opacity="0.95"/>
52
+ <text x="88" y="93" text-anchor="middle" font-size="14" fill="white" font-family="sans-serif">🔐</text>
53
+ </svg>