@jaimevalasek/aioson 1.21.4 → 1.21.6

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 (171) hide show
  1. package/README.md +25 -13
  2. package/bin/aioson.js +1 -1
  3. package/docs/en/1-understand/ecosystem-map.md +2 -2
  4. package/docs/en/1-understand/glossary.md +3 -3
  5. package/docs/en/1-understand/what-is-aioson.md +2 -2
  6. package/docs/en/1-understand/why-it-exists.md +1 -1
  7. package/docs/en/2-start/existing-project.md +4 -5
  8. package/docs/en/2-start/first-project.md +3 -3
  9. package/docs/en/2-start/initial-decisions.md +3 -3
  10. package/docs/en/3-recipes/README.md +2 -2
  11. package/docs/en/3-recipes/full-feature-with-sheldon.md +2 -2
  12. package/docs/en/5-reference/cli-reference.md +17 -17
  13. package/docs/en/5-reference/mcp.md +1 -1
  14. package/docs/en/README.md +2 -2
  15. package/docs/en/deyvin-subtask-scout/README.md +1 -1
  16. package/docs/en/deyvin-subtask-scout/sub-task-scout.md +1 -1
  17. package/docs/en/deyvin-subtask-scout/troubleshooting.md +1 -1
  18. package/docs/pt/1-entender/glossario.md +3 -3
  19. package/docs/pt/1-entender/mapa-do-ecossistema.md +2 -2
  20. package/docs/pt/1-entender/o-que-e-aioson.md +2 -2
  21. package/docs/pt/1-entender/por-que-existe.md +1 -1
  22. package/docs/pt/2-comecar/decisoes-iniciais.md +3 -3
  23. package/docs/pt/2-comecar/primeiro-projeto.md +3 -3
  24. package/docs/pt/2-comecar/projeto-existente.md +4 -5
  25. package/docs/pt/3-receitas/README.md +2 -2
  26. package/docs/pt/3-receitas/feature-completa-com-sheldon.md +2 -2
  27. package/docs/pt/3-receitas/landing-page.md +1 -1
  28. package/docs/pt/5-referencia/README.md +1 -1
  29. package/docs/pt/5-referencia/clientes-ai.md +15 -84
  30. package/docs/pt/5-referencia/comandos-cli.md +7 -7
  31. package/docs/pt/5-referencia/sdd-automation-scripts.md +1 -1
  32. package/docs/pt/5-referencia/skills.md +1 -2
  33. package/docs/pt/README.md +2 -2
  34. package/docs/pt/_arquivo/README.md +1 -1
  35. package/docs/pt/_arquivo/inicio-rapido.md +8 -13
  36. package/docs/pt/_arquivo/memoria-contexto.md +2 -2
  37. package/docs/pt/deyvin-subtask-scout/README.md +1 -1
  38. package/docs/pt/deyvin-subtask-scout/sub-task-scout.md +1 -1
  39. package/docs/pt/deyvin-subtask-scout/troubleshooting.md +1 -1
  40. package/docs/pt/living-memory/README.md +1 -1
  41. package/docs/pt/living-memory/autonomy-contract.md +6 -8
  42. package/docs/pt/living-memory/diagramas.md +16 -16
  43. package/docs/pt/living-memory/memoria-viva.md +1 -1
  44. package/docs/pt/living-memory/reflexao-in-harness.md +1 -1
  45. package/package.json +3 -3
  46. package/scripts/benchmark-optimizations.js +261 -0
  47. package/scripts/check-js.js +35 -0
  48. package/scripts/memory-budget-audit.js +112 -0
  49. package/scripts/smoke/genome-2.0-smoke.js +118 -0
  50. package/scripts/smoke-run-chain.js +786 -0
  51. package/scripts/testing/genome-2.0-rollout.js +247 -0
  52. package/src/agents.js +0 -4
  53. package/src/cli.js +19 -13
  54. package/src/commands/agent-export-skill.js +2 -2
  55. package/src/commands/agents.js +48 -12
  56. package/src/commands/artifact-validate.js +21 -14
  57. package/src/commands/feature-archive.js +11 -10
  58. package/src/commands/init.js +5 -5
  59. package/src/commands/install.js +1 -6
  60. package/src/commands/intake-ask.js +399 -0
  61. package/src/commands/mcp-doctor.js +1 -1
  62. package/src/commands/mcp-init.js +1 -6
  63. package/src/commands/runtime.js +62 -29
  64. package/src/commands/squad-agent-create.js +1 -1
  65. package/src/commands/squad-export.js +13 -24
  66. package/src/commands/squad-review.js +1 -1
  67. package/src/commands/state-save.js +4 -2
  68. package/src/commands/store-system.js +2 -2
  69. package/src/commands/update.js +1 -1
  70. package/src/commands/workflow-next.js +212 -63
  71. package/src/commands/workflow-plan.js +5 -5
  72. package/src/commands/workflow-status.js +41 -19
  73. package/src/constants.js +73 -77
  74. package/src/doctor.js +8 -70
  75. package/src/dossier/schema.js +5 -4
  76. package/src/gateway-pointer-merge.js +2 -3
  77. package/src/handoff-contract.js +98 -31
  78. package/src/i18n/messages/en.js +23 -31
  79. package/src/i18n/messages/es.js +14 -25
  80. package/src/i18n/messages/fr.js +14 -25
  81. package/src/i18n/messages/pt-BR.js +23 -32
  82. package/src/install-animation.js +5 -6
  83. package/src/install-profile.js +6 -10
  84. package/src/install-wizard.js +8 -10
  85. package/src/installer.js +5 -7
  86. package/src/lib/dev-resume.js +45 -32
  87. package/src/lib/tool-capabilities.js +2 -17
  88. package/src/locales.js +30 -22
  89. package/src/permissions-generator.js +17 -57
  90. package/src/preflight-engine.js +31 -16
  91. package/src/prompt-tool.js +1 -1
  92. package/src/runner/cli-launcher.js +6 -8
  93. package/src/sandbox.js +129 -81
  94. package/src/session-handoff.js +50 -20
  95. package/src/squad/agent-teams-adapter.js +1 -1
  96. package/src/squad/cross-ai-synthesizer.js +4 -9
  97. package/src/squad/preflight-context.js +20 -17
  98. package/template/.aioson/agents/analyst.md +5 -5
  99. package/template/.aioson/agents/briefing.md +74 -17
  100. package/template/.aioson/agents/copywriter.md +5 -3
  101. package/template/.aioson/agents/design-hybrid-forge.md +5 -3
  102. package/template/.aioson/agents/dev.md +11 -7
  103. package/template/.aioson/agents/deyvin.md +48 -75
  104. package/template/.aioson/agents/discover.md +1 -1
  105. package/template/.aioson/agents/discovery-design-doc.md +5 -5
  106. package/template/.aioson/agents/manifests/analyst.manifest.json +53 -26
  107. package/template/.aioson/agents/manifests/architect.manifest.json +40 -23
  108. package/template/.aioson/agents/manifests/committer.manifest.json +40 -23
  109. package/template/.aioson/agents/manifests/dev.manifest.json +113 -54
  110. package/template/.aioson/agents/manifests/deyvin.manifest.json +84 -41
  111. package/template/.aioson/agents/manifests/orchestrator.manifest.json +75 -30
  112. package/template/.aioson/agents/manifests/pm.manifest.json +58 -27
  113. package/template/.aioson/agents/manifests/product.manifest.json +39 -23
  114. package/template/.aioson/agents/manifests/qa.manifest.json +82 -41
  115. package/template/.aioson/agents/manifests/scope-check.manifest.json +61 -0
  116. package/template/.aioson/agents/manifests/setup.manifest.json +29 -20
  117. package/template/.aioson/agents/manifests/ux-ui.manifest.json +45 -24
  118. package/template/.aioson/agents/neo.md +2 -2
  119. package/template/.aioson/agents/orchestrator.md +67 -33
  120. package/template/.aioson/agents/pair.md +5 -3
  121. package/template/.aioson/agents/pentester.md +3 -1
  122. package/template/.aioson/agents/pm.md +21 -18
  123. package/template/.aioson/agents/product.md +77 -22
  124. package/template/.aioson/agents/qa.md +5 -4
  125. package/template/.aioson/agents/scope-check.md +164 -0
  126. package/template/.aioson/agents/setup.md +2 -2
  127. package/template/.aioson/agents/sheldon.md +35 -10
  128. package/template/.aioson/agents/site-forge.md +5 -3
  129. package/template/.aioson/agents/tester.md +33 -28
  130. package/template/.aioson/config/autonomy-protocol.json +163 -126
  131. package/template/.aioson/config.md +16 -7
  132. package/template/.aioson/docs/autonomy-protocol.md +3 -4
  133. package/template/.aioson/docs/product/prd-contract.md +1 -1
  134. package/template/.aioson/docs/squad/eval-gate.md +1 -1
  135. package/template/.aioson/mcp/servers.md +22 -23
  136. package/template/.aioson/schemas/squad-manifest.schema.json +1462 -886
  137. package/template/.aioson/skills/process/aioson-spec-driven/SKILL.md +5 -4
  138. package/template/.aioson/skills/process/aioson-spec-driven/references/approval-gates.md +1 -1
  139. package/template/.aioson/skills/process/prompt-sharpener/SKILL.md +116 -0
  140. package/template/.aioson/skills/process/prompt-sharpener/agents/openai.yaml +4 -0
  141. package/template/.aioson/skills/process/prompt-sharpener/references/prompt-diagnostics.md +51 -0
  142. package/template/.aioson/tasks/squad-eval.md +1 -1
  143. package/template/.claude/commands/aioson/agent/scope-check.md +20 -0
  144. package/template/AGENTS.md +36 -16
  145. package/template/CLAUDE.md +16 -6
  146. package/template/OPENCODE.md +13 -3
  147. package/template/.gemini/GEMINI.md +0 -13
  148. package/template/.gemini/commands/aios-analyst.toml +0 -7
  149. package/template/.gemini/commands/aios-architect.toml +0 -8
  150. package/template/.gemini/commands/aios-committer.toml +0 -7
  151. package/template/.gemini/commands/aios-copywriter.toml +0 -7
  152. package/template/.gemini/commands/aios-cypher.toml +0 -7
  153. package/template/.gemini/commands/aios-dev.toml +0 -9
  154. package/template/.gemini/commands/aios-deyvin.toml +0 -7
  155. package/template/.gemini/commands/aios-discover.toml +0 -6
  156. package/template/.gemini/commands/aios-discovery-design-doc.toml +0 -7
  157. package/template/.gemini/commands/aios-genome.toml +0 -7
  158. package/template/.gemini/commands/aios-neo.toml +0 -6
  159. package/template/.gemini/commands/aios-orache.toml +0 -7
  160. package/template/.gemini/commands/aios-orchestrator.toml +0 -9
  161. package/template/.gemini/commands/aios-pair.toml +0 -7
  162. package/template/.gemini/commands/aios-pm.toml +0 -9
  163. package/template/.gemini/commands/aios-product.toml +0 -6
  164. package/template/.gemini/commands/aios-qa.toml +0 -7
  165. package/template/.gemini/commands/aios-setup.toml +0 -6
  166. package/template/.gemini/commands/aios-sheldon.toml +0 -7
  167. package/template/.gemini/commands/aios-site-forge.toml +0 -7
  168. package/template/.gemini/commands/aios-squad.toml +0 -7
  169. package/template/.gemini/commands/aios-tester.toml +0 -7
  170. package/template/.gemini/commands/aios-ux-ui.toml +0 -9
  171. package/template/.gemini/commands/aios-validator.toml +0 -7
