@jaimevalasek/aioson 1.7.0 → 1.8.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 (383) hide show
  1. package/CHANGELOG.md +60 -0
  2. package/README.md +153 -10
  3. package/docs/en/cli-reference.md +56 -1
  4. package/docs/en/i18n.md +18 -18
  5. package/docs/en/schemas/index.json +10 -0
  6. package/docs/en/schemas/parallel-assign.schema.json +9 -0
  7. package/docs/en/schemas/parallel-doctor.schema.json +36 -0
  8. package/docs/en/schemas/parallel-guard.schema.json +63 -0
  9. package/docs/en/schemas/parallel-merge.schema.json +84 -0
  10. package/docs/en/schemas/parallel-status.schema.json +91 -1
  11. package/docs/integrations/apps-publish-marketplace.md +94 -0
  12. package/docs/pt/README.md +9 -0
  13. package/docs/pt/agentes.md +324 -3
  14. package/docs/pt/clientes-ai.md +7 -3
  15. package/docs/pt/comandos-cli.md +160 -13
  16. package/docs/pt/compress-agents.md +304 -0
  17. package/docs/pt/design-docs-governance.md +59 -0
  18. package/docs/pt/feature-archive.md +191 -0
  19. package/docs/pt/genome-3.0-spec.md +115 -4
  20. package/docs/pt/genome-distribution.md +232 -0
  21. package/docs/pt/inicio-rapido.md +1 -0
  22. package/docs/pt/motor-hardening.md +492 -0
  23. package/docs/pt/runner-system.md +113 -0
  24. package/package.json +2 -1
  25. package/src/agent-manifests.js +66 -0
  26. package/src/agents.js +27 -7
  27. package/src/autonomy-policy.js +139 -0
  28. package/src/brain-query.js +161 -0
  29. package/src/cli.js +1377 -1099
  30. package/src/commands/agents.js +102 -7
  31. package/src/commands/artifact-validate.js +33 -4
  32. package/src/commands/auth.js +272 -0
  33. package/src/commands/brain-query.js +44 -0
  34. package/src/commands/briefing.js +344 -0
  35. package/src/commands/commit-prepare.js +547 -0
  36. package/src/commands/compress-agents.js +416 -0
  37. package/src/commands/context-health.js +4 -2
  38. package/src/commands/context-trim.js +17 -11
  39. package/src/commands/design-hybrid-options.js +3 -3
  40. package/src/commands/devlog-process.js +6 -4
  41. package/src/commands/dossier.js +423 -0
  42. package/src/commands/feature-archive.js +513 -0
  43. package/src/commands/feature-close.js +123 -18
  44. package/src/commands/gate-approve.js +198 -0
  45. package/src/commands/gate-check.js +24 -5
  46. package/src/commands/genome-doctor.js +166 -9
  47. package/src/commands/git-guard.js +170 -0
  48. package/src/commands/harness.js +121 -0
  49. package/src/commands/implementation-plan.js +47 -20
  50. package/src/commands/init.js +6 -2
  51. package/src/commands/install.js +6 -2
  52. package/src/commands/live.js +497 -56
  53. package/src/commands/locale-apply.js +9 -6
  54. package/src/commands/locale-diff.js +11 -112
  55. package/src/commands/mcp-doctor.js +2 -1
  56. package/src/commands/mcp-init.js +4 -10
  57. package/src/commands/memory.js +234 -0
  58. package/src/commands/parallel-assign.js +107 -27
  59. package/src/commands/parallel-doctor.js +416 -3
  60. package/src/commands/parallel-guard.js +241 -0
  61. package/src/commands/parallel-init.js +66 -4
  62. package/src/commands/parallel-merge.js +299 -0
  63. package/src/commands/parallel-status.js +147 -3
  64. package/src/commands/preflight.js +63 -4
  65. package/src/commands/qa-init.js +10 -5
  66. package/src/commands/revision.js +235 -0
  67. package/src/commands/scaffold-complete.js +188 -0
  68. package/src/commands/security-audit.js +275 -0
  69. package/src/commands/security-scan.js +376 -0
  70. package/src/commands/self-implement-loop.js +46 -2
  71. package/src/commands/setup-context.js +11 -10
  72. package/src/commands/squad-agent-create.js +51 -9
  73. package/src/commands/squad-investigate.js +53 -0
  74. package/src/commands/squad-plan.js +33 -1
  75. package/src/commands/squad-scaffold.js +4 -3
  76. package/src/commands/squad-score.js +71 -14
  77. package/src/commands/squad-status.js +22 -1
  78. package/src/commands/squad-validate.js +93 -2
  79. package/src/commands/store-genome.js +304 -0
  80. package/src/commands/store-skill.js +247 -0
  81. package/src/commands/store-squad.js +431 -0
  82. package/src/commands/store-system.js +392 -0
  83. package/src/commands/tool-capabilities.js +63 -0
  84. package/src/commands/update.js +3 -3
  85. package/src/commands/verify-gate.js +40 -0
  86. package/src/commands/workflow-execute.js +644 -155
  87. package/src/commands/workflow-harden.js +231 -0
  88. package/src/commands/workflow-heal.js +136 -0
  89. package/src/commands/workflow-next.js +460 -22
  90. package/src/commands/workflow-status.js +328 -138
  91. package/src/commands/workspace.js +144 -0
  92. package/src/constants.js +55 -75
  93. package/src/context-memory.js +133 -4
  94. package/src/context-writer.js +2 -1
  95. package/src/context.js +32 -2
  96. package/src/doctor.js +46 -6
  97. package/src/dossier/codemap-store.js +267 -0
  98. package/src/dossier/dossier-bootstrap.js +222 -0
  99. package/src/dossier/dossier-compact.js +159 -0
  100. package/src/dossier/lock.js +128 -0
  101. package/src/dossier/revision-store.js +313 -0
  102. package/src/dossier/schema.js +155 -0
  103. package/src/dossier/store.js +400 -0
  104. package/src/execution-gateway.js +3 -0
  105. package/src/friction-scanner.js +202 -0
  106. package/src/genome-schema.js +24 -1
  107. package/src/genomes.js +33 -0
  108. package/src/handoff-contract.js +363 -0
  109. package/src/handoff-validator.js +45 -0
  110. package/src/harness/circuit-breaker.js +135 -0
  111. package/src/i18n/messages/en.js +317 -22
  112. package/src/i18n/messages/es.js +259 -18
  113. package/src/i18n/messages/fr.js +260 -18
  114. package/src/i18n/messages/pt-BR.js +313 -22
  115. package/src/install-profile.js +0 -16
  116. package/src/installer.js +70 -6
  117. package/src/lib/git-commit-guard.js +691 -0
  118. package/src/lib/security/artifact-reader.js +167 -0
  119. package/src/lib/security/exit-codes.js +51 -0
  120. package/src/lib/security/findings-writer.js +176 -0
  121. package/src/lib/security/runtime-events.js +77 -0
  122. package/src/lib/security/secrets-regex.js +115 -0
  123. package/src/lib/store/security-scan.js +173 -0
  124. package/src/lib/terminal-checkbox.js +130 -0
  125. package/src/lib/tmux-launcher.js +163 -0
  126. package/src/lib/tool-capabilities.js +102 -0
  127. package/src/locales.js +12 -8
  128. package/src/parallel-workspace.js +756 -0
  129. package/src/parser.js +8 -1
  130. package/src/path-guard.js +47 -0
  131. package/src/preflight-engine.js +237 -26
  132. package/src/self-healing.js +142 -0
  133. package/src/session-handoff.js +111 -1
  134. package/src/squad/squad-scaffold.js +183 -19
  135. package/src/test-briefing.js +226 -0
  136. package/src/updater.js +1 -1
  137. package/src/utils.js +3 -0
  138. package/src/workflow-gates.js +185 -0
  139. package/template/.aioson/agents/analyst.md +76 -130
  140. package/template/.aioson/agents/architect.md +53 -86
  141. package/template/.aioson/agents/committer.md +161 -0
  142. package/template/.aioson/agents/copywriter.md +463 -0
  143. package/template/.aioson/agents/cypher.md +252 -0
  144. package/template/.aioson/agents/dev.md +112 -600
  145. package/template/.aioson/agents/deyvin.md +33 -235
  146. package/template/.aioson/agents/discover.md +235 -0
  147. package/template/.aioson/agents/discovery-design-doc.md +17 -252
  148. package/template/.aioson/agents/genome.md +76 -26
  149. package/template/.aioson/agents/manifests/analyst.manifest.json +26 -0
  150. package/template/.aioson/agents/manifests/architect.manifest.json +23 -0
  151. package/template/.aioson/agents/manifests/committer.manifest.json +23 -0
  152. package/template/.aioson/agents/manifests/dev.manifest.json +37 -0
  153. package/template/.aioson/agents/manifests/orchestrator.manifest.json +30 -0
  154. package/template/.aioson/agents/manifests/pentester.manifest.json +39 -0
  155. package/template/.aioson/agents/manifests/pm.manifest.json +26 -0
  156. package/template/.aioson/agents/manifests/product.manifest.json +23 -0
  157. package/template/.aioson/agents/manifests/qa.manifest.json +25 -0
  158. package/template/.aioson/agents/manifests/setup.manifest.json +20 -0
  159. package/template/.aioson/agents/manifests/ux-ui.manifest.json +24 -0
  160. package/template/.aioson/agents/neo.md +10 -8
  161. package/template/.aioson/agents/orache.md +2 -6
  162. package/template/.aioson/agents/orchestrator.md +81 -182
  163. package/template/.aioson/agents/pentester.md +235 -0
  164. package/template/.aioson/agents/pm.md +40 -104
  165. package/template/.aioson/agents/product.md +99 -344
  166. package/template/.aioson/agents/profiler-enricher.md +57 -6
  167. package/template/.aioson/agents/profiler-forge.md +17 -7
  168. package/template/.aioson/agents/profiler-researcher.md +29 -6
  169. package/template/.aioson/agents/qa.md +165 -410
  170. package/template/.aioson/agents/setup.md +52 -262
  171. package/template/.aioson/agents/sheldon.md +122 -754
  172. package/template/.aioson/agents/site-forge.md +111 -1583
  173. package/template/.aioson/agents/squad.md +139 -1820
  174. package/template/.aioson/agents/tester.md +10 -0
  175. package/template/.aioson/agents/ux-ui.md +103 -645
  176. package/template/.aioson/agents/validator.md +69 -0
  177. package/template/.aioson/brains/scripts/query.js +5 -1
  178. package/template/.aioson/config/autonomy-protocol.json +43 -0
  179. package/template/.aioson/config.md +43 -15
  180. package/template/.aioson/constitution.md +36 -33
  181. package/template/.aioson/context/design-doc.md +136 -0
  182. package/template/.aioson/context/project-map.md +57 -0
  183. package/template/.aioson/design-docs/code-reuse.md +48 -0
  184. package/template/.aioson/design-docs/componentization.md +47 -0
  185. package/template/.aioson/design-docs/file-size.md +52 -0
  186. package/template/.aioson/design-docs/folder-structure.md +51 -0
  187. package/template/.aioson/design-docs/naming.md +54 -0
  188. package/template/.aioson/docs/LAYERS.md +12 -2
  189. package/template/.aioson/docs/dev/execution-discipline.md +106 -0
  190. package/template/.aioson/docs/dev/stack-conventions.md +83 -0
  191. package/template/.aioson/docs/deyvin/continuity-recovery.md +57 -0
  192. package/template/.aioson/docs/deyvin/debugging-escalation.md +30 -0
  193. package/template/.aioson/docs/deyvin/pair-execution.md +44 -0
  194. package/template/.aioson/docs/deyvin/runtime-handoffs.md +36 -0
  195. package/template/.aioson/docs/product/conversation-playbook.md +116 -0
  196. package/template/.aioson/docs/product/prd-contract.md +107 -0
  197. package/template/.aioson/docs/product/quality-lens.md +57 -0
  198. package/template/.aioson/docs/product/research-loop.md +65 -0
  199. package/template/.aioson/docs/sheldon/enrichment-paths.md +134 -0
  200. package/template/.aioson/docs/sheldon/quality-lens.md +57 -0
  201. package/template/.aioson/docs/sheldon/research-loop.md +56 -0
  202. package/template/.aioson/docs/sheldon/web-intelligence.md +75 -0
  203. package/template/.aioson/docs/site-forge-build.md +195 -0
  204. package/template/.aioson/docs/site-forge-extraction.md +135 -0
  205. package/template/.aioson/docs/site-forge-qa.md +155 -0
  206. package/template/.aioson/docs/site-forge-recon.md +434 -0
  207. package/template/.aioson/docs/site-forge-transform.md +249 -0
  208. package/template/.aioson/docs/squad/content-output.md +91 -0
  209. package/template/.aioson/docs/squad/creation-flow.md +135 -0
  210. package/template/.aioson/docs/squad/domain-classification.md +117 -0
  211. package/template/.aioson/docs/squad/genome-bindings.md +47 -0
  212. package/template/.aioson/docs/squad/package-contract.md +234 -0
  213. package/template/.aioson/docs/squad/quality-lens.md +56 -0
  214. package/template/.aioson/docs/squad/research-loop.md +59 -0
  215. package/template/.aioson/docs/squad/session-operations.md +117 -0
  216. package/template/.aioson/docs/squad/workflow-quality.md +165 -0
  217. package/template/.aioson/docs/ux-ui/accessibility-audit.md +55 -0
  218. package/template/.aioson/docs/ux-ui/audit-mode.md +86 -0
  219. package/template/.aioson/docs/ux-ui/component-map.md +35 -0
  220. package/template/.aioson/docs/ux-ui/design-execution.md +111 -0
  221. package/template/.aioson/docs/ux-ui/design-gate.md +27 -0
  222. package/template/.aioson/docs/ux-ui/research-mode.md +39 -0
  223. package/template/.aioson/docs/ux-ui/site-delivery.md +156 -0
  224. package/template/.aioson/docs/ux-ui/token-contract.md +57 -0
  225. package/template/.aioson/genomes/copywriting.md +204 -0
  226. package/template/.aioson/genomes/copywriting.meta.json +48 -0
  227. package/template/.aioson/git-guard.json +11 -0
  228. package/template/.aioson/mcp/servers.md +0 -1
  229. package/template/.aioson/rules/agent-language-policy.md +93 -0
  230. package/template/.aioson/rules/aioson-context-boundary.md +63 -0
  231. package/template/.aioson/rules/canonical-path-contract.md +47 -0
  232. package/template/.aioson/rules/data-format-convention.md +24 -86
  233. package/template/.aioson/rules/disk-first-artifacts.md +44 -0
  234. package/template/.aioson/rules/output-brevity.md +44 -0
  235. package/template/.aioson/rules/prd-section-ownership.md +49 -0
  236. package/template/.aioson/rules/security-baseline.md +139 -0
  237. package/template/.aioson/rules/spec-level-ownership.md +61 -0
  238. package/template/.aioson/rules/squad-driver-pattern.md +81 -0
  239. package/template/.aioson/schemas/squad-blueprint.schema.json +24 -0
  240. package/template/.aioson/schemas/squad-manifest.schema.json +44 -0
  241. package/template/.aioson/skills/design/cognitive-core-ui/references/motion.md +2 -0
  242. package/template/.aioson/skills/marketing/references/anti-patterns.md +254 -0
  243. package/template/.aioson/skills/marketing/references/fascinations.md +192 -0
  244. package/template/.aioson/skills/marketing/references/five-acts.md +248 -0
  245. package/template/.aioson/skills/marketing/references/market-intelligence.md +198 -0
  246. package/template/.aioson/skills/marketing/references/offer-structure.md +203 -0
  247. package/template/.aioson/skills/marketing/references/one-belief.md +149 -0
  248. package/template/.aioson/skills/marketing/references/patterns.md +218 -0
  249. package/template/.aioson/skills/marketing/references/pms-research.md +193 -0
  250. package/template/.aioson/skills/marketing/vsl-craft.md +385 -0
  251. package/template/.aioson/skills/process/aioson-spec-driven/references/pm.md +30 -0
  252. package/template/.aioson/skills/process/secure-tdd/SKILL.md +97 -0
  253. package/template/.aioson/skills/process/secure-tdd/references/nextjs.md +81 -0
  254. package/template/.aioson/skills/process/secure-tdd/references/node-express.md +91 -0
  255. package/template/.aioson/skills/process/secure-tdd/references/planned-stacks.md +33 -0
  256. package/template/.aioson/skills/static/harness-validate/SKILL.md +46 -0
  257. package/template/.aioson/skills/static/landing-page-deploy.md +192 -0
  258. package/template/.aioson/skills/static/landing-page-forge.md +730 -0
  259. package/template/.aioson/skills/static/ui-ux-modern.md +1 -0
  260. package/template/.aioson/skills/static/web-research-cache.md +3 -0
  261. package/template/.aioson/tasks/squad-create.md +56 -7
  262. package/template/.aioson/tasks/squad-design.md +80 -2
  263. package/template/.aioson/tasks/squad-investigate.md +14 -1
  264. package/template/.aioson/templates/squads/digital-marketing-agency/template.json +96 -0
  265. package/template/.claude/commands/aioson/agent/committer.md +5 -0
  266. package/template/.claude/commands/aioson/agent/copywriter.md +5 -0
  267. package/template/.claude/commands/aioson/agent/cypher.md +5 -0
  268. package/template/.claude/commands/aioson/agent/pair.md +5 -0
  269. package/template/.claude/commands/aioson/agent/validator.md +5 -0
  270. package/template/.gemini/commands/aios-analyst.toml +6 -3
  271. package/template/.gemini/commands/aios-architect.toml +7 -6
  272. package/template/.gemini/commands/aios-committer.toml +7 -0
  273. package/template/.gemini/commands/aios-copywriter.toml +7 -0
  274. package/template/.gemini/commands/aios-cypher.toml +7 -0
  275. package/template/.gemini/commands/aios-dev.toml +8 -7
  276. package/template/.gemini/commands/aios-deyvin.toml +6 -5
  277. package/template/.gemini/commands/aios-discovery-design-doc.toml +6 -3
  278. package/template/.gemini/commands/aios-genome.toml +7 -0
  279. package/template/.gemini/commands/aios-neo.toml +5 -3
  280. package/template/.gemini/commands/aios-orache.toml +7 -0
  281. package/template/.gemini/commands/aios-orchestrator.toml +8 -7
  282. package/template/.gemini/commands/aios-pair.toml +6 -5
  283. package/template/.gemini/commands/aios-pm.toml +8 -7
  284. package/template/.gemini/commands/aios-product.toml +5 -3
  285. package/template/.gemini/commands/aios-qa.toml +6 -5
  286. package/template/.gemini/commands/aios-setup.toml +5 -2
  287. package/template/.gemini/commands/aios-sheldon.toml +7 -0
  288. package/template/.gemini/commands/aios-site-forge.toml +7 -0
  289. package/template/.gemini/commands/aios-squad.toml +7 -0
  290. package/template/.gemini/commands/aios-tester.toml +6 -5
  291. package/template/.gemini/commands/aios-ux-ui.toml +8 -7
  292. package/template/.gemini/commands/aios-validator.toml +7 -0
  293. package/template/AGENTS.md +12 -1
  294. package/template/CLAUDE.md +6 -1
  295. package/template/.aioson/locales/en/agents/analyst.md +0 -244
  296. package/template/.aioson/locales/en/agents/architect.md +0 -245
  297. package/template/.aioson/locales/en/agents/dev.md +0 -397
  298. package/template/.aioson/locales/en/agents/deyvin.md +0 -137
  299. package/template/.aioson/locales/en/agents/discovery-design-doc.md +0 -27
  300. package/template/.aioson/locales/en/agents/genome.md +0 -212
  301. package/template/.aioson/locales/en/agents/neo.md +0 -8
  302. package/template/.aioson/locales/en/agents/orache.md +0 -6
  303. package/template/.aioson/locales/en/agents/orchestrator.md +0 -189
  304. package/template/.aioson/locales/en/agents/pair.md +0 -5
  305. package/template/.aioson/locales/en/agents/pm.md +0 -84
  306. package/template/.aioson/locales/en/agents/product.md +0 -378
  307. package/template/.aioson/locales/en/agents/profiler-enricher.md +0 -5
  308. package/template/.aioson/locales/en/agents/profiler-forge.md +0 -5
  309. package/template/.aioson/locales/en/agents/profiler-researcher.md +0 -5
  310. package/template/.aioson/locales/en/agents/qa.md +0 -270
  311. package/template/.aioson/locales/en/agents/setup.md +0 -421
  312. package/template/.aioson/locales/en/agents/sheldon.md +0 -455
  313. package/template/.aioson/locales/en/agents/squad.md +0 -449
  314. package/template/.aioson/locales/en/agents/tester.md +0 -6
  315. package/template/.aioson/locales/en/agents/ux-ui.md +0 -668
  316. package/template/.aioson/locales/es/agents/analyst.md +0 -225
  317. package/template/.aioson/locales/es/agents/architect.md +0 -245
  318. package/template/.aioson/locales/es/agents/dev.md +0 -370
  319. package/template/.aioson/locales/es/agents/deyvin.md +0 -99
  320. package/template/.aioson/locales/es/agents/discovery-design-doc.md +0 -21
  321. package/template/.aioson/locales/es/agents/genome.md +0 -104
  322. package/template/.aioson/locales/es/agents/neo.md +0 -50
  323. package/template/.aioson/locales/es/agents/orache.md +0 -105
  324. package/template/.aioson/locales/es/agents/orchestrator.md +0 -194
  325. package/template/.aioson/locales/es/agents/pair.md +0 -7
  326. package/template/.aioson/locales/es/agents/pm.md +0 -90
  327. package/template/.aioson/locales/es/agents/product.md +0 -372
  328. package/template/.aioson/locales/es/agents/profiler-enricher.md +0 -7
  329. package/template/.aioson/locales/es/agents/profiler-forge.md +0 -7
  330. package/template/.aioson/locales/es/agents/profiler-researcher.md +0 -7
  331. package/template/.aioson/locales/es/agents/qa.md +0 -198
  332. package/template/.aioson/locales/es/agents/setup.md +0 -405
  333. package/template/.aioson/locales/es/agents/sheldon.md +0 -309
  334. package/template/.aioson/locales/es/agents/squad.md +0 -532
  335. package/template/.aioson/locales/es/agents/tester.md +0 -9
  336. package/template/.aioson/locales/es/agents/ux-ui.md +0 -212
  337. package/template/.aioson/locales/fr/agents/analyst.md +0 -225
  338. package/template/.aioson/locales/fr/agents/architect.md +0 -245
  339. package/template/.aioson/locales/fr/agents/dev.md +0 -370
  340. package/template/.aioson/locales/fr/agents/deyvin.md +0 -99
  341. package/template/.aioson/locales/fr/agents/discovery-design-doc.md +0 -21
  342. package/template/.aioson/locales/fr/agents/genome.md +0 -104
  343. package/template/.aioson/locales/fr/agents/neo.md +0 -50
  344. package/template/.aioson/locales/fr/agents/orache.md +0 -106
  345. package/template/.aioson/locales/fr/agents/orchestrator.md +0 -194
  346. package/template/.aioson/locales/fr/agents/pair.md +0 -7
  347. package/template/.aioson/locales/fr/agents/pm.md +0 -90
  348. package/template/.aioson/locales/fr/agents/product.md +0 -372
  349. package/template/.aioson/locales/fr/agents/profiler-enricher.md +0 -7
  350. package/template/.aioson/locales/fr/agents/profiler-forge.md +0 -7
  351. package/template/.aioson/locales/fr/agents/profiler-researcher.md +0 -7
  352. package/template/.aioson/locales/fr/agents/qa.md +0 -198
  353. package/template/.aioson/locales/fr/agents/setup.md +0 -405
  354. package/template/.aioson/locales/fr/agents/sheldon.md +0 -309
  355. package/template/.aioson/locales/fr/agents/squad.md +0 -532
  356. package/template/.aioson/locales/fr/agents/tester.md +0 -9
  357. package/template/.aioson/locales/fr/agents/ux-ui.md +0 -212
  358. package/template/.aioson/locales/pt-BR/agents/analyst.md +0 -319
  359. package/template/.aioson/locales/pt-BR/agents/architect.md +0 -284
  360. package/template/.aioson/locales/pt-BR/agents/dev.md +0 -483
  361. package/template/.aioson/locales/pt-BR/agents/deyvin.md +0 -184
  362. package/template/.aioson/locales/pt-BR/agents/discovery-design-doc.md +0 -198
  363. package/template/.aioson/locales/pt-BR/agents/genome.md +0 -297
  364. package/template/.aioson/locales/pt-BR/agents/neo.md +0 -208
  365. package/template/.aioson/locales/pt-BR/agents/orache.md +0 -137
  366. package/template/.aioson/locales/pt-BR/agents/orchestrator.md +0 -324
  367. package/template/.aioson/locales/pt-BR/agents/pair.md +0 -5
  368. package/template/.aioson/locales/pt-BR/agents/pm.md +0 -182
  369. package/template/.aioson/locales/pt-BR/agents/product.md +0 -466
  370. package/template/.aioson/locales/pt-BR/agents/profiler-enricher.md +0 -5
  371. package/template/.aioson/locales/pt-BR/agents/profiler-forge.md +0 -5
  372. package/template/.aioson/locales/pt-BR/agents/profiler-researcher.md +0 -5
  373. package/template/.aioson/locales/pt-BR/agents/qa.md +0 -300
  374. package/template/.aioson/locales/pt-BR/agents/setup.md +0 -533
  375. package/template/.aioson/locales/pt-BR/agents/sheldon.md +0 -323
  376. package/template/.aioson/locales/pt-BR/agents/squad.md +0 -1330
  377. package/template/.aioson/locales/pt-BR/agents/tester.md +0 -449
  378. package/template/.aioson/locales/pt-BR/agents/ux-ui.md +0 -669
  379. package/template/.aioson/skills/design-system/components/SKILL.md:Zone.Identifier +0 -0
  380. package/template/.aioson/skills/design-system/dashboards/SKILL.md:Zone.Identifier +0 -0
  381. package/template/.aioson/skills/design-system/foundations/SKILL.md:Zone.Identifier +0 -0
  382. package/template/.aioson/skills/design-system/motion/SKILL.md:Zone.Identifier +0 -0
  383. package/template/.aioson/skills/design-system/patterns/SKILL.md:Zone.Identifier +0 -0
