@jaimevalasek/aioson 1.5.1 → 1.7.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 (341) hide show
  1. package/CHANGELOG.md +49 -0
  2. package/README.md +729 -226
  3. package/docs/design-previews/aurora-command-ui-website.html +884 -0
  4. package/docs/design-previews/aurora-command-ui.html +682 -0
  5. package/docs/design-previews/bold-editorial-ui-website.html +658 -0
  6. package/docs/design-previews/bold-editorial-ui.html +717 -0
  7. package/docs/design-previews/clean-saas-ui-website.html +1202 -0
  8. package/docs/design-previews/clean-saas-ui.html +549 -0
  9. package/docs/design-previews/cognitive-core-ui-website.html +1009 -0
  10. package/docs/design-previews/cognitive-core-ui.html +463 -0
  11. package/docs/design-previews/glassmorphism-ui-website.html +572 -0
  12. package/docs/design-previews/glassmorphism-ui.html +886 -0
  13. package/docs/design-previews/index.html +699 -0
  14. package/docs/design-previews/interface-design-website.html +1187 -0
  15. package/docs/design-previews/interface-design.html +513 -0
  16. package/docs/design-previews/neo-brutalist-ui-website.html +621 -0
  17. package/docs/design-previews/neo-brutalist-ui.html +797 -0
  18. package/docs/design-previews/premium-command-center-ui-website.html +1217 -0
  19. package/docs/design-previews/premium-command-center-ui.html +552 -0
  20. package/docs/design-previews/pt.squarespace.com-homepage.html +889 -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/integrations/sdlc-genius-boundary.md +76 -0
  25. package/docs/integrations/sdlc-genius-eval-matrix.md +75 -0
  26. package/docs/integrations/sdlc-genius-install-checklist.md +93 -0
  27. package/docs/integrations/sdlc-genius-review-samples.md +86 -0
  28. package/docs/pt/README.md +10 -0
  29. package/docs/pt/agent-sharding.md +132 -0
  30. package/docs/pt/agentes.md +9 -2
  31. package/docs/pt/busca-de-contexto.md +129 -0
  32. package/docs/pt/cache-de-contexto.md +156 -0
  33. package/docs/pt/comandos-cli.md +915 -1
  34. package/docs/pt/design-hybrid-forge.md +356 -0
  35. package/docs/pt/devlog-pipeline.md +270 -0
  36. package/docs/pt/fluxo-artefatos.md +178 -0
  37. package/docs/pt/hooks-session-guard.md +454 -0
  38. package/docs/pt/inicio-rapido.md +54 -3
  39. package/docs/pt/inteligencia-adaptativa.md +324 -0
  40. package/docs/pt/monitor-de-contexto.md +158 -0
  41. package/docs/pt/recuperacao-de-sessao.md +125 -0
  42. package/docs/pt/sandbox.md +125 -0
  43. package/docs/pt/sdd-automation-scripts.md +557 -0
  44. package/docs/pt/site-forge.md +309 -0
  45. package/docs/pt/skills.md +98 -6
  46. package/docs/pt/spec-learnings-pipeline.md +265 -0
  47. package/package.json +1 -1
  48. package/src/a2a/client.js +165 -0
  49. package/src/a2a/server.js +223 -0
  50. package/src/agent-loader.js +280 -0
  51. package/src/cli.js +329 -1
  52. package/src/commands/agent-audit.js +397 -0
  53. package/src/commands/agent-export-skill.js +229 -0
  54. package/src/commands/agent-loader.js +85 -0
  55. package/src/commands/artifact-validate.js +189 -0
  56. package/src/commands/brief-gen.js +405 -0
  57. package/src/commands/brief-validate.js +65 -0
  58. package/src/commands/classify.js +256 -0
  59. package/src/commands/context-cache.js +90 -0
  60. package/src/commands/context-compact.js +49 -0
  61. package/src/commands/context-health.js +175 -0
  62. package/src/commands/context-monitor.js +163 -0
  63. package/src/commands/context-search.js +66 -0
  64. package/src/commands/context-trim.js +177 -0
  65. package/src/commands/design-hybrid-options.js +385 -0
  66. package/src/commands/detect-test-runner.js +55 -0
  67. package/src/commands/devlog-export-brains.js +27 -0
  68. package/src/commands/devlog-process.js +292 -0
  69. package/src/commands/devlog-watch.js +131 -0
  70. package/src/commands/feature-close.js +165 -0
  71. package/src/commands/gate-check.js +228 -0
  72. package/src/commands/health.js +214 -0
  73. package/src/commands/hooks-emit.js +253 -0
  74. package/src/commands/hooks-install.js +347 -0
  75. package/src/commands/init.js +54 -13
  76. package/src/commands/install.js +52 -13
  77. package/src/commands/learning-auto-promote.js +195 -0
  78. package/src/commands/learning-evolve.js +364 -0
  79. package/src/commands/learning-export.js +103 -0
  80. package/src/commands/learning-rollback.js +164 -0
  81. package/src/commands/live.js +59 -1
  82. package/src/commands/pattern-detect.js +33 -0
  83. package/src/commands/preflight-context.js +30 -0
  84. package/src/commands/preflight.js +208 -0
  85. package/src/commands/pulse-update.js +130 -0
  86. package/src/commands/recovery.js +43 -0
  87. package/src/commands/runner-daemon.js +274 -0
  88. package/src/commands/runner-plan.js +70 -0
  89. package/src/commands/runner-queue-from-plan.js +166 -0
  90. package/src/commands/runner-queue.js +189 -0
  91. package/src/commands/runner-run.js +129 -0
  92. package/src/commands/runtime.js +47 -1
  93. package/src/commands/sandbox.js +37 -0
  94. package/src/commands/self-implement-loop.js +256 -0
  95. package/src/commands/session-guard.js +218 -0
  96. package/src/commands/setup-context.js +22 -2
  97. package/src/commands/setup.js +178 -0
  98. package/src/commands/sizing.js +165 -0
  99. package/src/commands/skill.js +144 -32
  100. package/src/commands/spec-checkpoint.js +177 -0
  101. package/src/commands/spec-status.js +79 -0
  102. package/src/commands/spec-sync.js +190 -0
  103. package/src/commands/spec-tasks.js +288 -0
  104. package/src/commands/squad-autorun.js +1220 -0
  105. package/src/commands/squad-bus.js +217 -0
  106. package/src/commands/squad-card.js +149 -0
  107. package/src/commands/squad-daemon.js +134 -0
  108. package/src/commands/squad-dependency-graph.js +164 -0
  109. package/src/commands/squad-review.js +106 -0
  110. package/src/commands/squad-scaffold.js +55 -0
  111. package/src/commands/squad-tool-register.js +157 -0
  112. package/src/commands/state-save.js +122 -0
  113. package/src/commands/tool-registry-cmd.js +232 -0
  114. package/src/commands/update.js +9 -0
  115. package/src/commands/verify-gate.js +572 -0
  116. package/src/commands/workflow-execute.js +241 -0
  117. package/src/constants.js +18 -0
  118. package/src/context-cache.js +159 -0
  119. package/src/context-search.js +326 -0
  120. package/src/design-variation-catalog.js +503 -0
  121. package/src/i18n/messages/en.js +32 -2
  122. package/src/i18n/messages/es.js +30 -2
  123. package/src/i18n/messages/fr.js +30 -2
  124. package/src/i18n/messages/pt-BR.js +32 -2
  125. package/src/install-animation.js +260 -0
  126. package/src/install-profile.js +143 -0
  127. package/src/install-wizard.js +475 -0
  128. package/src/installer.js +44 -10
  129. package/src/lib/health-check.js +158 -0
  130. package/src/lib/hook-protocol.js +76 -0
  131. package/src/mcp/apps/squad-dashboard/app.js +163 -0
  132. package/src/mcp/apps/squad-dashboard/index.html +261 -0
  133. package/src/mcp/apps/squad-dashboard/mcp-manifest.json +23 -0
  134. package/src/mcp/resources/squad-state.js +130 -0
  135. package/src/parser.js +7 -1
  136. package/src/preflight-engine.js +443 -0
  137. package/src/recovery-context-session.js +154 -0
  138. package/src/runner/cascade.js +97 -0
  139. package/src/runner/cli-launcher.js +109 -0
  140. package/src/runner/plan-importer.js +63 -0
  141. package/src/runner/queue-store.js +159 -0
  142. package/src/runtime-store.js +158 -4
  143. package/src/sandbox.js +177 -0
  144. package/src/squad/agent-teams-adapter.js +264 -0
  145. package/src/squad/brief-validator.js +350 -0
  146. package/src/squad/bus-bridge.js +140 -0
  147. package/src/squad/context-compactor.js +265 -0
  148. package/src/squad/cross-ai-synthesizer.js +250 -0
  149. package/src/squad/hooks-generator.js +196 -0
  150. package/src/squad/inter-squad-events.js +175 -0
  151. package/src/squad/intra-bus.js +345 -0
  152. package/src/squad/learning-extractor.js +213 -0
  153. package/src/squad/pattern-detector.js +365 -0
  154. package/src/squad/preflight-context.js +296 -0
  155. package/src/squad/recovery-context.js +242 -71
  156. package/src/squad/reflection.js +365 -0
  157. package/src/squad/squad-scaffold.js +177 -0
  158. package/src/squad/state-manager.js +310 -0
  159. package/src/squad/task-decomposer.js +652 -0
  160. package/src/squad/verify-gate.js +303 -0
  161. package/src/tool-executor.js +94 -0
  162. package/src/updater.js +10 -3
  163. package/src/worker-runner.js +186 -1
  164. package/template/.aioson/agents/analyst.md +119 -3
  165. package/template/.aioson/agents/architect.md +98 -0
  166. package/template/.aioson/agents/design-hybrid-forge.md +141 -0
  167. package/template/.aioson/agents/dev.md +335 -14
  168. package/template/.aioson/agents/deyvin.md +117 -2
  169. package/template/.aioson/agents/discovery-design-doc.md +44 -0
  170. package/template/.aioson/agents/genome.md +14 -0
  171. package/template/.aioson/agents/neo.md +78 -1
  172. package/template/.aioson/agents/orache.md +50 -4
  173. package/template/.aioson/agents/orchestrator.md +197 -1
  174. package/template/.aioson/agents/pm.md +93 -0
  175. package/template/.aioson/agents/product.md +77 -4
  176. package/template/.aioson/agents/profiler-enricher.md +14 -0
  177. package/template/.aioson/agents/profiler-forge.md +14 -0
  178. package/template/.aioson/agents/profiler-researcher.md +14 -0
  179. package/template/.aioson/agents/qa.md +249 -19
  180. package/template/.aioson/agents/setup.md +144 -12
  181. package/template/.aioson/agents/sheldon.md +237 -11
  182. package/template/.aioson/agents/site-forge.md +1753 -0
  183. package/template/.aioson/agents/squad.md +162 -0
  184. package/template/.aioson/agents/tester.md +209 -0
  185. package/template/.aioson/agents/ux-ui.md +34 -1
  186. package/template/.aioson/brains/README.md +128 -0
  187. package/template/.aioson/brains/_index.json +16 -0
  188. package/template/.aioson/brains/scripts/query.js +103 -0
  189. package/template/.aioson/brains/site-forge/visual-patterns.brain.json +205 -0
  190. package/template/.aioson/config.md +158 -13
  191. package/template/.aioson/constitution.md +33 -0
  192. package/template/.aioson/context/forensics/.gitkeep +0 -0
  193. package/template/.aioson/context/project-pulse.md +34 -0
  194. package/template/.aioson/context/seeds/seed-example.md +27 -0
  195. package/template/.aioson/context/user-profile.md +42 -0
  196. package/template/.aioson/docs/LAYERS.md +79 -0
  197. package/template/.aioson/docs/README.md +76 -0
  198. package/template/.aioson/docs/example-external-api-context.md +72 -0
  199. package/template/.aioson/locales/en/agents/architect.md +17 -0
  200. package/template/.aioson/locales/en/agents/dev.md +79 -13
  201. package/template/.aioson/locales/en/agents/orache.md +6 -0
  202. package/template/.aioson/locales/en/agents/orchestrator.md +24 -0
  203. package/template/.aioson/locales/en/agents/product.md +50 -0
  204. package/template/.aioson/locales/en/agents/setup.md +33 -1
  205. package/template/.aioson/locales/en/agents/sheldon.md +115 -0
  206. package/template/.aioson/locales/en/agents/squad.md +14 -0
  207. package/template/.aioson/locales/en/agents/tester.md +6 -0
  208. package/template/.aioson/locales/es/agents/analyst.md +2 -0
  209. package/template/.aioson/locales/es/agents/architect.md +19 -0
  210. package/template/.aioson/locales/es/agents/dev.md +64 -4
  211. package/template/.aioson/locales/es/agents/deyvin.md +2 -0
  212. package/template/.aioson/locales/es/agents/discovery-design-doc.md +2 -0
  213. package/template/.aioson/locales/es/agents/genome.md +2 -0
  214. package/template/.aioson/locales/es/agents/neo.md +2 -0
  215. package/template/.aioson/locales/es/agents/orache.md +2 -0
  216. package/template/.aioson/locales/es/agents/orchestrator.md +26 -0
  217. package/template/.aioson/locales/es/agents/pair.md +2 -0
  218. package/template/.aioson/locales/es/agents/pm.md +2 -0
  219. package/template/.aioson/locales/es/agents/product.md +52 -0
  220. package/template/.aioson/locales/es/agents/profiler-enricher.md +2 -0
  221. package/template/.aioson/locales/es/agents/profiler-forge.md +2 -0
  222. package/template/.aioson/locales/es/agents/profiler-researcher.md +2 -0
  223. package/template/.aioson/locales/es/agents/qa.md +2 -0
  224. package/template/.aioson/locales/es/agents/setup.md +35 -1
  225. package/template/.aioson/locales/es/agents/sheldon.md +117 -0
  226. package/template/.aioson/locales/es/agents/squad.md +16 -0
  227. package/template/.aioson/locales/es/agents/tester.md +9 -0
  228. package/template/.aioson/locales/es/agents/ux-ui.md +2 -0
  229. package/template/.aioson/locales/fr/agents/analyst.md +2 -0
  230. package/template/.aioson/locales/fr/agents/architect.md +19 -0
  231. package/template/.aioson/locales/fr/agents/dev.md +64 -4
  232. package/template/.aioson/locales/fr/agents/deyvin.md +2 -0
  233. package/template/.aioson/locales/fr/agents/discovery-design-doc.md +2 -0
  234. package/template/.aioson/locales/fr/agents/genome.md +2 -0
  235. package/template/.aioson/locales/fr/agents/neo.md +2 -0
  236. package/template/.aioson/locales/fr/agents/orache.md +2 -0
  237. package/template/.aioson/locales/fr/agents/orchestrator.md +26 -0
  238. package/template/.aioson/locales/fr/agents/pair.md +2 -0
  239. package/template/.aioson/locales/fr/agents/pm.md +2 -0
  240. package/template/.aioson/locales/fr/agents/product.md +52 -0
  241. package/template/.aioson/locales/fr/agents/profiler-enricher.md +2 -0
  242. package/template/.aioson/locales/fr/agents/profiler-forge.md +2 -0
  243. package/template/.aioson/locales/fr/agents/profiler-researcher.md +2 -0
  244. package/template/.aioson/locales/fr/agents/qa.md +2 -0
  245. package/template/.aioson/locales/fr/agents/setup.md +35 -1
  246. package/template/.aioson/locales/fr/agents/sheldon.md +117 -0
  247. package/template/.aioson/locales/fr/agents/squad.md +16 -0
  248. package/template/.aioson/locales/fr/agents/tester.md +9 -0
  249. package/template/.aioson/locales/fr/agents/ux-ui.md +2 -0
  250. package/template/.aioson/locales/pt-BR/agents/analyst.md +64 -3
  251. package/template/.aioson/locales/pt-BR/agents/architect.md +42 -0
  252. package/template/.aioson/locales/pt-BR/agents/dev.md +147 -14
  253. package/template/.aioson/locales/pt-BR/agents/deyvin.md +47 -0
  254. package/template/.aioson/locales/pt-BR/agents/neo.md +62 -1
  255. package/template/.aioson/locales/pt-BR/agents/orchestrator.md +158 -2
  256. package/template/.aioson/locales/pt-BR/agents/pm.md +95 -1
  257. package/template/.aioson/locales/pt-BR/agents/product.md +145 -18
  258. package/template/.aioson/locales/pt-BR/agents/qa.md +16 -0
  259. package/template/.aioson/locales/pt-BR/agents/setup.md +134 -19
  260. package/template/.aioson/locales/pt-BR/agents/sheldon.md +132 -1
  261. package/template/.aioson/locales/pt-BR/agents/squad.md +14 -0
  262. package/template/.aioson/locales/pt-BR/agents/tester.md +449 -0
  263. package/template/.aioson/rules/README.md +69 -0
  264. package/template/.aioson/rules/data-format-convention.md +136 -0
  265. package/template/.aioson/rules/example-monetary-values.md +30 -0
  266. package/template/.aioson/schemas/squad-manifest.schema.json +124 -3
  267. package/template/.aioson/skills/design/aurora-command-ui/SKILL.md +243 -0
  268. package/template/.aioson/skills/design/aurora-command-ui/references/art-direction.md +293 -0
  269. package/template/.aioson/skills/design/aurora-command-ui/references/components.md +827 -0
  270. package/template/.aioson/skills/design/aurora-command-ui/references/dashboards.md +250 -0
  271. package/template/.aioson/skills/design/aurora-command-ui/references/design-tokens.md +585 -0
  272. package/template/.aioson/skills/design/aurora-command-ui/references/motion.md +365 -0
  273. package/template/.aioson/skills/design/aurora-command-ui/references/patterns.md +482 -0
  274. package/template/.aioson/skills/design/aurora-command-ui/references/websites.md +387 -0
  275. package/template/.aioson/skills/design/glassmorphism-ui/SKILL.md +222 -0
  276. package/template/.aioson/skills/design/glassmorphism-ui/references/art-direction.md +159 -0
  277. package/template/.aioson/skills/design/glassmorphism-ui/references/components.md +498 -0
  278. package/template/.aioson/skills/design/glassmorphism-ui/references/dashboards.md +236 -0
  279. package/template/.aioson/skills/design/glassmorphism-ui/references/design-tokens.md +274 -0
  280. package/template/.aioson/skills/design/glassmorphism-ui/references/motion.md +355 -0
  281. package/template/.aioson/skills/design/glassmorphism-ui/references/patterns.md +198 -0
  282. package/template/.aioson/skills/design/glassmorphism-ui/references/websites.md +307 -0
  283. package/template/.aioson/skills/design/neo-brutalist-ui/SKILL.md +213 -0
  284. package/template/.aioson/skills/design/neo-brutalist-ui/references/art-direction.md +228 -0
  285. package/template/.aioson/skills/design/neo-brutalist-ui/references/components.md +855 -0
  286. package/template/.aioson/skills/design/neo-brutalist-ui/references/dashboards.md +334 -0
  287. package/template/.aioson/skills/design/neo-brutalist-ui/references/design-tokens.md +342 -0
  288. package/template/.aioson/skills/design/neo-brutalist-ui/references/motion.md +286 -0
  289. package/template/.aioson/skills/design/neo-brutalist-ui/references/patterns.md +458 -0
  290. package/template/.aioson/skills/design/neo-brutalist-ui/references/websites.md +723 -0
  291. package/template/.aioson/skills/design/pt.squarespace.com/.skill-meta.json +31 -0
  292. package/template/.aioson/skills/design/pt.squarespace.com/SKILL.md +66 -0
  293. package/template/.aioson/skills/design/pt.squarespace.com/references/components.md +368 -0
  294. package/template/.aioson/skills/design/pt.squarespace.com/references/design-tokens.md +150 -0
  295. package/template/.aioson/skills/design/pt.squarespace.com/references/motion.md +270 -0
  296. package/template/.aioson/skills/design/pt.squarespace.com/references/patterns.md +189 -0
  297. package/template/.aioson/skills/design/pt.squarespace.com/references/websites.md +165 -0
  298. package/template/.aioson/skills/process/aioson-spec-driven/SKILL.md +46 -0
  299. package/template/.aioson/skills/process/aioson-spec-driven/references/analyst.md +30 -0
  300. package/template/.aioson/skills/process/aioson-spec-driven/references/approval-gates.md +109 -0
  301. package/template/.aioson/skills/process/aioson-spec-driven/references/architect.md +23 -0
  302. package/template/.aioson/skills/process/aioson-spec-driven/references/artifact-map.md +44 -0
  303. package/template/.aioson/skills/process/aioson-spec-driven/references/classification-map.md +37 -0
  304. package/template/.aioson/skills/process/aioson-spec-driven/references/dev.md +47 -0
  305. package/template/.aioson/skills/process/aioson-spec-driven/references/deyvin.md +27 -0
  306. package/template/.aioson/skills/process/aioson-spec-driven/references/hardening-lane.md +49 -0
  307. package/template/.aioson/skills/process/aioson-spec-driven/references/maintenance-and-state.md +101 -0
  308. package/template/.aioson/skills/process/aioson-spec-driven/references/product.md +25 -0
  309. package/template/.aioson/skills/process/aioson-spec-driven/references/qa.md +30 -0
  310. package/template/.aioson/skills/process/aioson-spec-driven/references/sheldon.md +25 -0
  311. package/template/.aioson/skills/process/aioson-spec-driven/references/ui-language.md +75 -0
  312. package/template/.aioson/skills/process/design-hybrid-forge/SKILL.md +147 -0
  313. package/template/.aioson/skills/process/design-hybrid-forge/references/crossover-protocol.md +221 -0
  314. package/template/.aioson/skills/process/design-hybrid-forge/references/naming-registry.md +88 -0
  315. package/template/.aioson/skills/process/design-hybrid-forge/references/output-contract.md +306 -0
  316. package/template/.aioson/skills/process/design-hybrid-forge/references/pair-compatibility.md +149 -0
  317. package/template/.aioson/skills/process/design-hybrid-forge/references/quality-gates.md +208 -0
  318. package/template/.aioson/skills/process/design-hybrid-forge/references/variation-library.md +125 -0
  319. package/template/.aioson/skills/process/simplify/SKILL.md +173 -0
  320. package/template/.aioson/skills/static/context-budget-guide.md +46 -0
  321. package/template/.aioson/skills/static/harness-sensors.md +74 -0
  322. package/template/.aioson/skills/static/multi-agent-patterns.md +43 -0
  323. package/template/.aioson/skills/static/react-motion-patterns.md +22 -0
  324. package/template/.aioson/skills/static/static-html-patterns/checklists.md +43 -0
  325. package/template/.aioson/skills/static/static-html-patterns/css-tokens.md +609 -0
  326. package/template/.aioson/skills/static/static-html-patterns/motion.md +193 -0
  327. package/template/.aioson/skills/static/static-html-patterns/premium.md +711 -0
  328. package/template/.aioson/skills/static/static-html-patterns/structure.md +209 -0
  329. package/template/.aioson/skills/static/static-html-patterns/utilities.md +190 -0
  330. package/template/.aioson/skills/static/static-html-patterns.md +58 -1913
  331. package/template/.aioson/skills/static/threejs-patterns.md +929 -0
  332. package/template/.aioson/skills/static/web-research-cache.md +112 -0
  333. package/template/.aioson/tasks/implementation-plan.md +21 -1
  334. package/template/.claude/commands/aioson/agent/design-hybrid-forge.md +5 -0
  335. package/template/.claude/commands/aioson/agent/orache.md +5 -0
  336. package/template/.claude/commands/aioson/agent/sheldon.md +5 -0
  337. package/template/.claude/commands/aioson/agent/site-forge.md +5 -0
  338. package/template/AGENTS.md +75 -1
  339. package/template/CLAUDE.md +31 -0
  340. package/template/OPENCODE.md +4 -0
  341. package/template/researchs/.gitkeep +0 -0