package/README.md CHANGED
@@ -717,10 +717,11 @@ aioson agents
717
717
  aioson agent:prompt <agent> [--tool=codex|claude|gemini|opencode]
718
718
  aioson workflow:plan [path] [--classification=MICRO|SMALL|MEDIUM] [--json]
719
719
  aioson workflow:next [path] [--complete] [--auto-heal] [--force]
720
- aioson workflow:heal [path] --stage=<agent>
721
- aioson workflow:harden [path] [--dry-run]
722
- aioson workflow:execute [path] [--dry-run] [--start-from=<agent>]
723
- ```
720
+ aioson workflow:heal [path] --stage=<agent>
721
+ aioson workflow:harden [path] [--dry-run]
722
+ aioson workflow:execute [path] [--dry-run] [--start-from=<agent>]
723
+ aioson intake:ask [path] --agent=<agent> --schema=<questions.json> [--out=<answers.json>] [--json]
724
+ ```
724
725
 
725
726
  </details>
726
727
 
@@ -985,12 +986,23 @@ aioson scan:project --json
985
986
  - [Runner system](docs/pt/5-referencia/runner-system.md)
986
987
  - [Secure by default](docs/pt/5-referencia/secure-by-default.md)
987
988
 
988
- *Living Memory*
989
- - [Memória viva](docs/pt/living-memory/memoria-viva.md)
990
- - [Autonomy contract](docs/pt/living-memory/autonomy-contract.md)
991
-
992
- ---
993
-
994
- ## License
995
-
996
- [AGPL-3.0-only](LICENSE) GNU Affero General Public License v3.0
989
+ *Living Memory*
990
+ - [Memória viva](docs/pt/living-memory/memoria-viva.md)
991
+ - [Autonomy contract](docs/pt/living-memory/autonomy-contract.md)
992
+
993
+ ---
994
+
995
+ ## Research Inspirations
996
+
997
+ AIOSON may study external agent-workflow patterns as product research. These links are inspiration references only: they are not runtime dependencies, endorsements, or citations inside generated AIOSON artifacts.
998
+
999
+ - Interview-style clarification and lightweight decision records
1000
+ - https://github.com/mattpocock/skills/tree/main/skills/productivity/grill-me
1001
+ - https://github.com/mattpocock/skills/tree/main/skills/engineering/grill-with-docs
1002
+ - https://github.com/mattpocock/skills/tree/main/README.md
1003
+
1004
+ ---
1005
+
1006
+ ## License
1007
+
1008
+ [AGPL-3.0-only](LICENSE) — GNU Affero General Public License v3.0
package/bin/aioson.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
  'use strict';
