@jaimevalasek/aioson 1.4.0 → 1.6.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 (301) hide show
  1. package/CHANGELOG.md +31 -1
  2. package/LICENSE +661 -21
  3. package/README.md +9 -1
  4. package/docs/design-previews/aurora-command-ui-website.html +884 -0
  5. package/docs/design-previews/aurora-command-ui.html +682 -0
  6. package/docs/design-previews/bold-editorial-ui-website.html +658 -0
  7. package/docs/design-previews/bold-editorial-ui.html +717 -0
  8. package/docs/design-previews/clean-saas-ui-website.html +1202 -0
  9. package/docs/design-previews/clean-saas-ui.html +549 -0
  10. package/docs/design-previews/cognitive-core-ui-website.html +1009 -0
  11. package/docs/design-previews/cognitive-core-ui.html +463 -0
  12. package/docs/design-previews/glassmorphism-ui-website.html +572 -0
  13. package/docs/design-previews/glassmorphism-ui.html +886 -0
  14. package/docs/design-previews/index.html +699 -0
  15. package/docs/design-previews/interface-design-website.html +1187 -0
  16. package/docs/design-previews/interface-design.html +513 -0
  17. package/docs/design-previews/neo-brutalist-ui-website.html +621 -0
  18. package/docs/design-previews/neo-brutalist-ui.html +797 -0
  19. package/docs/design-previews/premium-command-center-ui-website.html +1217 -0
  20. package/docs/design-previews/premium-command-center-ui.html +552 -0
  21. package/docs/design-previews/warm-craft-ui-website.html +684 -0
  22. package/docs/design-previews/warm-craft-ui.html +739 -0
  23. package/docs/en/cli-reference.md +20 -9
  24. package/docs/en/squad-dashboard.md +372 -0
  25. package/docs/openclaw-bridge.md +308 -0
  26. package/docs/pt/README.md +7 -0
  27. package/docs/pt/agent-sharding.md +132 -0
  28. package/docs/pt/agentes.md +131 -11
  29. package/docs/pt/busca-de-contexto.md +129 -0
  30. package/docs/pt/cache-de-contexto.md +156 -0
  31. package/docs/pt/cenarios.md +46 -2
  32. package/docs/pt/comandos-cli.md +88 -1
  33. package/docs/pt/design-hybrid-forge.md +107 -0
  34. package/docs/pt/inicio-rapido.md +72 -5
  35. package/docs/pt/inteligencia-adaptativa.md +324 -0
  36. package/docs/pt/monitor-de-contexto.md +104 -0
  37. package/docs/pt/recuperacao-de-sessao.md +125 -0
  38. package/docs/pt/sandbox.md +125 -0
  39. package/docs/pt/skills.md +98 -6
  40. package/docs/pt/squad-dashboard.md +373 -0
  41. package/docs/testing/genome-2.0-matrix.md +5 -5
  42. package/docs/testing/genome-2.0-rollout.md +9 -9
  43. package/package.json +2 -2
  44. package/src/agent-loader.js +280 -0
  45. package/src/backup-local.js +74 -0
  46. package/src/cli.js +192 -0
  47. package/src/commands/agent-loader.js +85 -0
  48. package/src/commands/backup-local-cmd.js +25 -0
  49. package/src/commands/context-cache.js +90 -0
  50. package/src/commands/context-monitor.js +92 -0
  51. package/src/commands/context-search.js +66 -0
  52. package/src/commands/design-hybrid-options.js +385 -0
  53. package/src/commands/health.js +214 -0
  54. package/src/commands/init.js +54 -13
  55. package/src/commands/install.js +52 -13
  56. package/src/commands/learning-evolve.js +355 -0
  57. package/src/commands/live.js +34 -0
  58. package/src/commands/recovery.js +43 -0
  59. package/src/commands/runtime.js +242 -0
  60. package/src/commands/sandbox.js +37 -0
  61. package/src/commands/setup-context.js +29 -4
  62. package/src/commands/setup.js +178 -0
  63. package/src/commands/skill.js +79 -32
  64. package/src/commands/squad-daemon.js +209 -0
  65. package/src/commands/squad-dashboard.js +39 -0
  66. package/src/commands/squad-deploy.js +64 -0
  67. package/src/commands/squad-doctor.js +52 -0
  68. package/src/commands/squad-mcp.js +270 -0
  69. package/src/commands/squad-processes.js +56 -0
  70. package/src/commands/squad-recovery.js +42 -0
  71. package/src/commands/squad-roi.js +291 -0
  72. package/src/commands/squad-score.js +250 -0
  73. package/src/commands/squad-status.js +37 -1
  74. package/src/commands/squad-validate.js +62 -1
  75. package/src/commands/squad-webhook.js +160 -0
  76. package/src/commands/squad-worker.js +191 -0
  77. package/src/commands/squad-worktrees.js +75 -0
  78. package/src/commands/tool-registry-cmd.js +232 -0
  79. package/src/commands/update.js +7 -0
  80. package/src/commands/web-map.js +70 -0
  81. package/src/commands/web-scrape.js +71 -0
  82. package/src/constants.js +17 -0
  83. package/src/context-cache.js +159 -0
  84. package/src/context-search.js +326 -0
  85. package/src/context-writer.js +45 -1
  86. package/src/design-variation-catalog.js +503 -0
  87. package/src/i18n/messages/en.js +159 -3
  88. package/src/i18n/messages/es.js +147 -2
  89. package/src/i18n/messages/fr.js +147 -2
  90. package/src/i18n/messages/pt-BR.js +158 -3
  91. package/src/install-animation.js +260 -0
  92. package/src/install-profile.js +143 -0
  93. package/src/install-wizard.js +474 -0
  94. package/src/installer.js +38 -10
  95. package/src/lib/webhook-server.js +328 -0
  96. package/src/mcp-connectors/registry.js +602 -0
  97. package/src/parser.js +7 -1
  98. package/src/recovery-context-session.js +154 -0
  99. package/src/runtime-store.js +355 -2
  100. package/src/sandbox.js +177 -0
  101. package/src/squad/external-session.js +180 -0
  102. package/src/squad/inter-squad.js +74 -0
  103. package/src/squad/recovery-context.js +201 -0
  104. package/src/squad/worktree-manager.js +114 -0
  105. package/src/squad-daemon.js +490 -0
  106. package/src/squad-dashboard/api.js +223 -0
  107. package/src/squad-dashboard/attachment-handler.js +93 -0
  108. package/src/squad-dashboard/context-monitor.js +157 -0
  109. package/src/squad-dashboard/execution-logs.js +115 -0
  110. package/src/squad-dashboard/hunk-review.js +209 -0
  111. package/src/squad-dashboard/metrics.js +133 -0
  112. package/src/squad-dashboard/process-monitor.js +125 -0
  113. package/src/squad-dashboard/renderer.js +858 -0
  114. package/src/squad-dashboard/server.js +232 -0
  115. package/src/squad-dashboard/styles.js +525 -0
  116. package/src/squad-dashboard/token-tracker.js +99 -0
  117. package/src/tool-executor.js +94 -0
  118. package/src/updater.js +11 -3
  119. package/src/web.js +284 -0
  120. package/src/worker-runner.js +339 -0
  121. package/template/.aioson/agents/analyst.md +62 -3
  122. package/template/.aioson/agents/architect.md +42 -0
  123. package/template/.aioson/agents/design-hybrid-forge.md +127 -0
  124. package/template/.aioson/agents/dev.md +223 -11
  125. package/template/.aioson/agents/deyvin.md +65 -0
  126. package/template/.aioson/agents/neo.md +152 -0
  127. package/template/.aioson/agents/orache.md +17 -0
  128. package/template/.aioson/agents/orchestrator.md +26 -0
  129. package/template/.aioson/agents/pm.md +58 -0
  130. package/template/.aioson/agents/product.md +88 -12
  131. package/template/.aioson/agents/qa.md +80 -0
  132. package/template/.aioson/agents/setup.md +128 -22
  133. package/template/.aioson/agents/sheldon.md +704 -0
  134. package/template/.aioson/agents/squad.md +191 -0
  135. package/template/.aioson/agents/tester.md +410 -0
  136. package/template/.aioson/agents/ux-ui.md +12 -0
  137. package/template/.aioson/config.md +21 -0
  138. package/template/.aioson/context/forensics/.gitkeep +0 -0
  139. package/template/.aioson/context/seeds/seed-example.md +27 -0
  140. package/template/.aioson/context/user-profile.md +42 -0
  141. package/template/.aioson/locales/en/agents/analyst.md +8 -0
  142. package/template/.aioson/locales/en/agents/architect.md +8 -0
  143. package/template/.aioson/locales/en/agents/dev.md +66 -7
  144. package/template/.aioson/locales/en/agents/deyvin.md +8 -0
  145. package/template/.aioson/locales/en/agents/neo.md +8 -0
  146. package/template/.aioson/locales/en/agents/orchestrator.md +26 -0
  147. package/template/.aioson/locales/en/agents/qa.md +49 -0
  148. package/template/.aioson/locales/en/agents/setup.md +35 -2
  149. package/template/.aioson/locales/en/agents/sheldon.md +340 -0
  150. package/template/.aioson/locales/en/agents/ux-ui.md +8 -0
  151. package/template/.aioson/locales/es/agents/analyst.md +8 -0
  152. package/template/.aioson/locales/es/agents/architect.md +8 -0
  153. package/template/.aioson/locales/es/agents/dev.md +66 -7
  154. package/template/.aioson/locales/es/agents/deyvin.md +8 -0
  155. package/template/.aioson/locales/es/agents/neo.md +48 -0
  156. package/template/.aioson/locales/es/agents/orchestrator.md +26 -0
  157. package/template/.aioson/locales/es/agents/qa.md +26 -0
  158. package/template/.aioson/locales/es/agents/setup.md +35 -2
  159. package/template/.aioson/locales/es/agents/sheldon.md +192 -0
  160. package/template/.aioson/locales/es/agents/squad.md +63 -0
  161. package/template/.aioson/locales/es/agents/ux-ui.md +8 -0
  162. package/template/.aioson/locales/fr/agents/analyst.md +8 -0
  163. package/template/.aioson/locales/fr/agents/architect.md +8 -0
  164. package/template/.aioson/locales/fr/agents/dev.md +66 -7
  165. package/template/.aioson/locales/fr/agents/deyvin.md +8 -0
  166. package/template/.aioson/locales/fr/agents/neo.md +48 -0
  167. package/template/.aioson/locales/fr/agents/orchestrator.md +26 -0
  168. package/template/.aioson/locales/fr/agents/qa.md +26 -0
  169. package/template/.aioson/locales/fr/agents/setup.md +35 -2
  170. package/template/.aioson/locales/fr/agents/sheldon.md +192 -0
  171. package/template/.aioson/locales/fr/agents/squad.md +63 -0
  172. package/template/.aioson/locales/fr/agents/ux-ui.md +8 -0
  173. package/template/.aioson/locales/pt-BR/agents/analyst.md +19 -0
  174. package/template/.aioson/locales/pt-BR/agents/architect.md +19 -0
  175. package/template/.aioson/locales/pt-BR/agents/dev.md +75 -12
  176. package/template/.aioson/locales/pt-BR/agents/deyvin.md +8 -0
  177. package/template/.aioson/locales/pt-BR/agents/neo.md +147 -0
  178. package/template/.aioson/locales/pt-BR/agents/orchestrator.md +26 -0
  179. package/template/.aioson/locales/pt-BR/agents/product.md +8 -3
  180. package/template/.aioson/locales/pt-BR/agents/qa.md +60 -0
  181. package/template/.aioson/locales/pt-BR/agents/setup.md +35 -2
  182. package/template/.aioson/locales/pt-BR/agents/sheldon.md +192 -0
  183. package/template/.aioson/locales/pt-BR/agents/squad.md +105 -0
  184. package/template/.aioson/locales/pt-BR/agents/ux-ui.md +8 -0
  185. package/template/.aioson/schemas/squad-blueprint.schema.json +21 -0
  186. package/template/.aioson/schemas/squad-manifest.schema.json +178 -1
  187. package/template/.aioson/skills/design/aurora-command-ui/SKILL.md +243 -0
  188. package/template/.aioson/skills/design/aurora-command-ui/references/art-direction.md +293 -0
  189. package/template/.aioson/skills/design/aurora-command-ui/references/components.md +827 -0
  190. package/template/.aioson/skills/design/aurora-command-ui/references/dashboards.md +250 -0
  191. package/template/.aioson/skills/design/aurora-command-ui/references/design-tokens.md +585 -0
  192. package/template/.aioson/skills/design/aurora-command-ui/references/motion.md +365 -0
  193. package/template/.aioson/skills/design/aurora-command-ui/references/patterns.md +482 -0
  194. package/template/.aioson/skills/design/aurora-command-ui/references/websites.md +387 -0
  195. package/template/.aioson/skills/design/bold-editorial-ui/SKILL.md +205 -0
  196. package/template/.aioson/skills/design/bold-editorial-ui/references/art-direction.md +338 -0
  197. package/template/.aioson/skills/design/bold-editorial-ui/references/components.md +977 -0
  198. package/template/.aioson/skills/design/bold-editorial-ui/references/dashboards.md +218 -0
  199. package/template/.aioson/skills/design/bold-editorial-ui/references/design-tokens.md +326 -0
  200. package/template/.aioson/skills/design/bold-editorial-ui/references/motion.md +461 -0
  201. package/template/.aioson/skills/design/bold-editorial-ui/references/patterns.md +293 -0
  202. package/template/.aioson/skills/design/bold-editorial-ui/references/websites.md +352 -0
  203. package/template/.aioson/skills/design/clean-saas-ui/SKILL.md +210 -0
  204. package/template/.aioson/skills/design/clean-saas-ui/references/art-direction.md +319 -0
  205. package/template/.aioson/skills/design/clean-saas-ui/references/components.md +365 -0
  206. package/template/.aioson/skills/design/clean-saas-ui/references/dashboards.md +196 -0
  207. package/template/.aioson/skills/design/clean-saas-ui/references/design-tokens.md +244 -0
  208. package/template/.aioson/skills/design/clean-saas-ui/references/motion.md +235 -0
  209. package/template/.aioson/skills/design/clean-saas-ui/references/patterns.md +215 -0
  210. package/template/.aioson/skills/design/clean-saas-ui/references/websites.md +295 -0
  211. package/template/.aioson/skills/design/cognitive-core-ui/SKILL.md +55 -9
  212. package/template/.aioson/skills/design/cognitive-core-ui/references/art-direction.md +339 -0
  213. package/template/.aioson/skills/design/cognitive-core-ui/references/components.md +1 -1
  214. package/template/.aioson/skills/design/cognitive-core-ui/references/dashboards.md +100 -0
  215. package/template/.aioson/skills/design/cognitive-core-ui/references/design-tokens.md +43 -9
  216. package/template/.aioson/skills/design/cognitive-core-ui/references/motion.md +40 -0
  217. package/template/.aioson/skills/design/cognitive-core-ui/references/patterns.md +1 -1
  218. package/template/.aioson/skills/design/cognitive-core-ui/references/websites.md +99 -12
  219. package/template/.aioson/skills/design/glassmorphism-ui/SKILL.md +222 -0
  220. package/template/.aioson/skills/design/glassmorphism-ui/references/art-direction.md +159 -0
  221. package/template/.aioson/skills/design/glassmorphism-ui/references/components.md +498 -0
  222. package/template/.aioson/skills/design/glassmorphism-ui/references/dashboards.md +236 -0
  223. package/template/.aioson/skills/design/glassmorphism-ui/references/design-tokens.md +274 -0
  224. package/template/.aioson/skills/design/glassmorphism-ui/references/motion.md +355 -0
  225. package/template/.aioson/skills/design/glassmorphism-ui/references/patterns.md +198 -0
  226. package/template/.aioson/skills/design/glassmorphism-ui/references/websites.md +307 -0
  227. package/template/.aioson/skills/design/neo-brutalist-ui/SKILL.md +213 -0
  228. package/template/.aioson/skills/design/neo-brutalist-ui/references/art-direction.md +228 -0
  229. package/template/.aioson/skills/design/neo-brutalist-ui/references/components.md +855 -0
  230. package/template/.aioson/skills/design/neo-brutalist-ui/references/dashboards.md +334 -0
  231. package/template/.aioson/skills/design/neo-brutalist-ui/references/design-tokens.md +342 -0
  232. package/template/.aioson/skills/design/neo-brutalist-ui/references/motion.md +286 -0
  233. package/template/.aioson/skills/design/neo-brutalist-ui/references/patterns.md +458 -0
  234. package/template/.aioson/skills/design/neo-brutalist-ui/references/websites.md +723 -0
  235. package/template/.aioson/skills/design/warm-craft-ui/SKILL.md +209 -0
  236. package/template/.aioson/skills/design/warm-craft-ui/references/art-direction.md +324 -0
  237. package/template/.aioson/skills/design/warm-craft-ui/references/components.md +508 -0
  238. package/template/.aioson/skills/design/warm-craft-ui/references/dashboards.md +223 -0
  239. package/template/.aioson/skills/design/warm-craft-ui/references/design-tokens.md +374 -0
  240. package/template/.aioson/skills/design/warm-craft-ui/references/motion.md +356 -0
  241. package/template/.aioson/skills/design/warm-craft-ui/references/patterns.md +288 -0
  242. package/template/.aioson/skills/design/warm-craft-ui/references/websites.md +289 -0
  243. package/template/.aioson/skills/premium-visual-design/SKILL.md +83 -0
  244. package/template/.aioson/skills/premium-visual-design/components/agent-badge.md +92 -0
  245. package/template/.aioson/skills/premium-visual-design/components/dependency-node.md +102 -0
  246. package/template/.aioson/skills/premium-visual-design/components/mention-autocomplete.md +136 -0
  247. package/template/.aioson/skills/premium-visual-design/components/notification-center.md +136 -0
  248. package/template/.aioson/skills/premium-visual-design/components/review-action-bar.md +188 -0
  249. package/template/.aioson/skills/premium-visual-design/components/team-switcher.md +131 -0
  250. package/template/.aioson/skills/premium-visual-design/patterns/agent-message-thread.md +198 -0
  251. package/template/.aioson/skills/premium-visual-design/patterns/notification-panel.md +275 -0
  252. package/template/.aioson/skills/premium-visual-design/patterns/review-workflow-ui.md +234 -0
  253. package/template/.aioson/skills/premium-visual-design/patterns/task-dependency-graph.md +147 -0
  254. package/template/.aioson/skills/premium-visual-design/tokens/status-extended.md +142 -0
  255. package/template/.aioson/skills/process/aioson-spec-driven/SKILL.md +45 -0
  256. package/template/.aioson/skills/process/aioson-spec-driven/references/approval-gates.md +109 -0
  257. package/template/.aioson/skills/process/aioson-spec-driven/references/artifact-map.md +44 -0
  258. package/template/.aioson/skills/process/aioson-spec-driven/references/classification-map.md +37 -0
  259. package/template/.aioson/skills/process/aioson-spec-driven/references/hardening-lane.md +49 -0
  260. package/template/.aioson/skills/process/aioson-spec-driven/references/maintenance-and-state.md +66 -0
  261. package/template/.aioson/skills/process/aioson-spec-driven/references/ui-language.md +75 -0
  262. package/template/.aioson/skills/process/design-hybrid-forge/SKILL.md +144 -0
  263. package/template/.aioson/skills/process/design-hybrid-forge/references/crossover-protocol.md +221 -0
  264. package/template/.aioson/skills/process/design-hybrid-forge/references/naming-registry.md +88 -0
  265. package/template/.aioson/skills/process/design-hybrid-forge/references/output-contract.md +291 -0
  266. package/template/.aioson/skills/process/design-hybrid-forge/references/pair-compatibility.md +117 -0
  267. package/template/.aioson/skills/process/design-hybrid-forge/references/quality-gates.md +188 -0
  268. package/template/.aioson/skills/process/design-hybrid-forge/references/variation-library.md +125 -0
  269. package/template/.aioson/skills/squad/formats/catalog.json +15 -0
  270. package/template/.aioson/skills/squad/formats/content/blog-post.md +47 -0
  271. package/template/.aioson/skills/squad/formats/content/newsletter.md +47 -0
  272. package/template/.aioson/skills/squad/formats/creative/podcast-script.md +43 -0
  273. package/template/.aioson/skills/squad/formats/creative/video-script.md +41 -0
  274. package/template/.aioson/skills/squad/formats/social/instagram-feed.md +42 -0
  275. package/template/.aioson/skills/squad/formats/social/linkedin-post.md +42 -0
  276. package/template/.aioson/skills/squad/formats/social/tiktok.md +39 -0
  277. package/template/.aioson/skills/squad/formats/social/twitter-thread.md +39 -0
  278. package/template/.aioson/skills/squad/formats/social/youtube-long.md +47 -0
  279. package/template/.aioson/skills/squad/formats/social/youtube-shorts.md +39 -0
  280. package/template/.aioson/skills/squad/patterns/multi-platform-pattern.md +108 -0
  281. package/template/.aioson/skills/squad/patterns/persona-based-pattern.md +98 -0
  282. package/template/.aioson/skills/squad/patterns/pipeline-pattern.md +106 -0
  283. package/template/.aioson/skills/squad/patterns/review-loop-pattern.md +81 -0
  284. package/template/.aioson/skills/squad/references/checklist-templates.md +122 -0
  285. package/template/.aioson/skills/squad/references/executor-archetypes.md +123 -0
  286. package/template/.aioson/skills/squad/references/workflow-templates.md +169 -0
  287. package/template/.aioson/skills/static/debugging-protocol.md +42 -0
  288. package/template/.aioson/skills/static/git-worktrees.md +36 -0
  289. package/template/.aioson/tasks/implementation-plan.md +19 -0
  290. package/template/.aioson/tasks/squad-design.md +28 -0
  291. package/template/.aioson/tasks/squad-profile.md +48 -0
  292. package/template/.aioson/tasks/squad-review.md +61 -0
  293. package/template/.aioson/tasks/squad-task-decompose.md +66 -0
  294. package/template/.claude/commands/aioson/agent/neo.md +5 -0
  295. package/template/.claude/commands/aioson/agent/tester.md +5 -0
  296. package/template/.gemini/GEMINI.md +1 -0
  297. package/template/.gemini/commands/aios-neo.toml +4 -0
  298. package/template/.gemini/commands/aios-tester.toml +6 -0
  299. package/template/AGENTS.md +26 -1
  300. package/template/CLAUDE.md +6 -2
  301. package/template/OPENCODE.md +2 -0