@@ -0,0 +1,112 @@
1
+ # Skill: Web Research Cache
2
+
3
+ > Load this file when you are about to run a web search.
4
+ > Check the cache first. Save results after. Never search twice for the same thing.
5
+
6
+ ## Cache location
7
+
8
+ ```
9
+ researchs/ ← project root (alongside plans/, prds/)
10
+ └── {slug}/
11
+ ├── summary.md ← frontmatter + consolidated findings
12
+ └── files/
13
+ └── {source-slug}.md ← raw content from each consulted URL
14
+ ```
15
+
16
+ The `slug` identifies the topic searched (e.g., `stripe-api-2026`, `nextjs-app-router`, `jwt-vs-session`). Use kebab-case, include the year when the decision may age.
17
+
18
+ ## Step 1 — Check cache before searching
19
+
20
+ Before running any WebSearch:
21
+
22
+ 1. Derive the slug from the topic you are about to search
23
+ 2. Check if `researchs/{slug}/summary.md` exists
24
+ 3. Read `searched_at` from its frontmatter
25
+ 4. If `searched_at` is within the last **7 days** → use the cached result, do not search again
26
+ 5. If older than 7 days or missing → proceed to search
27
+
28
+ ## Step 2 — Run the search
29
+
30
+ - Formulate the query including the **current year** so results are fresh
31
+ - Maximum **4 queries per session** — focus on the decisions with highest risk of being outdated
32
+ - If WebSearch fails for a query: record the error in `summary.md` and continue — do not block
33
+
34
+ ## Step 3 — Save results
35
+
36
+ After searching, always save before using the results:
37
+
38
+ **`researchs/{slug}/summary.md`:**
39
+ ```markdown
40
+ ---
41
+ searched_at: {ISO-date}
42
+ agent: {agent-name}
43
+ prd: {prd-slug or null}
44
+ query: "{query used}"
45
+ verdict: confirmed | has-alternatives | outdated | deprecated
46
+ ---
47
+
48
+ # Research: {topic title}
49
+
50
+ ## Verdict
51
+ [One line with the verdict and justification]
52
+
53
+ ## Findings
54
+ [Consolidated summary — maximum 5 bullets]
55
+
56
+ ## Sources consulted
57
+ - [URL] — [what it contributed]
58
+ ```
59
+
60
+ **`researchs/{slug}/files/{source-slug}.md`:** raw content from each URL consulted.
61
+
62
+ ## Step 4 — Surface only what is actionable
63
+
64
+ Show the user **only** findings with verdict `has-alternatives`, `outdated`, or `deprecated`:
65
+
66
+ ```
67
+ 🔍 Web Intelligence — {current date}
68
+
69
+ **[decision or technology]** — {verdict}
70
+ → {finding in 1–2 lines}
71
+ → Alternative: {recommended alternative, if any}
72
+ → Source: [URL]
73
+
74
+ Want to incorporate this update?
75
+ ```
76
+
77
+ If all findings are `confirmed`:
78
+ > "✓ Decisions validated against recent research. No updates needed."
79
+
80
+ `confirmed` findings are **never shown** — they are noise.
81
+
82
+ ## Verdicts
83
+
84
+ | Verdict | Meaning |
85
+ |---|---|
86
+ | `confirmed` | Still the best choice — no action needed |
87
+ | `has-alternatives` | Valid but better options now exist |
88
+ | `outdated` | Superseded by a newer approach |
89
+ | `deprecated` | Officially discontinued or abandoned |
90
+
91
+ ## Who reads and who writes
92
+
93
+ | Agent | Reads cache | Writes cache |
94
+ |---|---|---|
95
+ | @sheldon | ✅ | ✅ — primary writer for PRD technical decisions |
96
+ | @analyst | ✅ | ✅ — technology and integration validation |
97
+ | @architect | ✅ | ✅ — infrastructure and library trade-offs |
98
+ | @dev | ✅ | ✅ — library docs and implementation patterns |
99
+ | @product | ✅ | ✅ — market and domain context |
100
+ | @deyvin | ✅ | ✅ — continuity session lookups |
101
+ | @orache | ✅ (read only) | ❌ — domain intelligence goes to `squad-searches/`, not here |
102
+
103
+ **Why @orache does not write here:** `researchs/` uses a verdict schema (`confirmed | has-alternatives | outdated | deprecated`) designed for technical decision validation. Domain investigation findings (frameworks, anti-patterns, vocabulary) do not fit this schema and would pollute the cache with non-actionable data for other agents.
104
+
105
+ ## Rules
106
+
107
+ - **Never search without saving** — unsaved results are lost after the session
108
+ - **Never block on search failure** — record the error and continue
109
+ - **Never show `confirmed` findings** — they add noise without value
110
+ - **Never modify the PRD/plan without user confirmation** — surface findings, let the user decide
111
+ - **Cache is shared across all agents** — if another agent already searched the same topic this week, use their result
112
+ - The user decides whether to act on findings. Agents surface, humans decide.
@@ -19,6 +19,20 @@
19
19
  - Detecta `prd-{slug}.md` existente sem `implementation-plan-{slug}.md`