3
3
 
4
4
  require('../src/cli.js');
@@ -71,8 +71,8 @@
71
71
  The default order depends on the classification:
72
72
 
73
73
  **MICRO:** `@setup → @product (optional) → @dev`
74
- **SMALL:** `@setup → @product → @sheldon (optional) → @analyst → @architect → @dev → @qa`
75
- **MEDIUM:** `@setup → @product → @sheldon → @analyst → @architect → @ux-ui → @pm → @orchestrator → @dev → @qa`
74
+ **SMALL:** `@setup → @product → @sheldon (optional) → @analyst → @scope-check → @architect → @dev → @qa`
75
+ **MEDIUM:** `@setup → @product → @sheldon → @analyst → @architect → @ux-ui → @pm → @orchestrator → @scope-check → @dev → @qa`
76
76
 
77
77
  > **Why does `@sheldon` appear so early?** It is the **PRD quality guardian** — it runs *between* `@product` and `@analyst` to detect gaps, validate technical assumptions with web research, and decide between enriching the PRD in-place or creating a phased plan in `.aioson/plans/{slug}/`. Can be invoked N times on the same PRD. Skipping this step on serious features is expensive later.
78
78
 
@@ -14,7 +14,7 @@ Terms in alphabetical order. Each entry has a **short definition** + **concrete
14
14
 
15
15
  **Example:** `@dev` is the agent that implements code. `@qa` is the one that writes tests. `@pentester` is the one that tries to break the feature on purpose.
16
16
 
17
- **How to invoke:** type `@name` in your AI client (Claude, Codex, Gemini, OpenCode) or describe the intent in natural language ("let's implement the feature").
17
+ **How to invoke:** type `@name` in your AI client (Claude, Codex e OpenCode) or describe the intent in natural language ("let's implement the feature").
18
18
 
19
19
  ---
20
20
 
@@ -73,7 +73,7 @@ Terms in alphabetical order. Each entry has a **short definition** + **concrete
73
73
 
74
74
  **How it works:**
75
75
  - 0–1 points → **MICRO** (`@setup → @product → @dev`)
76
- - 2–3 points → **SMALL** (`@setup → @product → @analyst → @architect → @dev → @qa`)
76
+ - 2–3 points → **SMALL** (`@setup → @product → @analyst → @scope-check → @architect → @dev → @qa`)
77
77
  - 4–6 points → **MEDIUM** (full workflow, all gates, all artifacts)
78
78
 
79
79
  **Where it appears:** `classification:` in the `project.context.md` frontmatter.
@@ -84,7 +84,7 @@ Terms in alphabetical order. Each entry has a **short definition** + **concrete
84
84
 
85
85
  **Definition:** the program where you actually talk to the AI. AIOSON is client-agnostic — it works with several.
86
86
 
87
- **Officially supported:** Claude Code, Codex CLI, Gemini CLI, OpenCode.
87
+ **Officially supported:** Claude Code, Codex CLI, OpenCode.
88
88
  **Also works via terminal:** VS Code, Cursor, Windsurf, JetBrains IDEs, Zed, Antigravity (any that opens a terminal).
89
89
 
90
90
  **Where to learn more:** `5-reference/clientes-ai.md`.
@@ -56,7 +56,7 @@ your-project/
56
56
  │ ├── rules/ ← hard rules agents follow (security, etc.)
57
57
  │ ├── skills/ ← pluggable packages (design systems, processes)
58
58
  │ └── runtime/ ← local telemetry (SQLite)
59
- ├── .claude/ .codex/ .gemini/ .windsurf/ integration with each AI client
59
+ ├── .claude/ .codex/ native client config
60
60
  ├── CLAUDE.md AGENTS.md OPENCODE.md ← per-client instructions
61
61
  └── docs/ ← optional documentation
62
62
  ```
@@ -67,7 +67,7 @@ Open your favorite AI client and type `@setup`, `@product`, `@dev`, etc. — the
67
67
 
68
68
  Works with **any IDE that has a terminal**:
69
69
 
70
- - Claude Code · Codex CLI · Gemini CLI · OpenCode
70
+ - Claude Code · Codex CLI · OpenCode
71
71
  - VS Code, Google Antigravity, Cursor, Windsurf, JetBrains, Zed (with any of the clients above)
72
72
 
73
73
  Agents are *prompts*, not plugins. They live in `.md` files and your AI client reads them when you invoke via `@name`.
@@ -31,7 +31,7 @@ You work on a feature for 2 hours with the AI, go to sleep, come back the next d
31
31
 
32
32
  ### Problem 3 — Inconsistency in the team
33
33
 
34
- In a team, each person has a different prompt style. Each AI client (Claude, Codex, Gemini) responds differently. The result is a codebase stitched together from different aesthetics and patterns.
34
+ In a team, each person has a different prompt style. Each AI client (Claude, Codex) responds differently. The result is a codebase stitched together from different aesthetics and patterns.
35
35
 
36
36
  **How AIOSON solves it:**
37
37
  - The same agents (`.aioson/agents/`) are read by **any** AI client.
@@ -30,10 +30,9 @@ The interactive wizard appears:
30
30
 
31
31
  ```
32
32
  ? Which AI tools? ›