@@ -7,9 +7,11 @@ module.exports = {
7
7
  usage: 'Usage:',
8
8
  help_item_line: ' {text}',
9
9
  help_init:
10
- 'aioson init <project-name> [--force] [--dry-run] [--lang=en|pt-BR|es|fr] [--tool=codex|claude|gemini|opencode] [--locale=en]',
10
+ 'aioson init <project-name> [--force] [--dry-run] [--all] [--lang=en|pt-BR|es|fr] [--tool=codex|claude|gemini|opencode] [--locale=en]',
11
11
  help_install:
12
12
  'aioson install [path] [--force] [--dry-run] [--lang=en|pt-BR|es|fr] [--tool=codex|claude|gemini|opencode] [--locale=en]',
13
+ help_setup:
14
+ 'aioson setup [path] [--defaults] [--framework=<name>] [--lang=en|pt-BR|es|fr] [--project-name=<name>] [--force] [--dry-run] [--tool=codex|claude|gemini|opencode] [--locale=en]',
13
15
  help_update: 'aioson update [path] [--dry-run] [--lang=en|pt-BR|es|fr] [--locale=en]',
14
16
  help_info: 'aioson info [path] [--json] [--locale=en]',
15
17
  help_doctor: 'aioson doctor [path] [--fix] [--dry-run] [--json] [--locale=en]',
@@ -57,6 +59,10 @@ module.exports = {
57
59
  'aioson qa:scan [path] [--url=<app-url>] [--depth=3] [--max-pages=50] [--headed] [--html] [--json] [--locale=en]',
58
60
  help_qa_report:
59
61
  'aioson qa:report [path] [--html] [--json] [--locale=en]',
62
+ help_web_map:
63
+ 'aioson web:map [path] --url=<url> [--depth=<N>] [--max-pages=<N>] [--include-external] [--json] [--locale=en]',
64
+ help_web_scrape:
65
+ 'aioson web:scrape [path] --url=<url> [--format=markdown|text|html|links] [--json] [--locale=en]',
60
66
  help_scan_project:
61
67
  'aioson scan:project [path] --folder=<path[,path2]> [--summary-mode=titles|summaries|raw] [--context-mode=merge|rewrite] [--with-llm] [--provider=<name>] [--llm-model=<name>] [--dry-run] [--json] [--locale=en]',
62
68
  help_config:
@@ -87,6 +93,18 @@ module.exports = {
87
93
  'aioson squad:plan [path] [--sub=show|status|checkpoint|stale|register] [--squad=<slug>] [--round=<N>] [--locale=en]',
88
94
  help_squad_learning:
89
95
  'aioson squad:learning [path] [--sub=list|stats|archive|promote|export] [--squad=<slug>] [--status=<status>] [--locale=en]',
96
+ help_squad_dashboard:
97
+ 'aioson squad:dashboard [path] [--port=4180] [--squad=<slug>] [--locale=en]',
98
+ help_squad_worker:
99
+ 'aioson squad:worker [path] [--sub=list|run|test|logs|scaffold] [--squad=<slug>] [--worker=<slug>] [--input=<json>] [--locale=en]',
100
+ help_squad_daemon:
101
+ 'aioson squad:daemon [path] [--sub=start|status|stop|logs] [--squad=<slug>] [--port=<N>] [--locale=en]',
102
+ help_squad_mcp:
103
+ 'aioson squad:mcp [path] [--sub=status|connectors|configure|test] [--squad=<slug>] [--mcp=<slug>] [--connector=<id>]',
104
+ help_squad_roi:
105
+ 'aioson squad:roi [path] [--sub=config|metric|report|export] [--squad=<slug>] [--key=<metric>] [--value=<N>]',
106
+ help_squad_score:
107
+ 'aioson squad:score [path] --squad=<slug> [--locale=en]',
90
108
  help_learning:
91
109
  'aioson learning [path] [--sub=list|stats|promote] [--status=<status>] [--id=<learning-id>] [--locale=en]',
92
110
  help_runtime_init:
@@ -141,6 +159,8 @@ module.exports = {
141
159
  'aioson skill:list [path] [--json] [--locale=en]',
142
160
  help_skill_remove:
143
161
  'aioson skill:remove [path] --slug=<name> [--json] [--locale=en]',
162
+ help_design_hybrid_options:
163
+ 'aioson design-hybrid:options [path] [--advanced] [--json] [--locale=en]',
144
164
  help_cloud_import_squad:
145
165
  'aioson cloud:import:squad [path] --url=<snapshot-url> [--force] [--snapshots-only] [--dry-run] [--json] [--locale=en]',
146
166
  help_cloud_import_genome:
@@ -181,6 +201,9 @@ module.exports = {
181
201
  step_agents: '3. If no visual picker appears, run: aioson agents',
182
202
  step_agent_prompt: '4. Generate setup prompt for your tool: aioson agent:prompt setup --tool={tool}'
183
203
  },
204
+ init_all: {
205
+ installing_full: 'Installing complete (all tools + squads) — wizard skipped via --all'
206
+ },
184
207
  install: {
185
208
  framework_detected: 'Framework detected: {framework} ({evidence})',
186
209
  framework_not_detected: 'No framework detected. Installing in generic mode.',
@@ -195,11 +218,18 @@ module.exports = {
195
218
  existing_project_scan_hint:
196
219
  ' aioson scan:project . --folder=src --with-llm --provider=<provider> (generates discovery.md + skeleton-system.md; omit --with-llm for local maps only)'
197
220
  },
221
+ install_wizard: {
222
+ ready_to_install: 'Ready to install:',
223
+ press_enter_to_install: 'Press enter to install or q to cancel.',
224
+ deselected_warning: '⚠ Deselected items will NOT be removed automatically.',
225
+ deselected_hint: ' Remove them manually if needed.'
226
+ },
198
227
  update: {
199
228
  not_installed: 'No AIOSON installation found in {targetDir}.',
200
229
  done_at: 'Update completed at: {targetDir}',
201
230
  files_updated: 'Files updated: {count}',
202
- backups_created: 'Backups created: {count}'
231
+ backups_created: 'Backups created: {count}',
232
+ reconfigure_hint: 'New options may be available. Run: aioson install --reconfigure'
203
233
  },
204
234
  info: {
205
235
  cli_version: 'AIOSON CLI: v{version}',
@@ -322,6 +352,22 @@ module.exports = {
322
352
  selected_line: ' {index}. {path} — {reason}',
323
353
  hint_use: 'Use {path} as the minimum starting context in your AI session.'
324
354
  },
355
+ setup: {
356
+ installing: 'Installing AIOSON template...',
357
+ installed: 'Template installed ({count} files).',
358
+ no_framework_detected: 'No framework detected in this directory (greenfield project).',
359
+ framework_detected: 'Detected framework: {framework} (installed={installed})',
360
+ writing_context: 'Writing project context...',
361
+ done: 'Setup complete.',
362
+ step_agents: ' Next: open your AI client and activate @setup to confirm or refine the context.',
363
+ step_agent_prompt: ' Or run: aioson agent:prompt setup . --tool={tool}',
364
+ q_project_name: 'Project name',
365
+ q_framework: 'Main framework / stack (e.g. Python, Node, Laravel, Django)',
366
+ q_lang: 'Language for agent responses (e.g. en, pt-BR, es, fr)',
367
+ q_confirm_framework: 'Use detected framework? (true/false)',
368
+ q_override_framework: 'Framework',
369
+ q_framework_installed: 'Framework installed? (true/false)'
370
+ },
325
371
  setup_context: {
326
372
  detected: 'Detected framework: {framework} (installed={installed})',
327
373
  q_project_name: 'Project name',
@@ -729,6 +775,23 @@ module.exports = {
729
775
  not_found: 'No QA report found. Run: aioson qa:run or aioson qa:scan',
730
776
  html_report_written: 'HTML report written: {path}'
731
777
  },
778
+ web_map: {
779
+ url_missing: 'Missing required option: --url=<url>.',
780
+ starting: 'Mapping site: {url}',
781
+ pages_found: 'Pages discovered: {count}',
782
+ page_line: '- {url} | depth={depth} | status={status} | links={links}',
783
+ done: 'Web map complete.',
784
+ failed: 'Web map failed: {error}'
785
+ },
786
+ web_scrape: {
787
+ url_missing: 'Missing required option: --url=<url>.',
788
+ invalid_format: 'Invalid --format value: {format}. Use markdown, text, html, or links.',
789
+ fetching: 'Fetching page: {url}',
790
+ title_line: 'Title: {title}',
791
+ status_line: 'Status: {status} | Content-Type: {type}',
792
+ done: 'Web scrape complete ({format}).',
793
+ failed: 'Web scrape failed: {error}'
794
+ },
732
795
  config: {
733
796
  usage_error:
734
797
  'Usage: aioson config <set KEY=value|show|get KEY> [--json] [--locale=en]',
@@ -811,7 +874,9 @@ module.exports = {
811
874
  sessions: ' Sessions : {count} ({path})',
812
875
  latest_html: ' Latest HTML : {value}',
813
876
  logs: ' Logs : {count} ({path})',
814
- genomes: ' Genomes : {count} squad-level / {agent_count} agent bindings'
877
+ genomes: ' Genomes : {count} squad-level / {agent_count} agent bindings',
878
+ model_tiers: ' Model Tiers : {value}',
879
+ estimated_cost: ' Est. Cost : ~${value}/run'
815
880
  },
816
881
  squad_agent_create: {
817
882
  no_name: 'Usage: aioson squad:agent-create [path] --name=<agent-name> [--type=agent|assistant|clone|worker] [--scope=my-agents|squad] [--squad=<slug>]',
@@ -936,6 +1001,97 @@ module.exports = {
936
1001
  unknown_sub: 'Unknown subcommand: {sub}. Use: list, show, score, link, register.'
937
1002
  },
938
1003
 
1004
+ squad_daemon: {
1005
+ squad_required: 'Squad slug is required. Use --squad=<slug>.',
1006
+ started: 'Daemon started for squad "{squad}" on port {port} ({workers} workers, {cron} cron jobs)',
1007
+ webhook_hint: 'Webhook endpoint: POST http://127.0.0.1:{port}/webhook/<worker-slug>',
1008
+ stop_hint: 'Press Ctrl+C to stop.',
1009
+ stopping: 'Stopping daemon...',
1010
+ start_failed: 'Failed to start daemon: {error}',
1011
+ no_runtime: 'Runtime store not found. Run aioson runtime:init first.',
1012
+ no_daemons: 'No daemon records found.',
1013
+ not_found: 'No daemon record for squad: {squad}',
1014
+ not_running: 'Daemon for squad "{squad}" is not running.',
1015
+ signal_sent: 'SIGTERM sent to daemon for "{squad}" (pid {pid}).',
1016
+ process_gone: 'Daemon process for "{squad}" is no longer running.',
1017
+ no_logs: 'No daemon activity logs found.',
1018
+ unknown_sub: 'Unknown subcommand: {sub}. Use: start, status, stop, logs.'
1019
+ },
1020
+
1021
+ squad_mcp: {
1022
+ squad_required: 'Squad slug is required. Use --squad=<slug>.',
1023
+ connectors_title: 'Built-in MCP Connectors:',
1024
+ actions: 'Actions',
1025
+ required_config: 'Required',
1026
+ no_integrations: 'No integrations configured for squad "{squad}".',
1027
+ missing_config: 'Missing config',
1028
+ calls: 'Calls',
1029
+ mcp_required: 'MCP slug is required. Use --mcp=<slug>.',
1030
+ connector_required: 'Connector ID is required. Use --connector=<id>.',
1031
+ unknown_connector: 'Unknown connector: {connector}. Use --sub=connectors to list available.',
1032
+ configured: 'Integration "{mcp}" configured with connector "{connector}" (status: {status}).',
1033
+ still_missing: 'Still missing env/config: {keys}',
1034
+ not_configured: 'Integration "{mcp}" is not configured.',
1035
+ test_missing: 'Integration "{mcp}" has missing config: {keys}',
1036
+ test_ok: 'Integration "{mcp}" ({connector}) — config OK.',
1037
+ health_url: 'Health check URL: {url}',
1038
+ testing_connection: 'Testing connection...',
1039
+ health_ok: 'Connection OK (HTTP {statusCode})',
1040
+ health_error: 'Connection error: {error}',
1041
+ health_skipped: 'Health check not available for this connector',
1042
+ action_required: 'Action slug is required. Use --action=<slug>.',
1043
+ invalid_input: 'Invalid JSON. Provide valid JSON with --input.',
1044
+ unknown_sub: 'Unknown subcommand: {sub}. Use: status, connectors, configure, test, call.'
1045
+ },
1046
+
1047
+ squad_roi: {
1048
+ squad_required: 'Squad slug is required. Use --squad=<slug>.',
1049
+ config_saved: 'ROI config saved for squad "{squad}".',
1050
+ pricing_model: 'Pricing model',
1051
+ setup_fee: 'Setup fee',
1052
+ monthly_fee: 'Monthly fee',
1053
+ percentage: 'Percentage',
1054
+ contract: 'Contract',
1055
+ metric_required: 'Metric key and value are required. Use --key=<name> --value=<N>.',
1056
+ metric_saved: 'Metric "{key}" = {value} saved for squad "{squad}".',
1057
+ no_metrics: 'No metrics found for squad "{squad}".',
1058
+ report_title: 'ROI Report — {squad}',
1059
+ baseline: 'Baseline',
1060
+ actual: 'Current',
1061
+ target: 'Target',
1062
+ period: 'Period',
1063
+ cost_section: 'Cost Summary:',
1064
+ monthly_cost: 'Monthly effective cost',
1065
+ exported: 'Report exported to {file} ({format}).',
1066
+ unknown_sub: 'Unknown subcommand: {sub}. Use: config, metric, report, export.'
1067
+ },
1068
+
1069
+ squad_worker: {
1070
+ squad_required: 'Squad slug is required. Use --squad=<slug>.',
1071
+ no_workers: 'No workers found for this squad.',
1072
+ run_usage: 'Usage: aioson squad:worker --sub=run --squad=<slug> --worker=<slug> [--input=<json>]',
1073
+ test_usage: 'Usage: aioson squad:worker --sub=test --squad=<slug> --worker=<slug>',
1074
+ scaffold_usage: 'Usage: aioson squad:worker --sub=scaffold --squad=<slug> --worker=<slug> [--trigger=manual|event|scheduled]',
1075
+ not_found: 'Worker not found: {worker}',
1076
+ invalid_input: 'Invalid JSON input. Provide valid JSON with --input.',
1077
+ run_success: 'Worker "{worker}" completed successfully.',
1078
+ run_failed: 'Worker "{worker}" failed: {error}',
1079
+ test_passed: 'Worker "{worker}" test passed.',
1080
+ test_failed: 'Worker "{worker}" test failed: {error}',
1081
+ scaffold_created: 'Worker "{worker}" scaffolded at {path}',
1082
+ no_runtime: 'Runtime store not found. Run aioson runtime:init first.',
1083
+ no_logs: 'No worker runs found.',
1084
+ unknown_sub: 'Unknown subcommand: {sub}. Use: list, run, test, logs, scaffold.'
1085
+ },
1086
+
1087
+ squad_dashboard: {
1088
+ started: 'Squad Dashboard running at {url} (port {port})',
1089
+ filtered: 'Filtering to squad: {squad}',
1090
+ stop_hint: 'Press Ctrl+C to stop.',
1091
+ stopping: 'Stopping Squad Dashboard...',
1092
+ port_in_use: 'Port {port} is already in use. Try --port=<another>'
1093
+ },
1094
+
939
1095
  implementation_plan: {
940
1096
  not_found: 'Implementation plan not found: {file}',
941
1097
  no_runtime: 'Runtime store not found. Run aioson runtime:init first.',
@@ -10,6 +10,8 @@ module.exports = {
10
10
  'aioson init <project-name> [--force] [--dry-run] [--lang=en|pt-BR|es|fr] [--tool=codex|claude|gemini|opencode] [--locale=es]',
11
11
  help_install:
12
12
  'aioson install [path] [--force] [--dry-run] [--lang=en|pt-BR|es|fr] [--tool=codex|claude|gemini|opencode] [--locale=es]',
13
+ help_setup:
14
+ 'aioson setup [path] [--defaults] [--framework=<nombre>] [--lang=en|pt-BR|es|fr] [--project-name=<nombre>] [--force] [--dry-run] [--tool=codex|claude|gemini|opencode] [--locale=es]',
13
15
  help_update:
14
16
  'aioson update [path] [--dry-run] [--lang=en|pt-BR|es|fr] [--locale=es]',
15
17
  help_info: 'aioson info [path] [--json] [--locale=es]',
@@ -54,6 +56,10 @@ module.exports = {
54
56
  'aioson qa:scan [path] [--url=<app-url>] [--depth=3] [--max-pages=50] [--headed] [--html] [--json] [--locale=es]',
55
57
  help_qa_report:
56
58
  'aioson qa:report [path] [--html] [--json] [--locale=es]',
59
+ help_web_map:
60
+ 'aioson web:map [path] --url=<url> [--depth=<N>] [--max-pages=<N>] [--include-external] [--json] [--locale=es]',
61
+ help_web_scrape:
62
+ 'aioson web:scrape [path] --url=<url> [--format=markdown|text|html|links] [--json] [--locale=es]',
57
63
  help_scan_project:
58
64
  'aioson scan:project [path] --folder=<ruta[,ruta2]> [--summary-mode=titles|summaries|raw] [--context-mode=merge|rewrite] [--with-llm] [--provider=<name>] [--llm-model=<name>] [--dry-run] [--json] [--locale=es]',
59
65
  help_config:
@@ -76,6 +82,18 @@ module.exports = {
76
82
  'aioson squad:investigate [path] [--sub=list|show|score|link|register] [--investigation=<slug>] [--squad=<slug>] [--locale=es]',
77
83
  help_squad_learning:
78
84
  'aioson squad:learning [path] [--sub=list|stats|archive|promote|export] [--squad=<slug>] [--status=<status>] [--locale=es]',
85
+ help_squad_dashboard:
86
+ 'aioson squad:dashboard [path] [--port=4180] [--squad=<slug>] [--locale=es]',
87
+ help_squad_worker:
88
+ 'aioson squad:worker [path] [--sub=list|run|test|logs|scaffold] [--squad=<slug>] [--worker=<slug>] [--input=<json>] [--locale=es]',
89
+ help_squad_daemon:
90
+ 'aioson squad:daemon [path] [--sub=start|status|stop|logs] [--squad=<slug>] [--port=<N>] [--locale=es]',
91
+ help_squad_mcp:
92
+ 'aioson squad:mcp [path] [--sub=status|connectors|configure|test] [--squad=<slug>] [--mcp=<slug>] [--connector=<id>]',
93
+ help_squad_roi:
94
+ 'aioson squad:roi [path] [--sub=config|metric|report|export] [--squad=<slug>] [--key=<metrica>] [--value=<N>]',
95
+ help_squad_score:
96
+ 'aioson squad:score [path] --squad=<slug> [--locale=es]',
79
97
  help_learning:
80
98
  'aioson learning [path] [--sub=list|stats|promote] [--status=<status>] [--id=<learning-id>] [--locale=es]',
81
99
  dashboard_moved:
@@ -87,7 +105,7 @@ module.exports = {
87
105
  },
88
106
  init: {
89
107
  usage_error:
90
- 'Uso: aioson init <project-name> [--force] [--dry-run] [--lang=en|pt-BR|es|fr] [--tool=codex|claude|gemini|opencode] [--locale=es]',
108
+ 'Uso: aioson init <project-name> [--force] [--dry-run] [--all] [--lang=en|pt-BR|es|fr] [--tool=codex|claude|gemini|opencode] [--locale=es]',
91
109
  non_empty_dir: 'El directorio no esta vacio: {targetDir}. Usa --force para continuar.',
92
110
  created_at: 'Proyecto creado en: {targetDir}',
93
111
  files_copied: 'Archivos copiados: {count}',
@@ -99,6 +117,9 @@ module.exports = {
99
117
  step_agent_prompt:
100
118
  '4. Genera el prompt de setup para tu herramienta: aioson agent:prompt setup --tool={tool}'
101
119
  },
120
+ init_all: {
121
+ installing_full: 'Instalacion completa (todas las herramientas + squads) — wizard ignorado via --all'
122
+ },
102
123
  install: {
103
124
  framework_detected: 'Framework detectado: {framework} ({evidence})',
104
125
  framework_not_detected: 'No se detecto framework. Instalando en modo generico.',
@@ -116,11 +137,18 @@ module.exports = {
116
137
  existing_project_scan_hint:
117
138
  ' aioson scan:project . --folder=src --with-llm --provider=<provider> (genera discovery.md + skeleton-system.md; sin --with-llm genera solo mapas locales)'
118
139
  },
140
+ install_wizard: {
141
+ ready_to_install: 'Listo para instalar:',
142
+ press_enter_to_install: 'Presiona enter para instalar o q para cancelar.',
143
+ deselected_warning: '⚠ Los elementos deseleccionados NO se eliminaran automaticamente.',
144
+ deselected_hint: ' Eliminalos manualmente si lo necesitas.'
145
+ },
119
146
  update: {
120
147
  not_installed: 'No se encontro instalacion de AIOSON en {targetDir}.',
121
148
  done_at: 'Actualizacion completada en: {targetDir}',
122
149
  files_updated: 'Archivos actualizados: {count}',
123
- backups_created: 'Backups creados: {count}'
150
+ backups_created: 'Backups creados: {count}',
151
+ reconfigure_hint: 'Nuevas opciones pueden estar disponibles. Ejecuta: aioson install --reconfigure'
124
152
  },
125
153
  info: {
126
154
  cli_version: 'AIOSON CLI: v{version}',
@@ -249,6 +277,22 @@ module.exports = {
249
277
  selected_line: ' {index}. {path} — {reason}',
250
278
  hint_use: 'Usa {path} como contexto minimo inicial en tu sesion de IA.'
251
279
  },
280
+ setup: {
281
+ installing: 'Instalando plantilla AIOSON...',
282
+ installed: 'Plantilla instalada ({count} archivos).',
283
+ no_framework_detected: 'No se detecto ningun framework en este directorio (proyecto nuevo).',
284
+ framework_detected: 'Framework detectado: {framework} (instalado={installed})',
285
+ writing_context: 'Escribiendo contexto del proyecto...',
286
+ done: 'Setup completado.',
287
+ step_agents: ' Siguiente: abre tu cliente de IA y activa @setup para confirmar o ajustar el contexto.',
288
+ step_agent_prompt: ' O ejecuta: aioson agent:prompt setup . --tool={tool}',
289
+ q_project_name: 'Nombre del proyecto',
290
+ q_framework: 'Framework / stack principal (ej: Python, Node, Laravel, Django)',
291
+ q_lang: 'Idioma para respuestas de los agentes (ej: en, pt-BR, es, fr)',
292
+ q_confirm_framework: 'Usar framework detectado? (true/false)',
293
+ q_override_framework: 'Framework',
294
+ q_framework_installed: 'Framework instalado? (true/false)'
295
+ },
252
296
  setup_context: {
253
297
  detected: 'Framework detectado: {framework} (installed={installed})',
254
298
  q_project_name: 'Nombre del proyecto',
@@ -672,6 +716,23 @@ module.exports = {
672
716
  not_found: 'No se encontro reporte QA. Ejecuta: aioson qa:run o aioson qa:scan',
673
717
  html_report_written: 'Reporte HTML escrito: {path}'
674
718
  },
719
+ web_map: {
720
+ url_missing: 'Falta la opcion obligatoria: --url=<url>.',
721
+ starting: 'Mapeando sitio: {url}',
722
+ pages_found: 'Paginas descubiertas: {count}',
723
+ page_line: '- {url} | profundidad={depth} | estado={status} | links={links}',
724
+ done: 'Mapa web completado.',
725
+ failed: 'Fallo en mapa web: {error}'
726
+ },
727
+ web_scrape: {
728
+ url_missing: 'Falta la opcion obligatoria: --url=<url>.',
729
+ invalid_format: 'Valor invalido para --format: {format}. Usa markdown, text, html o links.',
730
+ fetching: 'Obteniendo pagina: {url}',
731
+ title_line: 'Titulo: {title}',
732
+ status_line: 'Estado: {status} | Content-Type: {type}',
733
+ done: 'Web scrape completado ({format}).',
734
+ failed: 'Fallo en web scrape: {error}'
735
+ },
675
736
  config: {
676
737
  usage_error:
677
738
  'Uso: aioson config <set KEY=value|show|get KEY> [--json] [--locale=es]',
@@ -789,6 +850,90 @@ module.exports = {
789
850
  registered: 'Investigacion registrada: {slug} ({path})',
790
851
  unknown_sub: 'Subcomando desconocido: {sub}. Usa: list, show, score, link, register.'
791
852
  },
853
+ squad_daemon: {
854
+ squad_required: 'El slug del squad es obligatorio. Use --squad=<slug>.',
855
+ started: 'Daemon iniciado para squad "{squad}" en puerto {port} ({workers} workers, {cron} cron jobs)',
856
+ webhook_hint: 'Endpoint webhook: POST http://127.0.0.1:{port}/webhook/<worker-slug>',
857
+ stop_hint: 'Presione Ctrl+C para detener.',
858
+ stopping: 'Deteniendo daemon...',
859
+ start_failed: 'Error al iniciar daemon: {error}',
860
+ no_runtime: 'Runtime store no encontrado. Ejecute aioson runtime:init primero.',
861
+ no_daemons: 'No se encontraron registros de daemon.',
862
+ not_found: 'No hay registro de daemon para el squad: {squad}',
863
+ not_running: 'El daemon del squad "{squad}" no esta en ejecucion.',
864
+ signal_sent: 'SIGTERM enviado al daemon de "{squad}" (pid {pid}).',
865
+ process_gone: 'El proceso del daemon de "{squad}" ya no esta en ejecucion.',
866
+ no_logs: 'No se encontraron registros de actividad del daemon.',
867
+ unknown_sub: 'Subcomando desconocido: {sub}. Use: start, status, stop, logs.'
868
+ },
869
+
870
+ squad_mcp: {
871
+ squad_required: 'El slug del squad es obligatorio. Use --squad=<slug>.',
872
+ connectors_title: 'Conectores MCP Integrados:',
873
+ actions: 'Acciones',
874
+ required_config: 'Requerido',
875
+ no_integrations: 'No hay integraciones configuradas para el squad "{squad}".',
876
+ missing_config: 'Config faltante',
877
+ calls: 'Llamadas',
878
+ mcp_required: 'El slug del MCP es obligatorio. Use --mcp=<slug>.',
879
+ connector_required: 'El ID del conector es obligatorio. Use --connector=<id>.',
880
+ unknown_connector: 'Conector desconocido: {connector}. Use --sub=connectors para listar.',
881
+ configured: 'Integracion "{mcp}" configurada con conector "{connector}" (estado: {status}).',
882
+ still_missing: 'Aun faltan env/config: {keys}',
883
+ not_configured: 'La integracion "{mcp}" no esta configurada.',
884
+ test_missing: 'La integracion "{mcp}" tiene config faltante: {keys}',
885
+ test_ok: 'Integracion "{mcp}" ({connector}) — config OK.',
886
+ health_url: 'URL de health check: {url}',
887
+ unknown_sub: 'Subcomando desconocido: {sub}. Use: status, connectors, configure, test.'
888
+ },
889
+
890
+ squad_roi: {
891
+ squad_required: 'El slug del squad es obligatorio. Use --squad=<slug>.',
892
+ config_saved: 'Config de ROI guardada para el squad "{squad}".',
893
+ pricing_model: 'Modelo de precios',
894
+ setup_fee: 'Tarifa de instalacion',
895
+ monthly_fee: 'Mensualidad',
896
+ percentage: 'Porcentaje',
897
+ contract: 'Contrato',
898
+ metric_required: 'La clave y el valor de la metrica son obligatorios. Use --key=<nombre> --value=<N>.',
899
+ metric_saved: 'Metrica "{key}" = {value} guardada para el squad "{squad}".',
900
+ no_metrics: 'No se encontraron metricas para el squad "{squad}".',
901
+ report_title: 'Reporte de ROI — {squad}',
902
+ baseline: 'Baseline',
903
+ actual: 'Actual',
904
+ target: 'Meta',
905
+ period: 'Periodo',
906
+ cost_section: 'Resumen de Costos:',
907
+ monthly_cost: 'Costo mensual efectivo',
908
+ exported: 'Reporte exportado a {file} ({format}).',
909
+ unknown_sub: 'Subcomando desconocido: {sub}. Use: config, metric, report, export.'
910
+ },
911
+
912
+ squad_worker: {
913
+ squad_required: 'El slug del squad es obligatorio. Use --squad=<slug>.',
914
+ no_workers: 'No se encontraron workers para este squad.',
915
+ run_usage: 'Uso: aioson squad:worker --sub=run --squad=<slug> --worker=<slug> [--input=<json>]',
916
+ test_usage: 'Uso: aioson squad:worker --sub=test --squad=<slug> --worker=<slug>',
917
+ scaffold_usage: 'Uso: aioson squad:worker --sub=scaffold --squad=<slug> --worker=<slug> [--trigger=manual|event|scheduled]',
918
+ not_found: 'Worker no encontrado: {worker}',
919
+ invalid_input: 'JSON invalido. Proporcione JSON valido con --input.',
920
+ run_success: 'Worker "{worker}" completado exitosamente.',
921
+ run_failed: 'Worker "{worker}" fallo: {error}',
922
+ test_passed: 'Worker "{worker}" prueba aprobada.',
923
+ test_failed: 'Worker "{worker}" prueba fallo: {error}',
924
+ scaffold_created: 'Worker "{worker}" creado en {path}',
925
+ no_runtime: 'Runtime store no encontrado. Ejecute aioson runtime:init primero.',
926
+ no_logs: 'No se encontraron ejecuciones de worker.',
927
+ unknown_sub: 'Subcomando desconocido: {sub}. Use: list, run, test, logs, scaffold.'
928
+ },
929
+
930
+ squad_dashboard: {
931
+ started: 'Squad Dashboard ejecutandose en {url} (puerto {port})',
932
+ filtered: 'Filtrando al squad: {squad}',
933
+ stop_hint: 'Presione Ctrl+C para detener.',
934
+ stopping: 'Deteniendo Squad Dashboard...',
935
+ port_in_use: 'El puerto {port} ya esta en uso. Intente --port=<otro>'
936
+ },
792
937
  implementation_plan: {
793
938
  not_found: 'Plan de implementacion no encontrado: {file}',
794
939
  no_runtime: 'Runtime store no encontrado. Ejecuta aioson runtime:init primero.',
@@ -10,6 +10,8 @@ module.exports = {
10
10
  'aioson init <project-name> [--force] [--dry-run] [--lang=en|pt-BR|es|fr] [--tool=codex|claude|gemini|opencode] [--locale=fr]',
11
11
  help_install:
12
12
  'aioson install [path] [--force] [--dry-run] [--lang=en|pt-BR|es|fr] [--tool=codex|claude|gemini|opencode] [--locale=fr]',
13
+ help_setup:
14
+ 'aioson setup [path] [--defaults] [--framework=<nom>] [--lang=en|pt-BR|es|fr] [--project-name=<nom>] [--force] [--dry-run] [--tool=codex|claude|gemini|opencode] [--locale=fr]',
13
15
  help_update:
14
16
  'aioson update [path] [--dry-run] [--lang=en|pt-BR|es|fr] [--locale=fr]',
15
17
  help_info: 'aioson info [path] [--json] [--locale=fr]',
@@ -54,6 +56,10 @@ module.exports = {
54
56
  'aioson qa:scan [path] [--url=<app-url>] [--depth=3] [--max-pages=50] [--headed] [--html] [--json] [--locale=fr]',
55
57
  help_qa_report:
56
58
  'aioson qa:report [path] [--html] [--json] [--locale=fr]',
59
+ help_web_map:
60
+ 'aioson web:map [path] --url=<url> [--depth=<N>] [--max-pages=<N>] [--include-external] [--json] [--locale=fr]',
61
+ help_web_scrape:
62
+ 'aioson web:scrape [path] --url=<url> [--format=markdown|text|html|links] [--json] [--locale=fr]',
57
63
  help_scan_project:
58
64
  'aioson scan:project [path] --folder=<chemin[,chemin2]> [--summary-mode=titles|summaries|raw] [--context-mode=merge|rewrite] [--with-llm] [--provider=<name>] [--llm-model=<name>] [--dry-run] [--json] [--locale=fr]',
59
65
  help_config:
@@ -76,6 +82,18 @@ module.exports = {
76
82
  'aioson squad:investigate [path] [--sub=list|show|score|link|register] [--investigation=<slug>] [--squad=<slug>] [--locale=fr]',
77
83
  help_squad_learning:
78
84
  'aioson squad:learning [path] [--sub=list|stats|archive|promote|export] [--squad=<slug>] [--status=<status>] [--locale=fr]',
85
+ help_squad_dashboard:
86
+ 'aioson squad:dashboard [path] [--port=4180] [--squad=<slug>] [--locale=fr]',
87
+ help_squad_worker:
88
+ 'aioson squad:worker [path] [--sub=list|run|test|logs|scaffold] [--squad=<slug>] [--worker=<slug>] [--input=<json>] [--locale=fr]',
89
+ help_squad_daemon:
90
+ 'aioson squad:daemon [path] [--sub=start|status|stop|logs] [--squad=<slug>] [--port=<N>] [--locale=fr]',
91
+ help_squad_mcp:
92
+ 'aioson squad:mcp [path] [--sub=status|connectors|configure|test] [--squad=<slug>] [--mcp=<slug>] [--connector=<id>]',
93
+ help_squad_roi:
94
+ 'aioson squad:roi [path] [--sub=config|metric|report|export] [--squad=<slug>] [--key=<metrique>] [--value=<N>]',
95
+ help_squad_score:
96
+ 'aioson squad:score [path] --squad=<slug> [--locale=fr]',
79
97
  help_learning:
80
98
  'aioson learning [path] [--sub=list|stats|promote] [--status=<status>] [--id=<learning-id>] [--locale=fr]',
81
99
  dashboard_moved:
@@ -87,7 +105,7 @@ module.exports = {
87
105
  },
88
106
  init: {
89
107
  usage_error:
90
- 'Utilisation : aioson init <project-name> [--force] [--dry-run] [--lang=en|pt-BR|es|fr] [--tool=codex|claude|gemini|opencode] [--locale=fr]',
108
+ 'Utilisation : aioson init <project-name> [--force] [--dry-run] [--all] [--lang=en|pt-BR|es|fr] [--tool=codex|claude|gemini|opencode] [--locale=fr]',
91
109
  non_empty_dir: 'Le repertoire n est pas vide : {targetDir}. Utilisez --force pour continuer.',
92
110
  created_at: 'Projet cree dans : {targetDir}',
93
111
  files_copied: 'Fichiers copies : {count}',
@@ -99,6 +117,9 @@ module.exports = {
99
117
  step_agent_prompt:
100
118
  '4. Generez le prompt setup pour votre outil : aioson agent:prompt setup --tool={tool}'
101
119
  },
120
+ init_all: {
121
+ installing_full: 'Installation complete (tous les outils + squads) — wizard ignore via --all'
122
+ },
102
123
  install: {
103
124
  framework_detected: 'Framework detecte : {framework} ({evidence})',
104
125
  framework_not_detected: 'Aucun framework detecte. Installation en mode generique.',
@@ -115,11 +136,18 @@ module.exports = {
115
136
  existing_project_scan_hint:
116
137
  ' aioson scan:project . --folder=src --with-llm --provider=<provider> (genere discovery.md + skeleton-system.md ; sans --with-llm, seulement les cartes locales)'
117
138
  },
139
+ install_wizard: {
140
+ ready_to_install: 'Pret a installer :',
141
+ press_enter_to_install: 'Appuyez sur entree pour installer ou q pour annuler.',
142
+ deselected_warning: '⚠ Les elements deselectionnes ne seront PAS supprimes automatiquement.',
143
+ deselected_hint: ' Supprimez-les manuellement si necessaire.'
144
+ },
118
145
  update: {
119
146
  not_installed: 'Aucune installation AIOSON trouvee dans {targetDir}.',
120
147
  done_at: 'Mise a jour terminee dans : {targetDir}',
121
148
  files_updated: 'Fichiers mis a jour : {count}',
122
- backups_created: 'Sauvegardes creees : {count}'
149
+ backups_created: 'Sauvegardes creees : {count}',
150
+ reconfigure_hint: 'De nouvelles options peuvent etre disponibles. Lancez : aioson install --reconfigure'
123
151
  },
124
152
  info: {
125
153
  cli_version: 'AIOSON CLI : v{version}',
@@ -248,6 +276,22 @@ module.exports = {
248
276
  selected_line: ' {index}. {path} — {reason}',
249
277
  hint_use: 'Utilisez {path} comme contexte minimal de depart dans votre session IA.'
250
278
  },
279
+ setup: {
280
+ installing: 'Installation du template AIOSON...',
281
+ installed: 'Template installe ({count} fichiers).',
282
+ no_framework_detected: 'Aucun framework detecte dans ce repertoire (projet vierge).',
283
+ framework_detected: 'Framework detecte : {framework} (installe={installed})',
284
+ writing_context: 'Ecriture du contexte du projet...',
285
+ done: 'Setup termine.',
286
+ step_agents: ' Etape suivante : ouvrez votre client IA et activez @setup pour confirmer ou ajuster le contexte.',
287
+ step_agent_prompt: ' Ou executez : aioson agent:prompt setup . --tool={tool}',
288
+ q_project_name: 'Nom du projet',
289
+ q_framework: 'Framework / stack principal (ex : Python, Node, Laravel, Django)',
290
+ q_lang: 'Langue pour les reponses des agents (ex : en, pt-BR, es, fr)',
291
+ q_confirm_framework: 'Utiliser le framework detecte ? (true/false)',
292
+ q_override_framework: 'Framework',
293
+ q_framework_installed: 'Framework installe ? (true/false)'
294
+ },
251
295
  setup_context: {
252
296
  detected: 'Framework detecte : {framework} (installed={installed})',
253
297
  q_project_name: 'Nom du projet',
@@ -679,6 +723,23 @@ module.exports = {
679
723
  not_found: 'Aucun rapport QA trouve. Executez : aioson qa:run ou aioson qa:scan',
680
724
  html_report_written: 'Rapport HTML ecrit : {path}'
681
725
  },
726
+ web_map: {
727
+ url_missing: 'Option obligatoire manquante : --url=<url>.',
728
+ starting: 'Cartographie du site : {url}',
729
+ pages_found: 'Pages decouvertes : {count}',
730
+ page_line: '- {url} | profondeur={depth} | statut={status} | liens={links}',
731
+ done: 'Cartographie web terminee.',
732
+ failed: 'Echec de la cartographie web : {error}'
733
+ },
734
+ web_scrape: {
735
+ url_missing: 'Option obligatoire manquante : --url=<url>.',
736
+ invalid_format: 'Valeur invalide pour --format : {format}. Utilisez markdown, text, html ou links.',
737
+ fetching: 'Recuperation de la page : {url}',
738
+ title_line: 'Titre : {title}',
739
+ status_line: 'Statut : {status} | Content-Type : {type}',
740
+ done: 'Web scrape termine ({format}).',
741
+ failed: 'Echec du web scrape : {error}'
742
+ },
682
743
  config: {
683
744
  usage_error:
684
745
  'Utilisation : aioson config <set KEY=value|show|get KEY> [--json] [--locale=fr]',
@@ -796,6 +857,90 @@ module.exports = {
796
857
  registered: 'Investigation enregistree : {slug} ({path})',
797
858
  unknown_sub: 'Sous-commande inconnue : {sub}. Utilisez : list, show, score, link, register.'
798
859
  },
860
+ squad_daemon: {
861
+ squad_required: 'Le slug du squad est obligatoire. Utilisez --squad=<slug>.',
862
+ started: 'Daemon demarre pour le squad "{squad}" sur le port {port} ({workers} workers, {cron} cron jobs)',
863
+ webhook_hint: 'Endpoint webhook : POST http://127.0.0.1:{port}/webhook/<worker-slug>',
864
+ stop_hint: 'Appuyez sur Ctrl+C pour arreter.',
865
+ stopping: 'Arret du daemon...',
866
+ start_failed: 'Echec du demarrage du daemon : {error}',
867
+ no_runtime: 'Runtime store non trouve. Executez aioson runtime:init d\'abord.',
868
+ no_daemons: 'Aucun enregistrement de daemon trouve.',
869
+ not_found: 'Aucun enregistrement de daemon pour le squad : {squad}',
870
+ not_running: 'Le daemon du squad "{squad}" n\'est pas en cours d\'execution.',
871
+ signal_sent: 'SIGTERM envoye au daemon de "{squad}" (pid {pid}).',
872
+ process_gone: 'Le processus du daemon de "{squad}" n\'est plus en cours d\'execution.',
873
+ no_logs: 'Aucun journal d\'activite du daemon trouve.',
874
+ unknown_sub: 'Sous-commande inconnue : {sub}. Utilisez : start, status, stop, logs.'
875
+ },
876
+
877
+ squad_mcp: {
878
+ squad_required: 'Le slug du squad est obligatoire. Utilisez --squad=<slug>.',
879
+ connectors_title: 'Connecteurs MCP Integres :',
880
+ actions: 'Actions',
881
+ required_config: 'Requis',
882
+ no_integrations: 'Aucune integration configuree pour le squad "{squad}".',
883
+ missing_config: 'Config manquante',
884
+ calls: 'Appels',
885
+ mcp_required: 'Le slug du MCP est obligatoire. Utilisez --mcp=<slug>.',
886
+ connector_required: 'L\'ID du connecteur est obligatoire. Utilisez --connector=<id>.',
887
+ unknown_connector: 'Connecteur inconnu : {connector}. Utilisez --sub=connectors pour lister.',
888
+ configured: 'Integration "{mcp}" configuree avec le connecteur "{connector}" (statut : {status}).',
889
+ still_missing: 'Config env encore manquante : {keys}',
890
+ not_configured: 'L\'integration "{mcp}" n\'est pas configuree.',
891
+ test_missing: 'L\'integration "{mcp}" a une config manquante : {keys}',
892
+ test_ok: 'Integration "{mcp}" ({connector}) — config OK.',
893
+ health_url: 'URL de verification : {url}',
894
+ unknown_sub: 'Sous-commande inconnue : {sub}. Utilisez : status, connectors, configure, test.'
895
+ },
896
+
897
+ squad_roi: {
898
+ squad_required: 'Le slug du squad est obligatoire. Utilisez --squad=<slug>.',
899
+ config_saved: 'Config ROI enregistree pour le squad "{squad}".',
900
+ pricing_model: 'Modele tarifaire',
901
+ setup_fee: 'Frais d\'installation',
902
+ monthly_fee: 'Mensualite',
903
+ percentage: 'Pourcentage',
904
+ contract: 'Contrat',
905
+ metric_required: 'La cle et la valeur de la metrique sont obligatoires. Utilisez --key=<nom> --value=<N>.',
906
+ metric_saved: 'Metrique "{key}" = {value} enregistree pour le squad "{squad}".',
907
+ no_metrics: 'Aucune metrique trouvee pour le squad "{squad}".',
908
+ report_title: 'Rapport ROI — {squad}',
909
+ baseline: 'Baseline',
910
+ actual: 'Actuel',
911
+ target: 'Objectif',
912
+ period: 'Periode',
913
+ cost_section: 'Resume des Couts :',
914
+ monthly_cost: 'Cout mensuel effectif',
915
+ exported: 'Rapport exporte vers {file} ({format}).',
916
+ unknown_sub: 'Sous-commande inconnue : {sub}. Utilisez : config, metric, report, export.'
917
+ },
918
+
919
+ squad_worker: {
920
+ squad_required: 'Le slug du squad est obligatoire. Utilisez --squad=<slug>.',
921
+ no_workers: 'Aucun worker trouve pour ce squad.',
922
+ run_usage: 'Usage : aioson squad:worker --sub=run --squad=<slug> --worker=<slug> [--input=<json>]',
923
+ test_usage: 'Usage : aioson squad:worker --sub=test --squad=<slug> --worker=<slug>',
924
+ scaffold_usage: 'Usage : aioson squad:worker --sub=scaffold --squad=<slug> --worker=<slug> [--trigger=manual|event|scheduled]',
925
+ not_found: 'Worker non trouve : {worker}',
926
+ invalid_input: 'JSON invalide. Fournissez un JSON valide avec --input.',
927
+ run_success: 'Worker "{worker}" termine avec succes.',
928
+ run_failed: 'Worker "{worker}" echoue : {error}',
929
+ test_passed: 'Worker "{worker}" test reussi.',
930
+ test_failed: 'Worker "{worker}" test echoue : {error}',
931
+ scaffold_created: 'Worker "{worker}" cree dans {path}',
932
+ no_runtime: 'Runtime store non trouve. Executez aioson runtime:init d\'abord.',
933
+ no_logs: 'Aucune execution de worker trouvee.',
934
+ unknown_sub: 'Sous-commande inconnue : {sub}. Utilisez : list, run, test, logs, scaffold.'
935
+ },
936
+
937
+ squad_dashboard: {
938
+ started: 'Squad Dashboard en cours sur {url} (port {port})',
939
+ filtered: 'Filtrage sur le squad : {squad}',
940
+ stop_hint: 'Appuyez sur Ctrl+C pour arreter.',
941
+ stopping: 'Arret du Squad Dashboard...',
942
+ port_in_use: 'Le port {port} est deja utilise. Essayez --port=<autre>'
943
+ },
799
944
  implementation_plan: {
800
945
  not_found: 'Plan d\'implementation introuvable : {file}',
801
946
  no_runtime: 'Runtime store introuvable. Lancez aioson runtime:init d\'abord.',