20
20
  - Gera plan scoped à feature
21
21
 
22
+ ## Constitution Gate
23
+
24
+ Before generating or approving the implementation plan, verify:
25
+
26
+ - [ ] Article I — Work starts from an existing spec artifact (PRD or equivalent), not direct coding
27
+ - [ ] Article II — Classification (MICRO/SMALL/MEDIUM) is declared and process depth matches it
28
+ - [ ] Article IV — Acceptance criteria in requirements are independently verifiable, not vague
29
+ - [ ] Article V — Inputs are complete enough for the next agent to start without re-reading the full discovery chain
30
+ - [ ] Article VI — The plan does not introduce unnecessary phases, artifacts, or abstraction layers
31
+
32
+ If one or more items fail, stop and describe what is missing before continuing.
33
+
34
+ ---
35
+
22
36
  ## Processo
23
37
 
24
38
  ### Passo 1 — Inventory check
@@ -38,7 +52,7 @@ Artefatos a verificar (em ordem de prioridade):
38
52
  | `ui-spec.md` | Se tem UI | Info — fases de UI terão menos detalhe |
39
53
  | `readiness.md` | Se existe | Info — plan assume readiness = READY |
40
54
  | `spec.md` | Se existe | Info — sem histórico de decisões anteriores |
41
- | `design-doc.md` | Se existe | Infodecisões arquiteturais menos firmes |
55
+ | `design-doc.md` / `design-doc-{slug}.md` | Se existe | Warn se `updated` > 60 dias ou ausente verificar antes de usar como constraint |
42
56
  | `requirements-{slug}.md` | Feature mode | Warn — regras de negócio podem faltar |