33
- ◉ Claude Code
34
- ◉ Codex CLI
35
- Gemini CLI
36
- ◯ OpenCode
33
+ ◉ Claude Code
34
+ ◉ Codex CLI
35
+ OpenCode
37
36
 
38
37
  ? Mode? ›
39
38
  ◉ Development
@@ -75,7 +74,7 @@ The scan will:
75
74
  ## Step 3 — Run `@setup`
76
75
 
77
76
  ```bash
78
- claude . # or: codex . / gemini . / opencode .
77
+ claude . # or: codex . / opencode .
79
78
  ```
80
79
 
81
80
  Inside the AI client:
@@ -11,7 +11,7 @@ We're going to build a **mini TODO app** using the SMALL cycle. You'll see each
11
11
  ## Prerequisites
12
12
 
13
13
  - **Node.js 18+** installed
14
- - An AI client configured: **Claude Code**, **Codex CLI**, **Gemini CLI**, or **OpenCode**. Examples here use Claude Code; switching is trivial.
14
+ - An AI client configured: **Claude Code**, **Codex CLI**, or **OpenCode**. Examples here use Claude Code; switching is trivial.
15
15
  - A terminal open
16
16
 
17
17
  If you don't have an AI client yet: Claude Code is the most widely used by the AIOSON community. See [`clientes-ai.md`](../5-reference/clientes-ai.md).
@@ -52,7 +52,7 @@ my-todo/
52
52
  ## Step 2 — Open the AI client in the project
53
53
 
54
54
  ```bash
55
- claude . # or: codex . or: gemini . or: opencode .
55
+ claude . # or: codex . or: opencode .
56
56
  ```
57
57
 
58
58
  From here on, we'll interact with the AI.
@@ -296,7 +296,7 @@ It tells you who's next.
296
296
  | I want to resume an interrupted feature | Run `@deyvin` — it reads `dev-state.md` and continues. |
297
297
  | Not sure if SMALL is the right classification | Ask `@neo` — it explains the calculation. |
298
298
  | Install failed | `npx @jaimevalasek/aioson doctor` — diagnoses and suggests a fix. |
299
- | I want to add Codex/Gemini later | `npx @jaimevalasek/aioson install --reconfigure`. |
299
+ | I want to add Codex later | `npx @jaimevalasek/aioson install --reconfigure`. |
300
300
 
301
301
  ---
302
302
 
@@ -41,7 +41,7 @@ The sum of three factors (each worth 0, 1, or 2 points):
41
41
  - Static portfolio page
42
42
  - Mini API with 3 endpoints
43
43
 
44
- #### SMALL — `@setup → @product → @analyst → @architect → @dev → @qa`
44
+ #### SMALL — `@setup → @product → @analyst → @scope-check → @architect → @dev → @qa`
45
45
 
46
46
  - For: most real apps.
47
47
  - Full discovery+development+QA cycle.
@@ -88,7 +88,7 @@ You can mark **more than one** in the wizard — they coexist in the same projec
88
88
  |---|---|---|
89
89
  | **Claude Code** | Long agents, refactoring, planned tasks | Native skills, slash commands, hooks |
90
90
  | **Codex CLI** | Short tasks, focus on direct code | `@` mode to include files |
91
- | **Gemini CLI** | Multi-modal, low cost on some plans | Generous context window |
91
+ | | Multi-modal, low cost on some plans | Generous context window |
92
92
  | **OpenCode** | Open-source, integrates with multiple providers | Granular configuration |
93
93
 
94
94
  **Recommendation for beginners:** start with Claude Code — it has the highest parity with AIOSON. Add others later with `aioson install --reconfigure`.
@@ -183,7 +183,7 @@ npx @jaimevalasek/aioson install --no-interactive
183
183
 
184
184
  | I want to change... | Command |
185
185
  |---|---|
186
- | Add Codex/Gemini to the same project | `aioson install --reconfigure` |
186
+ | Add Codex to the same project | `aioson install --reconfigure` |
187
187
  | Activate Squads | `aioson install --reconfigure` (and select it) |
188
188
  | Switch design skill | `@ux-ui` in the AI client or `aioson install --reconfigure` |
189
189
  | Change interaction language | Edit `interaction_language:` in `project.context.md` or run `@setup` again |
@@ -8,9 +8,9 @@ These three trails show **how features reach development** in AIOSON. You almost
8
8
 
9
9
  | Trail | When to use | Key agents |
10
10
  |---|---|---|
11
- | **[Full feature with @sheldon](./full-feature-with-sheldon.md)** | You have a PRD in mind and want the complete canonical trail (most used) | @product → @sheldon → @analyst → @architect → @ux-ui → @pm → @orchestrator → @dev → @qa |
11
+ | **[Full feature with @sheldon](./full-feature-with-sheldon.md)** | You have a PRD in mind and want the complete canonical trail (most used) | @product → @sheldon → @analyst → @architect → @ux-ui → @pm → @orchestrator → @scope-check → @dev → @qa |
12
12
  | [From idea to PRD via @briefing](./from-idea-to-prd-via-briefing.md) | Your idea is still vague, several loose notes | @briefing → @product |
13
- | [External plans for @product](./external-plans-for-product.md) *(coming soon)* | You already planned in another chat (ChatGPT, Claude.io, Gemini Web) | @product (reads `/plans/`) |
13
+ | [External plans for @product](./external-plans-for-product.md) *(coming soon)* | You already planned in another chat (ChatGPT, Claude.io Web) | @product (reads `/plans/`) |
14
14
 
15
15
  ## Recipes by scenario
16
16
 
@@ -10,7 +10,7 @@
10
10
  ## The trail in one line
11
11
 