@@ -7,36 +7,51 @@ module.exports = {
7
7
  usage: 'Usage:',
8
8
  help_item_line: ' {text}',
9
9
  help_init:
10
- 'aioson init <project-name> [--force] [--dry-run] [--all] [--lang=en|pt-BR|es|fr] [--tool=codex|claude|gemini|opencode] [--locale=en]',
10
+ 'aioson init <project-name> [--force] [--dry-run] [--all] [--lang=<bcp47-tag>] [--tool=codex|claude|gemini|opencode] [--locale=en]',
11
11
  help_install:
12
- 'aioson install [path] [--force] [--dry-run] [--lang=en|pt-BR|es|fr] [--tool=codex|claude|gemini|opencode] [--locale=en]',
12
+ 'aioson install [path] [--force] [--dry-run] [--lang=<bcp47-tag>] [--tool=codex|claude|gemini|opencode] [--locale=en]',
13
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]',
15
- help_update: 'aioson update [path] [--dry-run] [--lang=en|pt-BR|es|fr] [--locale=en]',
14
+ 'aioson setup [path] [--defaults] [--framework=<name>] [--lang=<bcp47-tag>] [--project-name=<name>] [--force] [--dry-run] [--tool=codex|claude|gemini|opencode] [--locale=en]',
15
+ help_update: 'aioson update [path] [--dry-run] [--lang=<bcp47-tag>] [--locale=en]',
16
16
  help_info: 'aioson info [path] [--json] [--locale=en]',