43
57
 
44
58
  ### Passo 2 — Cross-analysis
@@ -58,6 +72,12 @@ Para cada issue encontrado, classificar:
58
72
  - **WARN** — pode prosseguir com assumption explícita (ex: campo inferido)
59
73
  - **INFO** — anotar para o dev ter consciência (ex: possível refatoração futura)
60
74
 
75
+ **Design-doc freshness check:**
76
+ - Se `design-doc.md` ou `design-doc-{slug}.md` existe e tem campo `updated` com data anterior a 60 dias: classificar como **WARN** — "design-doc pode estar desatualizado; verificar se decisões ainda refletem o estado atual antes de usar como constraint"
77
+ - Se o design-doc existe mas não tem campo `updated`: tratar como potencialmente desatualizado — mesmo WARN
78
+ - Se a seção "Decisions still pending" do design-doc tem itens não resolvidos: listar cada um como **INFO** — "decisão pendente no design-doc: {item}"
79
+ - Não bloquear o plano por staleness — apenas garantir que o dev está ciente antes de herdar uma constraint desatualizada
80
+
61
81
  ### Passo 3 — Sequence planning
62
82
 
63
83
  Definir a ordem de implementação baseada em:
@@ -0,0 +1,5 @@
1
+ ---
2
+ description: "AIOSON — Generate a hybrid design skill from two visual parents"
3
+ ---
4
+
5
+ Read `.aioson/agents/design-hybrid-forge.md` and follow all instructions. $ARGUMENTS
@@ -0,0 +1,5 @@
1
+ ---
2
+ description: "AIOSON — Domain investigation and strategic research"
3
+ ---
4
+
5
+ Read `.aioson/agents/orache.md` and follow all instructions. $ARGUMENTS
@@ -0,0 +1,5 @@
1
+ ---
2
+ description: "AIOSON — Deep technical analysis and architecture review"
3
+ ---
4
+
5
+ Read `.aioson/agents/sheldon.md` and follow all instructions. $ARGUMENTS
@@ -0,0 +1,5 @@
1
+ ---
2
+ description: "AIOSON — Clone, extract, and forge sites and design skills from any URL"
3
+ ---
4
+
5
+ Read `.aioson/agents/site-forge.md` and follow all instructions. $ARGUMENTS
@@ -16,7 +16,7 @@ Type `@agent-name` in the prompt. Codex will find the agent file and include its
16
16
  The agent activates automatically — begin executing its instructions immediately.