12
12
  ```
13
- /aioson:agent:product → @sheldon → @analyst → @architect → @ux-ui → @pm → @orchestrator → @dev
13
+ /aioson:agent:product → @sheldon → @analyst → @architect → @ux-ui → @pm → @orchestrator → @scope-check → @dev
14
14
 
15
15
  (@qa ↔ @dev) ← autonomous loop
16
16
 
@@ -299,7 +299,7 @@ Six months from now, anyone (or any AI) reads these files and understands **ever
299
299
  `@product → @dev → @qa`. Skip `@sheldon`, `@analyst`, `@architect`, `@ux-ui`, `@pm`, `@orchestrator`. The Constitution Article II (*Right-Sized Process*) protects you from unnecessary ceremony.
300
300
 
301
301
  ### SMALL without UI
302
- `@product → @sheldon → @analyst → @architect → @dev → @qa`. Skip `@ux-ui`, `@pm`, `@orchestrator`.
302
+ `@product → @sheldon → @analyst → @scope-check → @architect → @dev → @qa`. Skip `@ux-ui`, `@pm`, `@orchestrator`.
303
303
 
304
304
  ### Full MEDIUM
305
305
  The complete trail above.
@@ -17,7 +17,7 @@ aioson init my-app --no-interactive
17
17
 
18
18
  **Options:**
19
19
  - `--lang=en|pt-BR|es|fr` — sets `conversation_language` in the generated context and applies the matching agent locale pack. Default: `en`.
20
- - `--tool=codex|claude|gemini|opencode` — configures the primary AI client. Affects which gateway file is used. Default: `codex`.
20
+ - `--tool=codex|claude|opencode` — configures the primary AI client. Affects which gateway file is used. Default: `codex`.
21
21
  - `--no-interactive` — skip the wizard and install all files (CI / automation).
22
22
  - `--json` — prints structured JSON result instead of human-readable output.
23
23
 
@@ -44,8 +44,8 @@ aioson install --no-interactive
44
44
 
45
45
  **Options:**
46
46
  - `--lang=en|pt-BR|es|fr` — sets locale pack.
47
- - `--tool=codex|claude|gemini|opencode` — configures AI client.
48
- - `--reconfigure` — re-run the wizard even if a profile already exists (e.g. to add Gemini later).
47
+ - `--tool=codex|claude|opencode` — configures AI client.
48
+ - `--reconfigure` — re-run the wizard even if a profile already exists (e.g. to add another supported tool later).
49
49
  - `--no-interactive` — skip the wizard and install all files.
50
50
  - `--force` — overwrite existing files.
51
51
  - `--dry-run` — preview without writing.
@@ -129,7 +129,7 @@ aioson doctor --json
129
129
 
130
130
  **Checks performed:**
131
131
  - All files in `MANAGED_FILES` exist.
132
- - Gateway files (`CLAUDE.md`, `AGENTS.md`, `OPENCODE.md`, `.gemini/GEMINI.md`) are present.
132
+ - Gateway files (`CLAUDE.md`, `AGENTS.md`, `OPENCODE.md`, `OPENCODE.md`) are present.
133
133
  - `.aioson/agents/` directory is populated.
134
134
  - `.aioson/context/` directory exists.
135
135
 
@@ -248,25 +248,25 @@ The locale shown reflects the active agent locale pack (from `project.context.md
248
248
  Print the activation prompt for a specific agent, ready to paste into any AI CLI that does not support slash commands.
249
249
 
250
250
  ```bash
251
- aioson agent:prompt setup
252
- aioson agent:prompt setup --tool=codex
253
- aioson agent:prompt ux-ui --tool=claude
254
- aioson agent:prompt dev --tool=gemini --json
251
+ aioson agent:prompt setup
252
+ aioson agent:prompt setup --tool=codex
253
+ aioson agent:prompt ux-ui --tool=claude
254
+ aioson agent:prompt dev --tool=opencode --json
255
255
  ```
256
256
 
257
257
  **Arguments:**
258
- - `<agent>` — agent id: `setup`, `product`, `analyst`, `architect`, `ux-ui`, `pm`, `dev`, `qa`, `orchestrator`.
258
+ - `<agent>` — agent id: `setup`, `product`, `analyst`, `scope-check`, `architect`, `ux-ui`, `pm`, `dev`, `qa`, `orchestrator`.
259
259
 
260
260
  **Options:**
261
- - `--tool=codex|claude|gemini|opencode` — formats the prompt for the target CLI. Default: `codex`.
261
+ - `--tool=codex|claude|opencode` — formats the prompt for the target CLI. Default: `codex`.
262
262
  - `--json` — returns structured JSON with the prompt string.
263
263
 
264
264
  **When to use:** if you're using an AI CLI that doesn't support `/aioson:agent:setup` slash commands, run this to get the exact text to paste into the chat.
265
265
 
266
266
  ```bash
267
- # Copy the prompt for @analyst in Gemini
268
- aioson agent:prompt analyst --tool=gemini
269
- # → paste the output into Gemini CLI
267
+ # Copy the prompt for @analyst in OpenCode
268
+ aioson agent:prompt analyst --tool=opencode
269
+ # → paste the output into OpenCode
270
270
  ```
271
271
 
272
272
  ---
@@ -302,18 +302,18 @@ Notes:
302
302
 
303
303
  **Sequences by classification:**
304
304
  - `MICRO`: `@setup → @product (optional) → @dev`
305
- - `SMALL`: `@setup → @product → @analyst → @architect → @dev → @qa`
306
- - `MEDIUM`: `@setup → @product → @analyst → @architect → @ux-ui → @pm → @orchestrator → @dev → @qa`
305
+ - `SMALL`: `@setup → @product → @analyst → @scope-check → @architect → @dev → @qa`
306
+ - `MEDIUM`: `@setup → @product → @analyst → @architect → @ux-ui → @pm → @orchestrator → @scope-check → @dev → @qa`
307
307
 
308
308
  **Feature development workflow (after initial setup):**
309
309
 
310
310
  Once the project is set up, each new feature follows a shorter sequence — no `@setup` required:
311
311
 
312
312
  ```
313
- /aioson:agent:product → @analyst → @dev → @qa
313
+ /aioson:agent:product → @analyst → @scope-check → @dev → @qa
314
314
  ```
315
315
 
316
- `@product` creates a feature-scoped `prd-{slug}.md` and registers the feature in `features.md`. `@analyst` produces `requirements-{slug}.md` and `spec-{slug}.md`. `@dev` reads the feature spec. `@qa` closes the feature by running `feature:close --verdict=PASS`, which updates `spec-{slug}.md` with a QA sign-off, marks it `done` in `features.md`, and automatically archives all feature artefacts to `.aioson/context/done/{slug}/`.
316
+ `@product` creates a feature-scoped `prd-{slug}.md` and registers the feature in `features.md`. `@analyst` produces `requirements-{slug}.md` and `spec-{slug}.md`. `@scope-check` compares intent against the planned implementation before coding. `@dev` reads the feature spec. `@qa` closes the feature by running `feature:close --verdict=PASS`, which updates `spec-{slug}.md` with a QA sign-off, marks it `done` in `features.md`, and automatically archives all feature artefacts to `.aioson/context/done/{slug}/`.
317
317
 
318
318
  The `SMALL` and MEDIUM outputs include a note reminding you of this sequence.
319
319
 