17
17
  help_doctor: 'aioson doctor [path] [--fix] [--dry-run] [--json] [--locale=en]',
18
18
  help_i18n_add: 'aioson i18n:add <locale> [--force] [--dry-run] [--locale=en]',
19
- help_agents: 'aioson agents [path] [--lang=en|pt-BR|es|fr] [--locale=en]',
19
+ help_agents: 'aioson agents [path] [--lang=<bcp47-tag>] [--locale=en]',
20
20
  help_agent_prompt:
21
- 'aioson agent:prompt <agent> [path] [--tool=codex|claude|gemini|opencode] [--lang=en|pt-BR|es|fr] [--locale=en]',
21
+ 'aioson agent:prompt <agent> [path] [--tool=codex|claude|gemini|opencode] [--lang=<bcp47-tag>] [--locale=en]',
22
+ help_agent_invoke:
23
+ 'aioson agent:invoke <agent> [path] [--tool=codex|claude|gemini|opencode] [--mode=framework_target|app_target] [--feature=<slug>] [--scope=<area>] [--lang=<bcp47-tag>] [--locale=en]',
22
24
  help_context_validate: 'aioson context:validate [path] [--json] [--locale=en]',
23
25
  help_context_pack:
24
26
  'aioson context:pack [path] [--agent=<agent>] [--goal=<text>] [--module=<module-or-folder>] [--max-files=8] [--json] [--locale=en]',