17
17
  Do not treat the included file as something to quote, summarize, or display back to the user unless the user explicitly asked to inspect the file itself.
18
18
 
19
- Examples: `@setup`, `@deyvin`, `@dev`, `@squad`, `@genome`, `@profiler-researcher`
19
+ Examples: `@setup`, `@deyvin`, `@dev`, `@squad`, `@genome`, `@profiler-researcher`, `@design-hybrid-forge`, `@site-forge`
20
20
 
21
21
  **Option 2 — Natural language:**
22
22
  Describe your intent. The agent system will match and execute.
@@ -29,6 +29,7 @@ Describe your intent. The agent system will match and execute.
29
29
  | @architect | "design the architecture", "use the architect agent" |
30
30
  | @ux-ui | "design the UI", "use the UI/UX agent" |
31
31
  | @product | "define the product vision", "use the product agent", "start the product wizard" |
32
+ | @sheldon | "deep technical review", "analyze the architecture", "use the sheldon agent" |
32
33
  | @deyvin | "continue what we were doing", "use the deyvin agent", "let's fix this together" |
33
34
  | @pm | "create the user stories", "use the pm agent" |
34
35
  | @dev | "implement the feature", "use the dev agent" |
@@ -40,6 +41,9 @@ Describe your intent. The agent system will match and execute.
40
41
  | @profiler-researcher | "start the profiler research", "profile this person", "pesquisar DNA mental" |