@@ -33,7 +33,7 @@ aioson mcp:doctor --json
33
33
  Checks include:
34
34
  - `servers.local.json` existence and JSON validity
35
35
  - Core server baseline (`filesystem`, `context7`)
36
- - Preset coverage (`claude`, `codex`, `gemini`, `opencode`)
36
+ - Preset coverage (`claude`, `codex`, `opencode`)
37
37
  - Required environment variables from enabled servers
38
38
  - Context compatibility for database and Web3 (`chain-rpc`)
39
39
 
package/docs/en/README.md CHANGED
@@ -23,7 +23,7 @@ This is the entry door to the English documentation. It is not an alphabetical i
23
23
  ### I want a recipe ready for my case
24
24
 
25
25
  **Canonical trails — how features reach the dev:**
26
- 1. **[Full feature with @sheldon](./3-recipes/full-feature-with-sheldon.md)** — the main trail: `@product → @sheldon → @analyst → @architect → @ux-ui → @pm → @orchestrator → @dev → @qa` (with optional gates from `@tester` and `@pentester`)
26
+ 1. **[Full feature with @sheldon](./3-recipes/full-feature-with-sheldon.md)** — the main trail: `@product → @sheldon → @analyst → @architect → @ux-ui → @pm → @orchestrator → @scope-check → @dev → @qa` (with optional gates from `@tester` and `@pentester`)
27
27
  2. [From idea to PRD via @briefing](./3-recipes/from-idea-to-prd-via-briefing.md) — when the idea is still vague
28
28
  3. [Continuity between sessions](./3-recipes/continuity-between-sessions.md) — feature dossier, dev-resume, drift detection
29
29
 
@@ -82,7 +82,7 @@ npx @jaimevalasek/aioson init my-project
82
82
  # 2. Enter the project
83
83
  cd my-project
84
84
 
85
- # 3. Open your AI client (Claude Code, Codex, Gemini, OpenCode) and type:
85
+ # 3. Open your AI client (Claude Code, Codex e OpenCode) and type:
86
86
  /aioson:agent:setup
87
87
  ```
88
88
 
@@ -21,7 +21,7 @@ This folder documents the full feature — 3 phases, 3 CLI verbs, 1 advisory che
21
21
  - Harness with sub-agent support: Claude Code (Agent tool) or Codex (MultiAgentV2)
22
22
  - `.aioson/config/scout-engine.json` in the project (copied automatically by the installer as `{}`, defaults active)
23
23
 
24
- > **Gemini CLI / OpenCode:** emit `harness_unsupported` and automatically fall back to `deyvin.md`'s CLI-less inline flow. Full harness parity is V2.
24
+ > **OpenCode:** emit `harness_unsupported` and automatically fall back to `deyvin.md`'s CLI-less inline flow. Full harness parity is V2.
25
25
 
26
26
  ---
27
27
 
@@ -85,7 +85,7 @@ Pure module `src/sub-task-engine.js`: prompt template builder, hand-rolled JSON
85
85
  Three CLI verbs (`scout:prep`, `scout:validate`, `scout:commit`) + state with file-lock in `src/sub-task-state.js`. Config template `template/.aioson/config/scout-engine.json` (empty `{}`; defaults active). Sandbox path check: `scope_paths` outside the project root are rejected.
86
86
 
87
87
  ### Phase 3 — `wiring-and-lifecycle`
88
- - `deyvin.md` (workspace + template byte-identical, 13611 bytes, under 15360 limit): new "Sub-task scout invocation" section with CLI path + CLI-less fallback per harness (Claude Code Agent tool, Codex MultiAgentV2, Gemini/OpenCode with `harness_unsupported` message)
88
+ - `deyvin.md` (workspace + template byte-identical, 13611 bytes, under 15360 limit): new "Sub-task scout invocation" section with CLI path + CLI-less fallback per harness (Claude Code Agent tool, Codex MultiAgentV2/OpenCode with `harness_unsupported` message)
89
89
  - `feature:close`: archival hook copies scouts with matching `feature_slug` to `.aioson/context/features/{slug}/scouts/`, appends bullet to dossier
90
90
  - `memory:summary`: "Scouts dispatched: N (top topics: ...)" row always present — visible in agent cold-load bootstrap
91
91
  - `doctor`: `scouts_directory_pruning` advisory check (orphaned scouts >90d); `--fix` deletes them; scouts with `feature_slug` are **never** pruned
@@ -88,7 +88,7 @@ You have 1 retry (`max_retries_on_malformed_json=1`). If the second attempt also
88
88
 
89
89
  ## Harness without sub-agent support (`harness_unsupported`)
90
90
 
91
- **Symptom:** Gemini CLI or OpenCode don't natively support the Agent tool / sub-agent.
91
+ **Symptom:** OpenCode don't natively support the Agent tool / sub-agent.
92
92
 
93
93
  **What happens:** `scout:prep` returns normally, but the harness emits `harness_unsupported` when trying to dispatch the sub-agent.
94
94
 
@@ -14,7 +14,7 @@ Termos em ordem alfabética. Cada um tem **definição curta** + **exemplo concr
14
14
 
15
15
  **Exemplo:** `@dev` é o agente que implementa código. `@qa` é o que escreve testes. `@pentester` é o que tenta quebrar a feature de propósito.
16
16
 
17
- **Como invocar:** digite `@nome` no seu cliente AI (Claude, Codex, Gemini, OpenCode) ou descreva a intenção em linguagem natural ("vamos implementar a feature").
17
+ **Como invocar:** digite `@nome` no seu cliente AI (Claude, Codex e OpenCode) ou descreva a intenção em linguagem natural ("vamos implementar a feature").
18
18
 
19
19
  ---
20
20
 
@@ -73,7 +73,7 @@ Termos em ordem alfabética. Cada um tem **definição curta** + **exemplo concr
73
73
 
74
74
  **Como funciona:**
75
75
  - 0–1 ponto → **MICRO** (`@setup → @product → @dev`)
76
- - 2–3 pontos → **SMALL** (`@setup → @product → @analyst → @architect → @dev → @qa`)
76
+ - 2–3 pontos → **SMALL** (`@setup → @product → @analyst → @scope-check → @architect → @dev → @qa`)
77
77
  - 4–6 pontos → **MEDIUM** (workflow completo, todos os gates, todos os artefatos)
78
78
 
79
79
  **Onde aparece:** `classification:` no frontmatter do `project.context.md`.
@@ -84,7 +84,7 @@ Termos em ordem alfabética. Cada um tem **definição curta** + **exemplo concr
84
84
 
85
85
  **Definição:** o programa onde você de fato conversa com a IA. AIOSON é agnóstico — funciona com vários.
86
86
 
87
- **Suportados oficialmente:** Claude Code, Codex CLI, Gemini CLI, OpenCode.
87
+ **Suportados oficialmente:** Claude Code, Codex CLI, OpenCode.
88
88
  **Funciona também via terminal:** VS Code, Cursor, Windsurf, JetBrains IDEs, Zed, Antigravity (qualquer um que abra um terminal).
89
89
 
90
90
  **Onde ver mais:** `clientes-ai.md`.
@@ -71,8 +71,8 @@
71
71
  A ordem padrão depende da classificação:
72
72
 
73
73
  **MICRO:** `@setup → @product (opcional) → @dev`
74
- **SMALL:** `@setup → @product → @sheldon (opcional) → @analyst → @architect → @dev → @qa`
75
- **MEDIUM:** `@setup → @product → @sheldon → @analyst → @architect → @ux-ui → @pm → @orchestrator → @dev → @qa`
74
+ **SMALL:** `@setup → @product → @sheldon (opcional) → @analyst → @scope-check → @architect → @dev → @qa`
75
+ **MEDIUM:** `@setup → @product → @sheldon → @analyst → @architect → @ux-ui → @pm → @orchestrator → @scope-check → @dev → @qa`
76
76
 
77
77
  > **Por que `@sheldon` aparece tão cedo?** Ele é o **PRD quality guardian** — roda *entre* `@product` e `@analyst` para detectar gaps, validar premissas técnicas com pesquisa web, e decidir entre enriquecer o PRD in-place ou criar um phased plan em `.aioson/plans/{slug}/`. Pode ser invocado N vezes no mesmo PRD. Pular essa etapa em features sérias custa caro lá na frente.
78
78
 
@@ -56,7 +56,7 @@ seu-projeto/
56
56
  │ ├── rules/ ← regras hard que agentes seguem (segurança, etc.)
57
57
  │ ├── skills/ ← pacotes plugáveis (design systems, processos)
58
58
  │ └── runtime/ ← telemetria local (SQLite)
59
- ├── .claude/ .codex/ .gemini/ .windsurf/ integração com cada cliente AI
59
+ ├── .claude/ .codex/ configuração nativa dos clientes
60
60
  ├── CLAUDE.md AGENTS.md OPENCODE.md ← instruções por cliente
61
61
  └── docs/ ← documentação opcional
62
62
  ```