27
+ help_memory_status: 'aioson memory:status [path] [--json] [--locale=en]',
28
+ help_memory_summary: 'aioson memory:summary [path] [--last=5] [--json] [--locale=en]',
29
+ help_brain_query:
30
+ 'aioson brain:query [path] [--tags=<csv>] [--agent=<agent>] [--min-quality=4] [--format=compact|json|ids] [--json] [--locale=en]',
25
31
  help_setup_context:
26
- 'aioson setup:context [path] [--defaults] [--project-type=web_app|api|site|script|dapp] [--framework=<name>] [--backend=<name>] [--frontend=<name>] [--database=<name>] [--auth=<name>] [--uiux=<name>] [--language=en] [--web3-enabled=true|false] [--locale=en]',
27
- help_locale_apply: 'aioson locale:apply [path] [--lang=en|pt-BR|es|fr] [--dry-run] [--locale=en]',
28
- help_locale_diff: 'aioson locale:diff [agent] [--lang=en|pt-BR|es|fr] [--json] [--locale=en]',
32
+ 'aioson setup:context [path] [--defaults] [--project-type=web_app|api|site|script|dapp|desktop_app] [--framework=<name>] [--backend=<name>] [--frontend=<name>] [--database=<name>] [--auth=<name>] [--uiux=<name>] [--language=<bcp47-tag>] [--web3-enabled=true|false] [--locale=en]',
33
+ help_locale_apply: 'aioson locale:apply [path] [--lang=<bcp47-tag>] [--dry-run] [--locale=en]',
34
+ help_locale_diff: 'aioson locale:diff [agent] [--lang=<bcp47-tag>] [--json] [--locale=en]',
29
35
  help_test_agents: 'aioson test:agents [--json] [--locale=en]',
30
36
  help_test_smoke:
31
- 'aioson test:smoke [workspace-path] [--lang=en|pt-BR|es|fr] [--web3=ethereum|solana|cardano] [--profile=standard|mixed|parallel] [--keep] [--json] [--locale=en]',
37
+ 'aioson test:smoke [workspace-path] [--lang=<bcp47-tag>] [--web3=ethereum|solana|cardano] [--profile=standard|mixed|parallel] [--keep] [--json] [--locale=en]',
32
38
  help_test_package:
33
39
  'aioson test:package [source-path] [--keep] [--dry-run] [--json] [--locale=en]',
40
+ help_dossier_init:
41
+ 'aioson dossier:init [path] --slug=<feature-slug> [--classification=MICRO|SMALL|MEDIUM] [--json] [--locale=en]',
42
+ help_dossier_show:
43
+ 'aioson dossier:show [path] --slug=<feature-slug> [--json] [--locale=en]',
44
+ dossier_created: 'Dossier created at {path} (classification={classification}).',
45
+ dossier_already_exists: 'Dossier already exists at {path}. Aborting (atomic init, no --force).',
46
+ dossier_not_found: 'Dossier not found for slug "{slug}" (expected at {path}).',
34
47
  help_workflow_plan:
35
48
  'aioson workflow:plan [path] [--classification=MICRO|SMALL|MEDIUM] [--json] [--locale=en]',
36
49
  help_workflow_next:
37
- 'aioson workflow:next [path] [--complete[=<agent>]] [--agent=<agent>] [--skip=<agent>] [--status] [--tool=codex|claude|gemini|opencode] [--json] [--locale=en]',
50
+ 'aioson workflow:next [path] [--complete[=<agent>]] [--agent=<agent>] [--skip=<agent>] [--status] [--suggest] [--tool=codex|claude|gemini|opencode] [--json] [--locale=en]',
38
51
  help_workflow_status:
39
- 'aioson workflow:status [path] [--json] [--locale=en]',
52
+ 'aioson workflow:status [path] [--suggest] [--tool=codex|claude|gemini|opencode] [--json] [--locale=en]',
53
+ help_workflow_execute:
54
+ 'aioson workflow:execute [path] [--steps=<n>] [--dry-run] [--lane=<n>] [--json] [--locale=en]',
40
55
  help_parallel_init:
41
56
  'aioson parallel:init [path] [--workers=2..6] [--force] [--dry-run] [--json] [--locale=en]',
42
57
  help_parallel_doctor:
@@ -45,6 +60,10 @@ module.exports = {
45
60
  'aioson parallel:assign [path] [--source=auto|prd|architecture|discovery|<file>] [--workers=2..6] [--force] [--dry-run] [--json] [--locale=en]',
46
61
  help_parallel_status:
47
62
  'aioson parallel:status [path] [--json] [--locale=en]',
63
+ help_parallel_merge:
64
+ 'aioson parallel:merge [path] [--apply] [--json] [--locale=en]',
65
+ help_parallel_guard:
66
+ 'aioson parallel:guard [path] --lane=<n> --paths=<path[,path2]> [--json] [--locale=en]',
48
67
  help_mcp_init:
49
68
  'aioson mcp:init [path] [--tool=claude|codex|gemini|opencode] [--dry-run] [--json] [--locale=en]',
50
69
  help_mcp_doctor:
@@ -59,6 +78,10 @@ module.exports = {
59
78
  'aioson qa:scan [path] [--url=<app-url>] [--depth=3] [--max-pages=50] [--headed] [--html] [--json] [--locale=en]',
60
79
  help_qa_report:
61
80
  'aioson qa:report [path] [--html] [--json] [--locale=en]',
81
+ help_harness_init:
82
+ 'aioson harness:init [path] --slug=<slug> [--mode=BALANCED|URGENT|ECONOMICAL] [--locale=en]',
83
+ help_harness_validate:
84
+ 'aioson harness:validate [path] --slug=<slug> [--artifact=<path>] [--locale=en]',
62
85
  help_web_map:
63
86
  'aioson web:map [path] --url=<url> [--depth=<N>] [--max-pages=<N>] [--include-external] [--json] [--locale=en]',
64
87
  help_web_scrape:
@@ -105,6 +128,8 @@ module.exports = {
105
128
  'aioson squad:roi [path] [--sub=config|metric|report|export] [--squad=<slug>] [--key=<metric>] [--value=<N>]',
106
129
  help_squad_score:
107
130
  'aioson squad:score [path] --squad=<slug> [--locale=en]',
131
+ help_commit_prepare:
132
+ 'aioson commit:prepare [path] [--staged-only] [--agent-safe] [--mode=guarded|trusted|headless] [--json] [--locale=en]',
108
133
  help_learning:
109
134
  'aioson learning [path] [--sub=list|stats|promote] [--status=<status>] [--id=<learning-id>] [--locale=en]',
110
135
  help_runtime_init:
@@ -140,15 +165,17 @@ module.exports = {
140
165
  help_runtime_emit:
141
166
  'aioson runtime:emit [path] --agent=<name> [--type=<event>] [--summary=<text>] [--title=<text>] [--refs=<file[,file2]>] [--plan-step=<id>] [--meta=<json>] [--json] [--locale=en]',
142
167
  help_live_start:
143
- 'aioson live:start [path] --tool=codex|claude|gemini|opencode --agent=<name> [--tool-bin=<binary>] [--tool-args=<args>] [--title=<text>] [--goal=<text>] [--plan=<file>] [--session=<key>] [--message=<text>] [--attach] [--no-launch] [--json] [--locale=en]',
168
+ 'aioson live:start [path] --tool=codex|claude|gemini|opencode --agent=<name> [--tool-bin=<binary>] [--tool-args=<args>] [--title=<text>] [--goal=<text>] [--plan=<file>] [--session=<key>] [--message=<text>] [--attach] [--no-launch] [--tmux] [--json] [--locale=en]',
144
169
  help_live_status:
145
- 'aioson live:status [path] [--agent=<name>] [--limit=8] [--watch=2] [--json] [--locale=en]',
170
+ 'aioson live:status [path] [--agent=<name>] [--limit=8] [--watch=2] [--format=compact|tmux-bar] [--json] [--locale=en]',
146
171
  help_live_handoff:
147
172
  'aioson live:handoff [path] --agent=<name> --to=<name> [--reason=<text>] [--summary=<text>] [--message=<text>] [--json] [--locale=en]',
148
173
  help_live_close:
149
174
  'aioson live:close [path] [--agent=<name>] [--summary=<text>] [--message=<text>] [--status=completed|failed] [--json] [--locale=en]',
150
175
  help_live_list:
151
176
  'aioson live:list [path] [--json] [--locale=en]',
177
+ help_scaffold_complete:
178
+ 'aioson scaffold:complete [path] --slug=<slug> [--manifest=<path>] [--scaffold-path=<path>] [--session=<key>] [--agent=<name>] [--json] [--locale=en]',
152
179
  help_runtime_backup:
153
180
  'aioson runtime:backup [path] [--tables=tasks,runs,...] [--force] [--dry-run] [--json] [--locale=en]',
154
181
  help_runtime_restore:
@@ -169,6 +196,38 @@ module.exports = {
169
196
  'aioson cloud:publish:squad [path] --slug=<slug> --resource-version=<version> [--url=<publish-url>|--base-url=<site>] [--title=<text>] [--summary=<text>] [--compatibility-min=<version>] [--compatibility-max=<version>] [--linked-genome-version=<version>] [--dry-run] [--json] [--locale=en]',
170
197
  help_cloud_publish_genome:
171
198
  'aioson cloud:publish:genome [path] --slug=<slug> --resource-version=<version> [--url=<publish-url>|--base-url=<site>] [--title=<text>] [--summary=<text>] [--source-kind=LOCAL|AIOSLITE|IMPORTED|REMOTE_PROVIDER] [--dry-run] [--json] [--locale=en]',
199
+ help_auth_login:
200
+ 'aioson auth:login --token=<token> [--locale=en]',
201
+ help_auth_logout:
202
+ 'aioson auth:logout [--locale=en]',
203
+ help_auth_status:
204
+ 'aioson auth:status [--locale=en]',
205
+ help_workspace_init:
206
+ 'aioson workspace:init [path] [--name=<slug>] [--force] [--locale=en]',
207
+ help_workspace_status:
208
+ 'aioson workspace:status [path] [--locale=en]',
209
+ help_workspace_open:
210
+ 'aioson workspace:open [path] [--locale=en]',
211
+ help_genome_publish:
212
+ 'aioson genome:publish [path] --slug=<slug> [--private] [--paid] [--dry-run] [--locale=en]',
213
+ help_genome_install:
214
+ 'aioson genome:install <slug-or-code> [path] [--force] [--locale=en]',
215
+ help_genome_list:
216
+ 'aioson genome:list [path] [--locale=en]',
217
+ help_genome_remove:
218
+ 'aioson genome:remove --slug=<slug> [path] [--force] [--locale=en]',
219
+ help_genome_install_store:
220
+ 'aioson genome:install:store [path] <code-or-slug> [--slug=<slug>] [--force] [--locale=en]',
221
+ help_skill_publish:
222
+ 'aioson skill:publish [path] --slug=<slug> [--private] [--paid] [--dry-run] [--locale=en]',
223
+ help_squad_list:
224
+ 'aioson squad:list [path] [--remote] [--locale=en]',
225
+ help_squad_publish:
226
+ 'aioson squad:publish [path] --slug=<slug> [--bundle-skills=a,b] [--bundle-genomes=a,b] [--version=<semver>] [--private] [--paid] [--dry-run] [--locale=en]',
227
+ help_squad_install:
228
+ 'aioson squad:install [path] <code-or-slug> [--email=<email>] [--force] [--locale=en]',
229
+ help_squad_grant:
230
+ 'aioson squad:grant <code> <email> [--locale=en]',
172
231
  dashboard_moved:
173
232
  'The `{command}` CLI flow was removed. The AIOSON dashboard is now installed separately. Open the dashboard app on your computer, create or add a project, and select the folder that already contains `.aioson/`.',
174
233
  dashboard_moved_line: '{message}\n',
@@ -190,7 +249,7 @@ module.exports = {
190
249
  },
191
250
  init: {
192
251
  usage_error:
193
- 'Usage: aioson init <project-name> [--force] [--dry-run] [--lang=en|pt-BR|es|fr] [--tool=codex|claude|gemini|opencode] [--locale=en]',
252
+ 'Usage: aioson init <project-name> [--force] [--dry-run] [--lang=<bcp47-tag>] [--tool=codex|claude|gemini|opencode] [--locale=en]',
194
253
  non_empty_dir: 'Directory is not empty: {targetDir}. Use --force to continue.',
195
254
  created_at: 'Project created at: {targetDir}',
196
255
  files_copied: 'Files copied: {count}',
@@ -265,9 +324,11 @@ module.exports = {
265
324
  context_classification_value: '`classification` must be one of {expected}',
266
325
  context_classification_value_hint: 'Use MICRO, SMALL, or MEDIUM exactly.',
267
326
  context_project_type_value: '`project_type` must be one of {expected}',
268
- context_project_type_value_hint: 'Use web_app, api, site, script, or dapp exactly.',
327
+ context_project_type_value_hint: 'Use web_app, api, site, script, dapp, or desktop_app exactly.',
269
328
  context_profile_value: '`profile` must be one of {expected}',
270
329
  context_profile_value_hint: 'Use developer, beginner, or team exactly.',
330
+ context_interaction_language_format: '`interaction_language` is not a valid BCP-47 tag',
331
+ context_interaction_language_format_hint: 'Use values like en, en-US, pt-BR.',
271
332
  context_conversation_language_format: '`conversation_language` is not a valid BCP-47 tag',
272
333
  context_conversation_language_format_hint: 'Use values like en, en-US, pt-BR.',
273
334
  node_version: 'Node.js >= 18 (current: {version})',
@@ -282,7 +343,7 @@ module.exports = {
282
343
  'Ensure .gemini/GEMINI.md references .gemini/commands/ and .aioson/agents/.',
283
344
  gateway_gemini_command_pointer: 'Gemini command file maps to shared agent: {file}',
284
345
  gateway_gemini_command_pointer_hint:
285
- 'Ensure {file} includes instruction_file = ".aioson/agents/{agent}.md".',
346
+ 'Ensure {file} includes @{ .aioson/agents/{agent}.md } in the prompt field.',
286
347
  gateway_opencode_pointer: 'OpenCode gateway references shared AIOSON files',
287
348
  gateway_opencode_pointer_hint:
288
349
  'Ensure OPENCODE.md references .aioson/config.md and .aioson/agents/.',
@@ -328,6 +389,12 @@ module.exports = {
328
389
  prompt_usage_error:
329
390
  'Usage: aioson agent:prompt <agent> [path] [--tool=codex|claude|gemini|opencode] [--lang=en|pt-BR|es|fr] [--locale=en]',
330
391
  prompt_unknown_agent: 'Unknown agent: {agent}',
392
+ prompt_invalid_target_mode:
393
+ 'Invalid pentester target mode: {mode}. Expected framework_target or app_target.',
394
+ prompt_missing_feature_for_app_target:
395
+ 'Pentester app_target requires --feature=<slug> (or --slug=<slug>).',
396
+ prompt_missing_scope_for_app_target:
397
+ 'Pentester app_target requires --scope=<area>.',
331
398
  prompt_title: 'Prompt for agent "{agent}" on tool "{tool}" (locale: {locale}):'
332
399
  },
333
400
  context_validate: {
@@ -371,7 +438,7 @@ module.exports = {
371
438
  setup_context: {
372
439
  detected: 'Detected framework: {framework} (installed={installed})',
373
440
  q_project_name: 'Project name',
374
- q_project_type: 'Project type (web_app|api|site|script|dapp)',
441
+ q_project_type: 'Project type (web_app|api|site|script|dapp|desktop_app)',
375
442
  q_profile: 'Profile: [1] developer [2] beginner [3] team',
376
443
  q_use_detected_framework: 'Use detected framework? (true/false)',
377
444
  q_framework: 'Framework',
@@ -443,11 +510,11 @@ module.exports = {
443
510
  'Monorepo detected: Web3 and application framework coexist. Confirm primary framework with user and document structure in Notes.',
444
511
  written: 'Context file written: {path}',
445
512
  classification_result: 'Classification: {classification} (score={score}/6)',
446
- locale_applied: 'Localized agent pack applied: {locale} ({count} files)'
513
+ locale_applied: 'Interaction language synchronized: {locale} ({count} agent prompts restored)'
447
514
  },
448
515
  locale_apply: {
449
- applied: 'Locale pack applied: {locale}',
450
- dry_run_applied: '[dry-run] Locale pack would be applied: {locale}',
516
+ applied: 'Interaction language synchronized: {locale}',
517
+ dry_run_applied: '[dry-run] Interaction language would be synchronized: {locale}',
451
518
  copied_count: 'Files copied: {count}',
452
519
  missing_count: 'Missing locale files: {count}',
453
520
  copy_line: ' File: {source} -> {target}'
@@ -538,6 +605,9 @@ module.exports = {
538
605
  done: 'Workflow is complete. No next agent remains.',
539
606
  state_file: 'State file: {path}'
540
607
  },
608
+ workflow_heal: {
609
+ title: '🩹 Self-healing activated for {stage} (attempt {count}/3):'
610
+ },
541
611
  parallel_init: {
542
612
  context_missing: 'Context file not found: {path}. Run setup:context first.',
543
613
  context_invalid: 'Context file is invalid or not parseable: {path}.',
@@ -585,6 +655,39 @@ module.exports = {
585
655
  check_parallel_shared_ok: 'shared-decisions.md is present.',
586
656
  check_parallel_shared_missing: 'shared-decisions.md is missing.',
587
657
  check_parallel_shared_hint: 'Run parallel:doctor --fix to restore baseline files.',
658
+ check_parallel_manifest_ok: 'workspace.manifest.json is present.',
659
+ check_parallel_manifest_missing: 'workspace.manifest.json is missing.',
660
+ check_parallel_manifest_hint: 'Run parallel:doctor --fix to restore the workspace manifest.',
661
+ check_parallel_ownership_ok: 'ownership-map.json is present.',
662
+ check_parallel_ownership_missing: 'ownership-map.json is missing.',
663
+ check_parallel_ownership_hint: 'Run parallel:doctor --fix to restore the ownership map.',
664
+ check_parallel_merge_ok: 'merge-plan.json is present.',
665
+ check_parallel_merge_missing: 'merge-plan.json is missing.',
666
+ check_parallel_merge_hint: 'Run parallel:doctor --fix to restore the merge plan.',
667
+ check_machine_sync_ok: 'Machine-readable parallel artifacts are in sync with lane status files.',
668
+ check_machine_sync_stale: 'Machine-readable parallel artifacts are stale: {files}.',
669
+ check_machine_sync_hint: 'Run parallel:doctor --fix to rebuild stale artifacts.',
670
+ check_ownership_conflicts_ok: 'No ownership conflicts were detected across lane scopes.',
671
+ check_ownership_conflicts_found: 'Detected {count} ownership conflict(s) across lane scopes.',
672
+ check_ownership_conflicts_hint: 'Update scope ownership so each scope key belongs to exactly one lane.',
673
+ check_write_scope_present_ok: 'All lanes with assigned scope also declare write_paths.',
674
+ check_write_scope_present_missing: '{count} lane(s) with assigned scope still have no write_paths.',
675
+ check_write_scope_present_hint: 'Declare project-relative file paths or directory prefixes (for example src/auth/**) in each lane Ownership block.',
676
+ check_write_scope_valid_ok: 'All declared write_paths use supported patterns.',
677
+ check_write_scope_valid_invalid: 'Detected {count} invalid write_paths pattern(s).',
678
+ check_write_scope_valid_hint: 'Use exact project-relative paths or recursive directory patterns ending with /**.',
679
+ check_write_scope_conflicts_ok: 'No write_paths overlaps were detected across lanes.',
680
+ check_write_scope_conflicts_found: 'Detected {count} write_paths overlap(s) across lanes.',
681
+ check_write_scope_conflicts_hint: 'Split file ownership so each path pattern belongs to exactly one lane.',
682
+ check_dependencies_valid_ok: 'All declared lane dependencies reference valid lanes.',
683
+ check_dependencies_valid_invalid: 'Detected {count} invalid lane dependency reference(s).',
684
+ check_dependencies_valid_hint: 'Use lane-N references only for existing lanes, or move shared coordination to shared-decisions.',
685
+ check_dependencies_blocked_ok: 'No lane is currently blocked by an incomplete dependency.',
686
+ check_dependencies_blocked_found: 'Detected {count} lane dependency blocker(s) based on current lane statuses.',
687
+ check_dependencies_blocked_hint: 'Complete upstream lanes or move dependent lanes back to pending before execution.',
688
+ check_merge_order_ok: 'Merge order respects declared lane dependencies.',
689
+ check_merge_order_invalid: 'Detected {count} merge-order violation(s) against declared lane dependencies.',
690
+ check_merge_order_hint: 'Adjust merge ranks or dependencies so upstream lanes merge first.',
588
691
  check_lanes_present_ok: 'Detected {count} lane file(s).',
589
692
  check_lanes_present_missing: 'No agent lane status files found.',
590
693
  check_lanes_present_hint: 'Run parallel:init or parallel:doctor --fix.',
@@ -624,14 +727,43 @@ module.exports = {
624
727
  status_pending: 'pending',
625
728
  status_in_progress: 'in_progress',
626
729
  status_completed: 'completed',
730
+ status_merged: 'merged',
627
731
  status_blocked: 'blocked',
628
732
  status_other: 'other',
629
733
  scopes_count: 'Total scope items: {count}',
630
734
  deliverables_progress: 'Deliverables: {completed}/{total} completed',
631
735
  blockers_count: 'Open blockers: {count}',
632
736
  shared_decisions: 'Shared decision log entries: {count}',
737
+ ownership_conflicts: 'Ownership conflicts: {count}',
738
+ write_scope_summary:
739
+ 'Write scope: lanes_with_paths={lanes}, paths={paths}, uncovered_assigned_lanes={uncovered}, conflicts={conflicts}, invalid={invalid}',
740
+ dependencies_summary: 'Dependencies: declared={declared}, invalid={invalid}, blocked={blocked}, order_violations={orderViolations}',
741
+ sync_summary: 'Machine file drift: {count}',
742
+ sync_stale_line: '- stale: {file}',
633
743
  lane_line: '- lane {lane}: status={status}, scope={scope}, blockers={blockers}'
634
744
  },
745
+ parallel_merge: {
746
+ parallel_missing: 'Parallel directory not found: {path}. Run parallel:init first.',
747
+ no_lanes: 'No lane status files were found in .aioson/context/parallel.',
748
+ ready: 'Deterministic merge is ready for {count} lane(s).',
749
+ applied: 'Deterministic merge applied to {count} lane(s).',
750
+ blocked: 'Deterministic merge is blocked for {count} lane(s).',
751
+ order: 'Merge order: {order}',
752
+ structural_summary:
753
+ 'Structural checks: stale={stale}, ownership_conflicts={conflicts}, write_scope_conflicts={writeConflicts}, invalid_write_paths={invalidWritePaths}, invalid_dependencies={invalid}, blocked_dependencies={blocked}, order_violations={orderViolations}',
754
+ lane_line: '- lane {lane}: action={action}, status={status}'
755
+ },
756
+ parallel_guard: {
757
+ invalid_lane: 'Invalid --lane value. Use a positive integer.',
758
+ paths_required: 'Missing --paths value. Provide one or more comma-separated project-relative paths.',
759
+ parallel_missing: 'Parallel directory not found: {path}. Run parallel:init first.',
760
+ no_lanes: 'No lane status files were found in .aioson/context/parallel.',
761
+ lane_missing: 'Lane {lane} does not exist in the current parallel workspace.',
762
+ allowed: 'Write-scope guard passed for lane {lane} ({count} path(s)).',
763
+ blocked: 'Write-scope guard blocked lane {lane} for {count} path(s).',
764
+ write_scope_summary: 'Write scope summary: paths={paths}, conflicts={conflicts}, invalid={invalid}',
765
+ path_line: '- path {path}: status={status}, owners={owners}'
766
+ },
635
767
  mcp_init: {
636
768
  context_missing:
637
769
  'Context file not found. Generating baseline MCP plan with generic assumptions.',
@@ -643,7 +775,6 @@ module.exports = {
643
775
  reason_web_search: 'Useful for package vetting and release-note verification.',
644
776
  reason_chain_rpc_disabled: 'Web3 is disabled for this project.',
645
777
  reason_chain_rpc_enabled: 'dApp context detected; chain RPC access is required.',
646
- reason_makopy: 'Optional content pipeline integration.',
647
778
  note_workspace_local: 'This is a workspace-local preset generated by AIOSON.',
648
779
  note_replace_placeholders: 'Replace placeholder commands with the MCP servers you actually use.',
649
780
  note_keep_secrets_env: 'Keep secrets in environment variables, never inline tokens.',
@@ -775,6 +906,14 @@ module.exports = {
775
906
  not_found: 'No QA report found. Run: aioson qa:run or aioson qa:scan',
776
907
  html_report_written: 'HTML report written: {path}'
777
908
  },
909
+ harness: {
910
+ init_success: 'Harness initialized for feature: {slug}',
911
+ init_exists: 'Harness already initialized in {path}',
912
+ contract_not_found: 'Contract not found for slug: {slug}',
913
+ validating: 'Validating harness for {slug}...',
914
+ blocked: 'Execution paused: {reason}',
915
+ init_dry_run: '[dry-run] Would initialize harness for {slug}'
916
+ },
778
917
  web_map: {
779
918
  url_missing: 'Missing required option: --url=<url>.',
780
919
  starting: 'Mapping site: {url}',
@@ -857,6 +996,10 @@ module.exports = {
857
996
  handoff_recorded: 'Live handoff recorded: {from} -> {to} | {session} ({dbPath})',
858
997
  session_closed: 'Live session closed: {agent} | {session} ({dbPath})',
859
998
  process_dead_warning: 'Process is dead while the live session is still open. Close it manually with `aioson live:close . --status=failed`.',
999
+ tmux_not_found: 'tmux not found. Install tmux to use --tmux, or remove the flag to continue without terminal split.',
1000
+ tmux_starting: 'Starting tmux session: agent {agent} | tool {tool} ...',
1001
+ tmux_recreate: 'Previous tmux session ended. Recreating live session for {agent} ({session})...',
1002
+ tmux_reattach: 'Tmux session still active. Reattaching to {agent} ({session})...',
860
1003
  list_title: 'Live sessions ({count}):',
861
1004
  list_empty: 'No live sessions found.',
862
1005
  list_line: '- {session} | {agent} | {tool} | {phase} | {updatedAt}'
@@ -1135,5 +1278,157 @@ module.exports = {
1135
1278
  not_found: 'Learning not found: {id}',
1136
1279
  promote_usage: 'Usage: aioson learning [path] --sub=promote --id=<learning-id> [--to=<rule-path>]',
1137
1280
  promoted: 'Learning {id} promoted to rule at {path}'
1281
+ },
1282
+
1283
+ auth: {
1284
+ login_no_token: 'No token provided. Get yours at: {url}',
1285
+ login_hint: 'Run: aioson auth:login',
1286
+ login_hint_token: 'Or get a token manually at: {url}',
1287
+ login_verifying: 'Verifying token...',
1288
+ login_ok: '✓ Logged in as {username}. Token saved to {path}.',
1289
+ login_saved: '✓ Token saved to {path}. (Could not verify — API may be offline.)',
1290
+ logout_ok: 'Logged out. Token removed.',
1291
+ status_not_authenticated: 'Not authenticated.',
1292
+ status_checking: 'Checking token...',
1293
+ status_ok: 'Authenticated as {username}.',
1294
+ status_token_offline: 'Token saved (last known user: {username}). API offline or unreachable.',
1295
+ // Browser flow
1296
+ browser_opening: 'Opening browser...',
1297
+ browser_waiting: 'Waiting for browser authentication... (Ctrl+C to cancel)',
1298
+ browser_timeout: 'Timed out. Please try again.',
1299
+ browser_state_mismatch: 'Security check failed: invalid state.',
1300
+ browser_no_token: 'No token received from browser.',
1301
+ browser_failed: 'Browser login failed: {error}',
1302
+ browser_server_error: 'Failed to start local callback server',
1303
+ // Paste flow (WSL2, SSH, headless)
1304
+ paste_open_browser: 'Open the link below in your browser:',
1305
+ paste_instruction: 'After logging in, the page will show a token. Copy it and paste it here.',
1306
+ paste_token_prompt: 'Paste the token here:',
1307
+ paste_no_token: 'No token provided.',
1308
+ },
1309
+
1310
+ workspace: {
1311
+ registering: 'Registering workspace on aioson.com...',
1312
+ init_ok: 'Workspace "{slug}" linked.\n Local: {path}\n Online: {url}',
1313
+ already_linked: 'Workspace already linked: {slug}\n Online: {url}',
1314
+ not_linked: 'No workspace linked to this project.',
1315
+ init_hint: 'Run: aioson workspace:init',
1316
+ status_slug: 'Workspace: {slug}',
1317
+ status_id: 'ID: {id}',
1318
+ status_url: 'URL: {url}',
1319
+ status_created: 'Created: {date}',
1320
+ open_url: 'Open in browser: {url}'
1321
+ },
1322
+
1323
+ store: {
1324
+ error_not_authenticated: 'Not authenticated. Run: aioson auth:login',
1325
+ error_missing_slug: 'Missing --slug.',
1326
+ error_missing_code_or_slug: 'Provide a slug (--slug=X) or an install code.',
1327
+ error_invalid_response: 'Invalid response from aioson.com.',
1328
+ error_genome_not_found: 'Genome "{slug}" not found at {path}.',
1329
+ error_skill_not_found: 'Skill "{slug}" not found in .aioson/skills/ or .aioson/installed-skills/.',
1330
+ error_skill_missing_skillmd: 'Skill "{slug}" has no SKILL.md.',
1331
+ error_squad_not_found: 'Squad "{slug}" not found at {path}.',
1332
+
1333
+ publish_dry_run: '[dry-run] Would publish {type} "{slug}" (visibility: {visibility}).',
1334
+ publish_genome_validating: 'Validating genome...',
1335
+ publish_genome_sending: 'Sending to aioson.com...',
1336
+ publish_genome_done: 'Published: aioson.com/store/genomes/{slug}\n Install: aioson genome:install --slug={slug}',
1337
+ publish_skill_collecting: 'Collecting skill files...',
1338
+ publish_skill_files: ' Files: {count}',
1339
+ publish_skill_sending: 'Sending {count} file(s) to aioson.com...',
1340
+ publish_skill_done: 'Published: aioson.com/store/skills/{slug}\n Install: aioson skill:install --slug={slug}',
1341
+ publish_squad_analyzing_agents: 'Analyzing agents...',
1342
+ publish_squad_agents_found: ' Agents: {count}',
1343
+ publish_squad_analyzing_deps: 'Analyzing dependencies...',
1344
+ publish_squad_bundling_skill: ' Bundling skill: {slug}',
1345
+ publish_squad_skill_missing: ' Skill not found (skipped): {slug}',
1346
+ publish_squad_bundling_genome: ' Bundling genome: {slug}',
1347
+ publish_squad_genome_missing: ' Genome not found (skipped): {slug}',
1348
+ publish_squad_sending: 'Sending to aioson.com...',
1349
+ publish_squad_done: 'Published: aioson.com/store/squads/{slug}\n Install: aioson squad:install --slug={slug}',
1350
+ publish_squad_summary: ' Agents: {agents} | Skills bundled: {skills} | Genomes bundled: {genomes}',
1351
+
1352
+ install_genome_fetching: 'Fetching genome "{ref}" from aioson.com...',
1353
+ install_genome_done: 'Genome "{slug}" installed at {path}.',
1354
+ install_backing_up: ' Backup saved: {path}',
1355
+ install_skill_fetching: 'Fetching skill "{ref}" from aioson.com...',
1356
+ install_skill_done: 'Skill "{slug}" installed at {path}.',
1357
+ install_squad_fetching: 'Fetching squad "{ref}" from aioson.com...',
1358
+ install_squad_writing: 'Installing files...',
1359
+ install_squad_dep_skip: ' {type} "{slug}" already installed — skipping (use --force to replace).',
1360
+ install_squad_done: 'Squad "{slug}" installed at {path}.',
1361
+
1362
+ list_genome_empty: 'No genomes installed in this project.',
1363
+ list_genome_header: '{count} genome(s) installed:',
1364
+ list_genome_item: ' {slug}{version}',
1365
+ remove_genome_done: 'Genome "{slug}" removed.',
1366
+ list_remote_fetching: 'Fetching {type} from aioson.com...',
1367
+ list_remote_empty: 'No {type} published yet.',
1368
+ list_remote_header: '{count} {type} published:',
1369
+ list_remote_item: ' {slug} [{visibility}] {name}',
1370
+ list_squad_empty: 'No squads in this project.',
1371
+ list_squad_header: '{count} squad(s):',
1372
+ list_squad_item: ' {slug} [{visibility}]',
1373
+
1374
+ grant_error_missing_code: 'Missing install code. Usage: aioson squad:grant <code> <email>',
1375
+ grant_error_missing_email: 'Missing email. Usage: aioson squad:grant <code> <email>',
1376
+ grant_sending: 'Granting access to {email} for code {code}...',
1377
+ grant_ok: '{email} can now install using code {code}.',
1378
+
1379
+ // Security scan — publish side
1380
+ publish_scanning: 'Running security scan...',
1381
+ publish_scan_ok: 'Security scan passed. Package hash: {hash}...',
1382
+ error_scan_failed: 'Publish blocked: security scan found errors. Fix them or contact support.',
1383
+ error_scan_warnings: 'Publish blocked: {count} suspicious pattern(s) detected. Review the warnings above. Use --force to override if you are sure the package is safe.',
1384
+
1385
+ // Security scan — install side
1386
+ install_scanning: 'Scanning package integrity...',
1387
+ error_install_scan_failed: 'Install blocked: package "{slug}" failed security scan. It may have been tampered with.',
1388
+ error_hash_mismatch: 'Install blocked: hash mismatch for "{slug}". The package may have been altered in transit.',
1389
+
1390
+ // Install preview
1391
+ install_preview_header: 'Package: {slug} v{version} by {publisher}',
1392
+ install_preview_trusted: ' Status: Trusted Publisher',
1393
+ install_preview_unverified: ' Status: Unverified publisher — review files before use',
1394
+ install_preview_downloads: ' Downloads: {count}',
1395
+ install_preview_rating: ' Rating: {rating}',
1396
+ install_preview_hash: ' Hash: {hash}...',
1397
+ install_inspect_files: 'Files in this package ({count} total):',
1398
+ install_inspect_hint: 'Run without --inspect to install.',
1399
+ install_unverified_hint: ' Tip: Run with --inspect to review files before installing, or --force to suppress this warning.'
1400
+ },
1401
+
1402
+ system: {
1403
+ error_no_manifest: 'system.json not found at {path}. Create a system.json in the root of your system project.',
1404
+ error_invalid_manifest: 'Invalid system.json — check that it is valid JSON.',
1405
+ error_manifest_missing_slug: 'system.json must include the "slug" field.',
1406
+ error_manifest_missing_version: 'system.json must include the "version" field.',
1407
+ error_manifest_missing_name: 'system.json must include the "name" field.',
1408
+ error_missing_package_json: 'package.json not found. A system must be a valid Node.js project.',
1409
+
1410
+ package_reading_manifest: 'Reading system.json...',
1411
+ package_manifest_ok: 'System: {name} ({slug} v{version})',
1412
+ package_collecting_files: 'Collecting source files...',
1413
+ package_files_found: ' {count} files ({kb} KB)',
1414
+ package_dry_run: '[dry-run] Would package {slug} v{version} — no files written.',
1415
+ package_saved: 'Package saved at: {path}',
1416
+
1417
+ publish_reading_manifest: 'Reading system.json...',
1418
+ publish_dry_run: '[dry-run] Would publish system "{slug}" v{version} (visibility: {visibility}).',
1419
+ publish_sending: 'Sending to aioson.com...',
1420
+ publish_done: 'Published: aioson.com/store/systems/{slug}\n Install in aioson-play using slug: {slug}',
1421
+ publish_summary: ' Files: {files} ({kb} KB)',
1422
+
1423
+ list_remote_empty: 'No systems published yet.',
1424
+ list_remote_header: '{count} system(s) published:',
1425
+ list_remote_item: ' {slug} v{version} [{visibility}] {name}',
1426
+ list_local_empty: 'No systems cached in this project.',
1427
+ list_local_header: '{count} system(s) cached:',
1428
+ list_local_item: ' {slug}',
1429
+
1430
+ install_fetching: 'Fetching system "{ref}" from aioson.com...',
1431
+ install_writing: 'Writing files...',
1432
+ install_done: 'System "{slug}" installed at {path}.'
1138
1433
  }
1139
1434
  };