41
42
  | @profiler-enricher | "enrich this profile", "analyze this person's cognition", "consolidar perfil cognitivo" |
42
43
  | @profiler-forge | "generate the advisor", "forge the genome 3.0", "gerar advisor da persona" |
44
+ | @orache | "investigate this domain", "research market and competitors", "use the orache agent" |
45
+ | @design-hybrid-forge | "create hybrid design skill", "combine two design skills", "use the design-hybrid-forge agent" |
46
+ | @site-forge | "clone this site with [skill]", "rebuild [url] using [skill]", "[url] in the style of [skill]", "extract the design from [url] as a skill", "use the site-forge agent" |
43
47
 
44
48
  When an agent file is included via @ or described via natural language, read the corresponding file and execute its instructions immediately from the first step.
45
49
  Do not answer with "I will open/read/show the file" unless the user explicitly asked to inspect that file.
@@ -78,6 +82,7 @@ When running Codex directly (without `aioson workflow:next`), these rules apply:
78
82
  - @architect → `.aioson/agents/architect.md`
79
83
  - @ux-ui → `.aioson/agents/ux-ui.md`
80
84
  - @product → `.aioson/agents/product.md`
85
+ - @sheldon → `.aioson/agents/sheldon.md`
81
86
  - @deyvin → `.aioson/agents/deyvin.md` (`@pair` remains as a compatibility alias)