@@ -67,7 +67,7 @@ Você abre seu cliente AI favorito e digita `@setup`, `@product`, `@dev` etc.
67
67
 
68
68
  Funciona com **qualquer IDE que tenha um terminal**:
69
69
 
70
- - Claude Code · Codex CLI · Gemini CLI · OpenCode
70
+ - Claude Code · Codex CLI · OpenCode
71
71
  - VS Code, Google Antigravity, Cursor, Windsurf, JetBrains, Zed (com qualquer um dos clientes acima)
72
72
 
73
73
  Os agentes são *prompts*, não plugins. Eles vivem em arquivos `.md` e o cliente AI os lê quando você invoca via `@nome`.
@@ -31,7 +31,7 @@ Você programa uma feature por 2 horas com a IA, vai dormir, volta no dia seguin
31
31
 
32
32
  ### Problema 3 — Inconsistência no time
33
33
 
34
- Em time, cada pessoa tem um estilo de prompt. Cada IA cliente (Claude, Codex, Gemini) responde diferente. O resultado é um codebase costurado por estéticas e padrões diferentes.
34
+ Em time, cada pessoa tem um estilo de prompt. Cada IA cliente (Claude, Codex) responde diferente. O resultado é um codebase costurado por estéticas e padrões diferentes.
35
35
 
36
36
  **Como AIOSON resolve:**
37
37
  - Os mesmos agentes (`.aioson/agents/`) são lidos por **qualquer** cliente AI.
@@ -41,7 +41,7 @@ Soma de três fatores (cada um vale 0, 1 ou 2 pontos):
41
41
  - Página estática de portfólio
42
42
  - Mini-API de 3 endpoints
43
43
 
44
- #### SMALL — `@setup → @product → @analyst → @architect → @dev → @qa`
44
+ #### SMALL — `@setup → @product → @analyst → @scope-check → @architect → @dev → @qa`
45
45
 
46
46
  - Para: a maioria dos apps reais.
47
47
  - Tem o ciclo completo de discovery+desenvolvimento+QA.
@@ -88,7 +88,7 @@ Você pode marcar **mais de um** no wizard — eles convivem no mesmo projeto.
88
88
  |---|---|---|
89
89
  | **Claude Code** | Agentes longos, refatorações, tarefas planejadas | Skills nativos, slash commands, hooks |
90
90
  | **Codex CLI** | Tarefas curtas, foco em código direto | Modo `@` para incluir arquivos |
91
- | **Gemini CLI** | Multi-modal, custo baixo em alguns planos | Janela de contexto generosa |
91
+ | | Multi-modal, custo baixo em alguns planos | Janela de contexto generosa |
92
92
  | **OpenCode** | Open-source, integração com vários providers | Configuração granular |
93
93
 
94
94
  **Recomendação para iniciante:** comece com Claude Code, é o que tem mais paridade com AIOSON. Adicione outros depois com `aioson install --reconfigure`.
@@ -183,7 +183,7 @@ npx @jaimevalasek/aioson install --no-interactive
183
183
 
184
184
  | Quero mudar... | Comando |
185
185
  |---|---|
186
- | Adicionar Codex/Gemini ao mesmo projeto | `aioson install --reconfigure` |
186
+ | Adicionar Codex ao mesmo projeto | `aioson install --reconfigure` |
187
187
  | Ativar Squads | `aioson install --reconfigure` (e marque) |
188
188
  | Trocar design skill | `@ux-ui` no cliente AI ou `aioson install --reconfigure` |
189
189
  | Mudar idioma de interação | Edite `interaction_language:` em `project.context.md` ou rode `@setup` de novo |
@@ -11,7 +11,7 @@ Vamos construir um **mini-app de TODO** usando o ciclo SMALL. Você verá cada a
11
11
  ## Pré-requisitos
12
12
 
13
13
  - **Node.js 18+** instalado