82
87
  - @pm → `.aioson/agents/pm.md`
83
88
  - @dev → `.aioson/agents/dev.md`
@@ -90,6 +95,75 @@ When running Codex directly (without `aioson workflow:next`), these rules apply:
90
95
  - @profiler-researcher → `.aioson/agents/profiler-researcher.md`
91
96
  - @profiler-enricher → `.aioson/agents/profiler-enricher.md`
92
97
  - @profiler-forge → `.aioson/agents/profiler-forge.md`
98
+ - @orache → `.aioson/agents/orache.md`
99
+ - @design-hybrid-forge → `.aioson/agents/design-hybrid-forge.md`
100
+ - @site-forge → `.aioson/agents/site-forge.md`
101
+
102
+ ## Spec-Driven Development (SDD)
103
+
104
+ AIOSON uses the `aioson-spec-driven` process skill to enforce specification-first development.
105
+
106
+ ### Core artifacts
107
+ - `constitution.md` — governs all agents with 6 articles
108
+ - `project-pulse.md` — global heartbeat, max 30 lines, updated by every agent at session end
109
+ - `spec-{slug}.md` — feature memory with `phase_gates`, `spec_version`, and `last_checkpoint`
110
+ - `conformance-{slug}.yaml` — machine-readable AC definitions (MEDIUM projects only)
111
+
112
+ ### Phase gates
113
+ - **Gate A** (requirements): must pass before @architect starts
114
+ - **Gate B** (design): must pass before @dev starts
115
+ - **Gate C** (plan): must pass before significant implementation
116
+ - **Gate D** (execution): must pass before feature is marked done
117
+
118
+ Gates are blocking in MEDIUM, informational in MICRO/SMALL.
119
+
120
+ ### How agents load SDD
121
+ Each agent checks for `aioson-spec-driven` in `.aioson/installed-skills/` or `.aioson/skills/process/` and loads its role-specific reference file (e.g., `references/dev.md`, `references/qa.md`).
122
+
123
+ ### Project pulse convention
124
+ Every agent updates `project-pulse.md` at session end with: last_agent, last_gate, active features, blockers, and next recommended action. This enables crash recovery — any agent can read project-pulse.md and know where to resume.
125
+
126
+ ## Process skill: aioson-spec-driven
127
+
128
+ Located at: `.aioson/skills/process/aioson-spec-driven/SKILL.md`
129
+
130
+ This is a first-party process skill. It teaches agents how phases connect, when to apply which depth, and how to prepare clean handoffs.
131
+
132
+ Agents that load it: @product, @analyst, @architect, @sheldon, @dev, @deyvin, @qa, @tester, @orchestrator, @pm
133
+ When to load: at the start of any spec work (PRD, requirements, architecture, implementation, testing)
134
+ What to load: `SKILL.md` first, then only the `references/` file relevant to the current phase
135
+
136
+ ## Process skill: design-hybrid-forge
137
+
138
+ Located at: `.aioson/skills/process/design-hybrid-forge/SKILL.md`
139
+
140
+ This is a first-party process skill for generating project-local hybrid design skills from 2 primary design parents.
141
+
142
+ Activated by: @design-hybrid-forge
143
+ Default output: `.aioson/installed-skills/{hybrid-name}/`
144
+ What to load: `SKILL.md` first, then only the `references/` file relevant to the current phase
145
+
146
+ ## Shared research cache: researchs/
147
+
148
+ Located at: `researchs/` (project root)
149
+
150
+ A shared folder where agents store and reuse internet research. Structure:
151
+ ```
152
+ researchs/
153
+ └── {slug-da-pesquisa}/
154
+ ├── summary.md ← frontmatter (searched_at, agent, query, verdict) + findings
155
+ └── files/ ← raw content saved from consulted URLs
156
+ └── {source-slug}.md
157
+ ```
158
+
159
+ **Rules for all agents:**
160
+ - Before running a web search, check if a `researchs/{slug}/summary.md` exists and was created within the last 7 days — use the cached result instead of searching again
161
+ - After running a web search, save the result to `researchs/{slug}/summary.md` so other agents can reuse it
162
+ - `summary.md` frontmatter must include: `searched_at` (ISO-date), `agent` (who ran it), `query`, `verdict` (`confirmed` | `has-alternatives` | `outdated` | `deprecated`)
163
+ - This folder is at the project root (alongside `plans/`, `prds/`), not inside `.aioson/`
164
+
165
+ Primary agent that writes here: @sheldon (RF-WEB step)
166
+ All agents may read from here to avoid redundant searches.
93
167
 