14
- - Um cliente AI configurado: **Claude Code**, **Codex CLI**, **Gemini CLI** ou **OpenCode**. Os exemplos aqui usam Claude Code; é trivial trocar.
14
+ - Um cliente AI configurado: **Claude Code**, **Codex CLI** ou **OpenCode**. Os exemplos aqui usam Claude Code; é trivial trocar.
15
15
  - Um terminal aberto
16
16
 
17
17
  Se você não tem cliente AI ainda: o Claude Code é o mais usado pela comunidade AIOSON. Veja [`clientes-ai.md`](../5-referencia/clientes-ai.md).
@@ -52,7 +52,7 @@ meu-todo/
52
52
  ## Passo 2 — Abrir o cliente AI no projeto
53
53
 
54
54
  ```bash
55
- claude . # ou: codex . ou: gemini . ou: opencode .
55
+ claude . # ou: codex . ou: opencode .
56
56
  ```
57
57
 
58
58
  A partir daqui, vamos conversar com a IA.
@@ -296,7 +296,7 @@ Ele te diz quem é o próximo.
296
296
  | Quero retomar uma feature interrompida | Rode `@deyvin` — ele lê `dev-state.md` e continua. |
297
297
  | Não sei se a classificação certa é SMALL | Pergunte ao `@neo` — ele explica o cálculo. |
298
298
  | Falhou ao instalar | `npx @jaimevalasek/aioson doctor` — diagnostica e sugere fix. |
299
- | Quero adicionar Codex/Gemini depois | `npx @jaimevalasek/aioson install --reconfigure`. |
299
+ | Quero adicionar Codex depois | `npx @jaimevalasek/aioson install --reconfigure`. |
300
300
 
301
301
  ---
302
302
 
@@ -30,10 +30,9 @@ O wizard interativo aparece:
30
30
 
31
31
  ```
32
32
  ? Quais ferramentas AI? ›
33
- ◉ Claude Code
34
- ◉ Codex CLI
35
- Gemini CLI
36
- ◯ OpenCode
33
+ ◉ Claude Code
34
+ ◉ Codex CLI
35
+ OpenCode
37
36
 
38
37
  ? Modo? ›
39
38
  ◉ Development
@@ -75,7 +74,7 @@ O scan vai:
75
74
  ## Passo 3 — Rodar `@setup`
76
75
 
77
76
  ```bash
78
- claude . # ou: codex . / gemini . / opencode .
77
+ claude . # ou: codex . / opencode .
79
78
  ```
80
79
 
81
80
  Dentro do cliente AI:
@@ -8,9 +8,9 @@ Estas três trilhas mostram **como features chegam ao desenvolvimento** no AIOSO
8
8
 
9
9
  | Trilha | Quando usar | Agentes-chave |
10
10
  |---|---|---|
11
- | **[Feature completa com @sheldon](./feature-completa-com-sheldon.md)** | Você tem PRD em mente e quer a trilha canônica completa (a mais usada) | @product → @sheldon → @analyst → @architect → @ux-ui → @pm → @orchestrator → @dev → @qa |
11
+ | **[Feature completa com @sheldon](./feature-completa-com-sheldon.md)** | Você tem PRD em mente e quer a trilha canônica completa (a mais usada) | @product → @sheldon → @analyst → @architect → @ux-ui → @pm → @orchestrator → @scope-check → @dev → @qa |
12
12
  | [Da ideia ao PRD via @briefing](./da-ideia-ao-prd-via-briefing.md) | Sua ideia ainda é vaga, várias anotações soltas | @briefing → @product |
13
- | [Plans externos para @product](./plans-externos-para-product.md) | Você já planejou em outro chat (ChatGPT, Claude.io, Gemini Web) | @product (lê `/plans/`) |
13
+ | [Plans externos para @product](./plans-externos-para-product.md) | Você já planejou em outro chat (ChatGPT, Claude.io Web) | @product (lê `/plans/`) |
14
14
 
15
15
  ## Receitas por cenário
16
16
 
@@ -10,7 +10,7 @@
10
10
  ## A trilha em uma linha
11
11
 
12
12
  ```
13
- @product → @sheldon → @analyst → @architect → @ux-ui → @pm → @orchestrator → @dev
13
+ @product → @sheldon → @analyst → @architect → @ux-ui → @pm → @orchestrator → @scope-check → @dev
14
14
 
15
15
  (@qa ↔ @dev) ← ciclo autônomo
16
16
 
@@ -299,7 +299,7 @@ Daqui a 6 meses, qualquer pessoa (ou IA) lê esses arquivos e entende **tudo**:
299
299
  `@product → @dev → @qa`. Pule `@sheldon`, `@analyst`, `@architect`, `@ux-ui`, `@pm`, `@orchestrator`. A Constitution Article II (*Right-Sized Process*) protege você de cerimônia desnecessária.
300
300
 
301
301
  ### SMALL sem UI
302
- `@product → @sheldon → @analyst → @architect → @dev → @qa`. Pule `@ux-ui`, `@pm`, `@orchestrator`.
302
+ `@product → @sheldon → @analyst → @scope-check → @architect → @dev → @qa`. Pule `@ux-ui`, `@pm`, `@orchestrator`.
303
303
 
304
304
  ### MEDIUM puro
305
305
  A trilha completa acima.
@@ -21,7 +21,7 @@ Este é um projeto **SMALL** (1 tipo de usuário, 0 integrações externas, sem
21
21
  ## Pré-requisitos
22
22
 
23
23
  - Node.js 18+ instalado
24
- - Claude Code (ou Codex/Gemini/OpenCode)
24
+ - Claude Code (ou Codex/OpenCode)
25
25
  - AIOSON instalado no projeto (`npx @jaimevalasek/aioson init minha-landing`)
26
26
  - Opcional: uma URL de referência para estilo visual (qualquer site público que você admire)
27
27
 
@@ -39,7 +39,7 @@
39
39
  | Documento | Descrição |
40
40
  |---|---|
41
41
  | [comandos-cli.md](./comandos-cli.md) | Referência completa de todos os comandos do `aioson` |
42
- | [clientes-ai.md](./clientes-ai.md) | Como usar com Claude Code, Codex, Gemini CLI e OpenCode |
42
+ | [clientes-ai.md](./clientes-ai.md) | Como usar com Claude Code, Codex e OpenCode |
43
43
  | [sandbox.md](./sandbox.md) | Execução segura com timeout, redação de secrets e output summarizado |
44
44
  | [compress-agents.md](./compress-agents.md) | Reduzir consumo de tokens comprimindo instruções de agentes |
45
45
  | [agent-sharding.md](./agent-sharding.md) | Carregar somente as seções relevantes de um agente para uma tarefa |