94
168
  ## Session protocol
95
169
  If `.aioson/context/spec.md` exists, read it at session start and update it at session end.
@@ -31,6 +31,23 @@ You operate as AIOSON.
31
31
  - /profiler-researcher -> `.aioson/agents/profiler-researcher.md`
32
32
  - /profiler-enricher -> `.aioson/agents/profiler-enricher.md`
33
33
  - /profiler-forge -> `.aioson/agents/profiler-forge.md`
34
+ - /design-hybrid-forge -> `.aioson/agents/design-hybrid-forge.md`
35
+ - /site-forge -> `.aioson/agents/site-forge.md`
36
+
37
+ ## Spec-Driven Development framework
38
+
39
+ AIOSON follows a Spec-Driven Development (SDD) methodology. Key governance files:
40
+
41
+ - **`.aioson/constitution.md`** — 6 governing principles all agents must respect
42
+ - **`.aioson/context/project-pulse.md`** — global project state; read at session start, update at session end
43
+ - **`.aioson/skills/process/aioson-spec-driven/SKILL.md`** — process methodology; agents load this automatically
44
+
45
+ The process depth scales with project classification:
46
+ - **MICRO** (0-1): lightweight — @product → @dev
47
+ - **SMALL** (2-3): standard — @product → @analyst → @dev
48
+ - **MEDIUM** (4-6): full — all agents, all gates, all artifacts
49
+
50
+ Classification is determined by @analyst during discovery. See `aioson-spec-driven` skill for details.
34
51
 
35
52
  ## Workflow enforcement
36
53
 
@@ -57,5 +74,19 @@ When running Claude Code directly (without `aioson workflow:next`), these rules
57
74
  - Plain slash-command activation registers in the dashboard automatically via `aioson agent:done` at the end of each agent session — each agent file has the call in its "Observability" section.
58
75
  - Do not call `aioson runtime-log` directly from inside the session — use `aioson agent:done` instead, which is safe in both direct and live-session contexts.
59
76
 
77
+ ## Shared research cache: researchs/
78
+
79
+ All agents may read from and write to `researchs/` (project root). Before running any web search, check if `researchs/{slug}/summary.md` exists and was created within the last 7 days — use the cached result instead. After searching, save results there for reuse by other agents. See AGENTS.md for the full convention.
80
+
81
+ ## Local overrides
82
+
83
+ Create `CLAUDE.local.md` (not committed) for machine-specific settings:
84
+ - Local tool paths and environment variables
85
+ - Personal preferences that should not affect other team members
86
+ - Dev environment overrides
87
+
88
+ `CLAUDE.local.md` is loaded after `CLAUDE.md` and takes precedence.
89
+ Add it to `.gitignore` to keep it out of version control.
90
+
60
91
  ## Golden rule
61
92
  Small project, small solution.
@@ -12,6 +12,7 @@
12
12
  - architect -> `.aioson/agents/architect.md`
13
13
  - ux-ui (UI/UX) -> `.aioson/agents/ux-ui.md`
14
14
  - product -> `.aioson/agents/product.md`
15
+ - sheldon -> `.aioson/agents/sheldon.md`
15
16
  - deyvin -> `.aioson/agents/deyvin.md`
16
17
  - pair -> `.aioson/agents/deyvin.md` (compatibility alias)
17
18
  - pm -> `.aioson/agents/pm.md`
@@ -25,6 +26,9 @@
25
26
  - profiler-researcher -> `.aioson/agents/profiler-researcher.md`
26
27
  - profiler-enricher -> `.aioson/agents/profiler-enricher.md`
27
28
  - profiler-forge -> `.aioson/agents/profiler-forge.md`
29
+ - orache -> `.aioson/agents/orache.md`
30
+ - design-hybrid-forge -> `.aioson/agents/design-hybrid-forge.md`
31
+ - site-forge -> `.aioson/agents/site-forge.md`
28
32
 
29
33
  ## Rule
30
34
  Do not duplicate rules outside `.aioson/`.
File without changes