sinapse-ai 1.25.1 → 1.25.3

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 (36) hide show
  1. package/.sinapse-ai/data/entity-registry.yaml +39 -14
  2. package/.sinapse-ai/install-manifest.yaml +3 -3
  3. package/CHANGELOG.md +2 -8
  4. package/README.en.md +38 -30
  5. package/README.md +33 -25
  6. package/bin/commands/install.js +6 -2
  7. package/bin/commands/update.js +6 -2
  8. package/bin/lib/command-generator.js +60 -36
  9. package/bin/lib/global-provider-adapters.js +244 -49
  10. package/bin/lib/provider-contract.js +23 -0
  11. package/bin/lib/provider-parity.js +60 -9
  12. package/docs/getting-started.md +13 -5
  13. package/docs/guides/codex-config.md +35 -51
  14. package/docs/guides/ide-integration.md +22 -23
  15. package/docs/guides/project-status-feature.md +35 -55
  16. package/docs/guides/user-guide.md +21 -10
  17. package/docs/installation/README.md +4 -4
  18. package/docs/installation/faq.md +84 -70
  19. package/docs/installation/linux.md +11 -14
  20. package/docs/installation/macos.md +10 -4
  21. package/docs/installation/troubleshooting.md +10 -4
  22. package/docs/installation/v4-quick-start.md +13 -13
  23. package/docs/installation/windows.md +11 -15
  24. package/docs/pt/guides/project-status-feature.md +35 -55
  25. package/docs/pt/guides/user-guide.md +21 -11
  26. package/docs/pt/installation/README.md +2 -4
  27. package/docs/pt/installation/faq.md +54 -89
  28. package/docs/pt/installation/linux.md +9 -27
  29. package/docs/pt/installation/macos.md +8 -12
  30. package/docs/pt/installation/troubleshooting.md +10 -8
  31. package/docs/pt/installation/v4-quick-start.md +16 -16
  32. package/docs/pt/installation/windows.md +8 -21
  33. package/docs/troubleshooting.md +9 -7
  34. package/package.json +1 -1
  35. package/scripts/validate-article-vii.js +305 -20
  36. package/scripts/validate-install-docs.js +87 -3
@@ -75,11 +75,11 @@ npx sinapse-ai install
75
75
  The installer will:
76
76
 
77
77
  - Create `.sinapse-ai/` directory (framework files)
78
- - Create IDE configuration (`.claude/`, etc.)
78
+ - Create Claude Code and Codex adapters (`.claude/`, `.codex/`, and `.agents/skills/`)
79
79
  - NOT modify your existing source code
80
80
  - NOT overwrite existing documentation unless you choose to
81
81
 
82
- **Important:** If you have an existing `.claude/` directory, the installer will ask before modifying.
82
+ **Important:** Existing provider directories are reconciled conservatively; keep custom files outside framework-managed adapter names.
83
83
 
84
84
  ---
85
85
 
@@ -106,26 +106,26 @@ Factors affecting installation time:
106
106
 
107
107
  **Answer:** SINAPSE creates the following structure:
108
108
 
109
- ```
109
+ ```text
110
110
  your-project/
111
- ├── .sinapse-ai/ # Framework core (200+ files)
112
- ├── agents/ # 11+ agent definitions
113
- │ ├── tasks/ # 60+ task workflows
114
- │ ├── templates/ # 20+ document templates
115
- │ ├── checklists/ # Validation checklists
116
- │ ├── scripts/ # Utility scripts
117
- │ └── core-config.yaml # Framework configuration
111
+ ├── .sinapse-ai/ # Runtime, configuration, and development assets
112
+ └── core-config.yaml # Framework configuration
118
113
 
119
114
  ├── .claude/ # Claude Code (if selected)
120
- └── agents/ # Native Claude agents
115
+ ├── agents/ # Native Claude agent adapters
116
+ │ └── skills/ # Claude Code skills
117
+
118
+ ├── .codex/ # Codex (if selected)
119
+ │ └── agents/ # Native Codex agent descriptors
120
+
121
+ ├── .agents/skills/ # Codex-compatible SINAPSE skills
121
122
 
122
123
  ├── docs/ # Documentation structure
123
124
  │ ├── stories/ # Development stories
124
125
  │ ├── architecture/ # Architecture docs
125
126
  │ └── prd/ # Product requirements
126
127
 
127
- └── Squads/ # (if installed)
128
- └── squad-brand/ # HybridOps pack
128
+ └── squads/ # 17 squad definitions and their assets
129
129
  ```
130
130
 
131
131
  ---
@@ -219,8 +219,19 @@ mv .sinapse-ai.backup .sinapse-ai
219
219
  # Install once with internet
220
220
  npx sinapse-ai install
221
221
 
222
- # Package for offline use
223
- tar -czvf sinapse-offline.tar.gz .sinapse-ai/ .claude/
222
+ # Package every available component (macOS, Linux, or Git Bash)
223
+ set --
224
+ for path in .sinapse-ai .claude .codex .agents squads; do
225
+ [ ! -e "$path" ] || set -- "$@" "$path"
226
+ done
227
+ tar -czvf sinapse-offline.tar.gz "$@"
228
+ ```
229
+
230
+ ```powershell
231
+ # PowerShell: omit provider directories that are not installed
232
+ $paths = @('.sinapse-ai', '.claude', '.codex', '.agents', 'squads') |
233
+ Where-Object { Test-Path -LiteralPath $_ }
234
+ tar -czvf sinapse-offline.tar.gz $paths
224
235
  ```
225
236
 
226
237
  **On air-gapped machine:**
@@ -251,7 +262,20 @@ tar -xzvf sinapse-offline.tar.gz
251
262
  # Install and package
252
263
  npx sinapse-ai install
253
264
  cd your-project
254
- tar -czvf sinapse-transfer.tar.gz .sinapse-ai/ .claude/ docs/
265
+
266
+ # Include every component that exists (macOS, Linux, or Git Bash)
267
+ set --
268
+ for path in .sinapse-ai .claude .codex .agents squads docs; do
269
+ [ ! -e "$path" ] || set -- "$@" "$path"
270
+ done
271
+ tar -czvf sinapse-transfer.tar.gz "$@"
272
+ ```
273
+
274
+ ```powershell
275
+ # PowerShell equivalent
276
+ $paths = @('.sinapse-ai', '.claude', '.codex', '.agents', 'squads', 'docs') |
277
+ Where-Object { Test-Path -LiteralPath $_ }
278
+ tar -czvf sinapse-transfer.tar.gz $paths
255
279
  ```
256
280
 
257
281
  2. **Transfer the archive** via USB, secure transfer, etc.
@@ -273,18 +297,26 @@ tar -xzvf sinapse-offline.tar.gz
273
297
 
274
298
  **Answer:**
275
299
 
276
- | IDE | Status | Agent Activation |
277
- | --------------- | ------------ | ------------------- |
278
- | **Claude Code** | Full Support | `/dev`, `/qa`, etc. |
279
- | **Codex CLI** | Limited | `/skills` flow |
300
+ | IDE | Status | Agent Activation |
301
+ | --------------- | ------------ | ----------------------------------- |
302
+ | **Claude Code** | Full Support | `@developer`, `@quality-gate`, etc. |
303
+ | **Codex CLI** | Full Support | `$snps` or `$sinapse-agent <id>` |
280
304
 
281
305
  ---
282
306
 
283
307
  ### Q12: Can I configure SINAPSE for multiple IDEs?
284
308
 
285
- **Answer:** Yes! Select multiple IDEs during installation:
309
+ **Answer:** Yes. Claude Code and Codex can use the same canonical SINAPSE
310
+ installation. Run `npx sinapse-ai install`; the installer generates the
311
+ provider-native adapters:
312
+
313
+ - Claude Code agents: `.claude/agents/`
314
+ - Codex agents: `.codex/agents/`
315
+ - Codex skills: `.agents/skills/`
286
316
 
287
- The installer configures supported IDEs automatically. Claude Code uses `.claude/commands/` for agent configuration.
317
+ Activate with `@developer` in Claude Code or `$sinapse-agent developer` in
318
+ Codex. Use `$snps` in Codex when you want the primary orchestrator to route the
319
+ request.
288
320
 
289
321
  ---
290
322
 
@@ -299,7 +331,7 @@ If `.sinapse-ai/` is committed to your repository:
299
331
  git clone your-repo
300
332
  cd your-repo
301
333
 
302
- # Optionally configure their preferred IDE
334
+ # Generate or reconcile the Claude Code and Codex adapters
303
335
  npx sinapse-ai install
304
336
  ```
305
337
 
@@ -319,55 +351,37 @@ npx sinapse-ai install
319
351
 
320
352
  ### Q14: What agents are included?
321
353
 
322
- **Answer:** SINAPSE includes 11+ specialized agents:
323
-
324
- | Agent | Role | Best For |
325
- | --------------- | -------------------- | ------------------------------- |
326
- | `dev` | Full-Stack Developer | Code implementation, debugging |
327
- | `qa` | QA Engineer | Testing, code review |
328
- | `architect` | System Architect | Design, architecture decisions |
329
- | `pm` | Project Manager | Planning, tracking |
330
- | `po` | Product Owner | Backlog, requirements |
331
- | `sm` | Scrum Master | Facilitation, sprint management |
332
- | `analyst` | Business Analyst | Requirements analysis |
333
- | `ux-expert` | UX Designer | User experience design |
334
- | `data-engineer` | Data Engineer | Data pipelines, ETL |
335
- | `devops` | DevOps Engineer | CI/CD, deployment |
336
- | `db-sage` | Database Architect | Schema design, queries |
354
+ **Answer:** SINAPSE includes **172 agents across 17 squads**. The squad layer
355
+ contains 160 members, and the framework layer contains 12. The framework set is:
356
+
357
+ | Agent | Persona | Role |
358
+ | ----- | ------- | ---- |
359
+ | `snps-orqx` | Imperator | Primary cross-squad orchestrator |
360
+ | `developer` | Pixel | Full-stack implementation and debugging |
361
+ | `quality-gate` | Litmus | Testing, review, and quality gates |
362
+ | `architect` | Stratum | System architecture and technology decisions |
363
+ | `project-lead` | Beacon | Product management and epics |
364
+ | `product-lead` | Axis | Story validation and prioritization |
365
+ | `sprint-lead` | Sync | Story creation and sprint facilitation |
366
+ | `analyst` | Scope | Research and business analysis |
367
+ | `data-engineer` | Tensor | Database design, migrations, and RLS |
368
+ | `ux-design-expert` | Mosaic | UX/UI and design systems |
369
+ | `devops` | Pipeline | CI/CD, exclusive push authority, and releases |
370
+ | `squad-creator` | Loom | Squad creation and extension |
371
+
372
+ In Claude Code, activate an agent with `@agent-id`. In Codex, use `$snps` for
373
+ routing or `$sinapse-agent agent-id` for direct activation. Both providers
374
+ resolve the same canonical agent and task sources.
337
375
 
338
376
  ---
339
377
 
340
378
  ### Q15: How do I create a custom agent?
341
379
 
342
- **Answer:**
343
-
344
- 1. **Copy an existing agent:**
345
-
346
- ```bash
347
- cp .sinapse-ai/agents/developer.md .sinapse-ai/agents/my-agent.md
348
- ```
349
-
350
- 2. **Edit the YAML frontmatter:**
351
-
352
- ```yaml
353
- agent:
354
- name: MyAgent
355
- id: my-agent
356
- title: My Custom Agent
357
- icon: 🔧
358
-
359
- persona:
360
- role: Expert in [your domain]
361
- style: [communication style]
362
- ```
363
-
364
- 3. **Add to IDE configuration:**
365
-
366
- ```bash
367
- npx sinapse-ai install --ide claude-code
368
- ```
369
-
370
- 4. **Activate:** `/my-agent` or `@my-agent`
380
+ **Answer:** Keep framework agents immutable and create extensions through the
381
+ squad workflow. In Claude Code, activate `@squad-creator`; in Codex, use
382
+ `$sinapse-agent squad-creator`. After the squad definition is validated, run
383
+ `npx sinapse-ai@latest install --reconfigure` to regenerate the selected provider
384
+ adapters from the canonical source.
371
385
 
372
386
  ---
373
387
 
@@ -380,10 +394,10 @@ npx sinapse-ai install
380
394
  - Logs all decisions in `.ai/decision-log-{story-id}.md`
381
395
  - Can be stopped at any time
382
396
 
383
- **Enable yolo mode:**
397
+ **Enable yolo mode:** Activate `@developer` in Claude Code or
398
+ `$sinapse-agent developer` in Codex, then run:
384
399
 
385
- ```bash
386
- /dev
400
+ ```text
387
401
  *develop-yolo docs/stories/your-story.md
388
402
  ```
389
403
 
@@ -180,8 +180,9 @@ The installer automatically:
180
180
 
181
181
  - ✅ Detects your Linux distribution and applies optimizations
182
182
  - ✅ Creates necessary directories with proper Unix permissions (755/644)
183
- - ✅ Configures IDE paths for Linux:
184
- - Claude: `~/.claude/`
183
+ - ✅ Configures provider adapters in the project:
184
+ - Claude Code agents: `.claude/agents/`
185
+ - Codex agents and skills: `.codex/agents/` and `.agents/skills/`
185
186
  - ✅ Sets up shell scripts with Unix line endings (LF)
186
187
  - ✅ Respects XDG Base Directory specification
187
188
  - ✅ Handles symbolic links properly
@@ -190,16 +191,15 @@ The installer automatically:
190
191
 
191
192
  ## IDE-Specific Setup
192
193
 
193
- ### Claude Code (CLI)
194
+ ### Claude Code
194
195
 
195
- 1. Install Claude Code:
196
+ 1. Agent adapters are installed in `.claude/agents/`.
197
+ 2. Use `@developer` or another canonical agent ID to activate an agent.
196
198
 
197
- ```bash
198
- npm install -g @anthropic-ai/claude-code
199
- ```
199
+ ### Codex
200
200
 
201
- 2. Commands are installed to `.claude/commands/SINAPSE/`
202
- 3. Use `/agent-name` to activate agents
201
+ 1. Agent descriptors are installed in `.codex/agents/`, with skills in `.agents/skills/`.
202
+ 2. Use `$snps` for routing or `$sinapse-agent developer` for direct activation.
203
203
 
204
204
  ---
205
205
 
@@ -360,11 +360,8 @@ See the complete [Uninstallation Guide](./uninstallation.md) for detailed steps.
360
360
  Quick uninstall:
361
361
 
362
362
  ```bash
363
- # Remove SINAPSE from a project
364
- rm -rf .sinapse-ai .claude/commands/SINAPSE
365
-
366
- # Remove global installation
367
- rm -rf ~/.sinapse-ai-source ~/.npm-global/lib/node_modules/@sinapse
363
+ # Remove SINAPSE through the package-managed uninstaller
364
+ npx sinapse-ai uninstall
368
365
  ```
369
366
 
370
367
  ---
@@ -73,8 +73,9 @@ The installer automatically:
73
73
 
74
74
  - ✅ Detects macOS and applies platform-specific configurations
75
75
  - ✅ Creates necessary directories with proper permissions
76
- - ✅ Configures IDE paths for macOS locations:
77
- - Claude: `~/.claude/`
76
+ - ✅ Configures provider adapters in the project:
77
+ - Claude Code agents: `.claude/agents/`
78
+ - Codex agents and skills: `.codex/agents/` and `.agents/skills/`
78
79
  - ✅ Sets up shell scripts with Unix line endings
79
80
  - ✅ Handles case-sensitive filesystems properly
80
81
 
@@ -82,8 +83,13 @@ The installer automatically:
82
83
 
83
84
  ### Claude Code
84
85
 
85
- 1. Commands are installed to `.claude/commands/SINAPSE/`
86
- 2. Use `/agent-name` to activate agents
86
+ 1. Agent adapters are installed in `.claude/agents/`.
87
+ 2. Use `@developer` or another canonical agent ID to activate an agent.
88
+
89
+ ### Codex
90
+
91
+ 1. Agent descriptors are installed in `.codex/agents/`, with skills in `.agents/skills/`.
92
+ 2. Use `$snps` for routing or `$sinapse-agent developer` for direct activation.
87
93
 
88
94
  ## Troubleshooting
89
95
 
@@ -539,7 +539,8 @@ nvm use 16
539
539
 
540
540
  ### Issue 20: "Agents not appearing in IDE"
541
541
 
542
- **Symptoms:** Agent commands (`/dev`, `@dev`) don't work after installation.
542
+ **Symptoms:** Provider-native activation (`@developer` in Claude Code or
543
+ `$sinapse-agent developer` in Codex) doesn't work after installation.
543
544
 
544
545
  **Solution:**
545
546
 
@@ -549,6 +550,10 @@ nvm use 16
549
550
  ```bash
550
551
  # Claude Code
551
552
  ls .claude/agents/
553
+
554
+ # Codex
555
+ ls .codex/agents/
556
+ ls .agents/skills/
552
557
  ```
553
558
 
554
559
  3. Check IDE settings allow custom commands
@@ -565,9 +570,10 @@ nvm use 16
565
570
 
566
571
  **Solution:**
567
572
 
568
- 1. Check IDE version is compatible
569
- 2. For Claude Code: Native agent files should be in `.claude/agents/`; `.claude/commands/` is only for slash commands
570
- 3. Restart IDE after installation
573
+ 1. Check that the provider version is compatible.
574
+ 2. For Claude Code, native agents should be in `.claude/agents/`.
575
+ 3. For Codex, check `.codex/agents/` and `.agents/skills/`.
576
+ 4. Restart the provider after installation.
571
577
 
572
578
  ---
573
579
 
@@ -107,24 +107,24 @@ Type *help to see available commands.
107
107
 
108
108
  ## Step 4: Explore Available Agents
109
109
 
110
- | Agent | Activation | Purpose |
110
+ | Activation | Role | Purpose |
111
111
  | ------------------- | ----------------- | ------------------------------- |
112
- | `@dev` (Dex) | Development | Code implementation, debugging |
113
- | `@qa` (Quinn) | Quality Assurance | Testing and validation |
114
- | `@architect` (Aria) | Architecture | System design and documentation |
115
- | `@pm` (Sage) | Product Manager | Requirements and planning |
116
- | `@devops` (Gage) | DevOps | Git push, PR creation, CI/CD |
117
- | `@po` (Maven) | Product Owner | Story creation and backlog |
118
- | `@sm` (River) | Scrum Master | Sprint management |
119
- | `@analyst` (Nova) | Business Analyst | Requirements analysis |
112
+ | `@developer` (Pixel) | Development | Code implementation, debugging |
113
+ | `@quality-gate` (Litmus) | Quality Assurance | Testing and validation |
114
+ | `@architect` (Stratum) | Architecture | System design and documentation |
115
+ | `@project-lead` (Beacon) | Product Manager | Requirements and planning |
116
+ | `@devops` (Pipeline) | DevOps | Git push, PR creation, CI/CD |
117
+ | `@product-lead` (Axis) | Product Owner | Story validation and backlog |
118
+ | `@sprint-lead` (Sync) | Scrum Master | Sprint management |
119
+ | `@analyst` (Scope) | Business Analyst | Requirements analysis |
120
120
 
121
121
  ### Example: Activate Developer Agent
122
122
 
123
- ```
124
- @dev
123
+ ```text
124
+ @developer
125
125
  ```
126
126
 
127
- The developer agent (Dex) will activate with a greeting showing:
127
+ The developer agent (Pixel) will activate with a greeting showing:
128
128
 
129
129
  - Project status
130
130
  - Quick commands
@@ -188,7 +188,7 @@ your-project/
188
188
  │ │ └── quality-gates/ # Quality validation layers
189
189
  │ ├── development/ # Development assets
190
190
  │ │ ├── agents/ # Agent definitions (12 agents)
191
- │ │ ├── tasks/ # Task workflows (~140 tasks)
191
+ │ │ ├── tasks/ # Development workflows (211 development tasks)
192
192
  │ │ └── workflows/ # Multi-step workflows
193
193
  │ ├── product/ # Product assets
194
194
  │ │ ├── templates/ # Document templates
@@ -155,8 +155,9 @@ The installer automatically:
155
155
 
156
156
  - ✅ Detects Windows and applies platform-specific configurations
157
157
  - ✅ Creates necessary directories with proper permissions
158
- - ✅ Configures IDE paths for Windows locations:
159
- - Claude: `%USERPROFILE%\.claude\`
158
+ - ✅ Configures provider adapters in the project:
159
+ - Claude Code agents: `.claude\agents\`
160
+ - Codex agents and skills: `.codex\agents\` and `.agents\skills\`
160
161
  - ✅ Handles Windows path separators (backslashes)
161
162
  - ✅ Configures line endings correctly (CRLF for batch, LF for scripts)
162
163
  - ✅ Sets up npm scripts compatible with cmd.exe and PowerShell
@@ -165,16 +166,15 @@ The installer automatically:
165
166
 
166
167
  ## IDE-Specific Setup
167
168
 
168
- ### Claude Code (CLI)
169
+ ### Claude Code
169
170
 
170
- 1. Install Claude Code:
171
+ 1. Agent adapters are installed in `.claude\agents\`.
172
+ 2. Use `@developer` or another canonical agent ID to activate an agent.
171
173
 
172
- ```powershell
173
- npm install -g @anthropic-ai/claude-code
174
- ```
174
+ ### Codex
175
175
 
176
- 2. Commands are installed to `.claude\commands\SINAPSE\`
177
- 3. Use `/agent-name` to activate agents
176
+ 1. Agent descriptors are installed in `.codex\agents\`, with skills in `.agents\skills\`.
177
+ 2. Use `$snps` for routing or `$sinapse-agent developer` for direct activation.
178
178
 
179
179
  ---
180
180
 
@@ -403,12 +403,8 @@ See the complete [Uninstallation Guide](./uninstallation.md) for detailed steps.
403
403
  Quick uninstall via PowerShell:
404
404
 
405
405
  ```powershell
406
- # Remove SINAPSE from project
407
- Remove-Item -Recurse -Force .sinapse-ai
408
- Remove-Item -Recurse -Force .claude\commands\SINAPSE
409
-
410
- # Remove global npm packages
411
- npm uninstall -g @sinapse/sinapse
406
+ # Remove SINAPSE through the package-managed uninstaller
407
+ npx sinapse-ai uninstall
412
408
  ```
413
409
 
414
410
  ---
@@ -32,10 +32,11 @@ Isso fornece contexto imediato sobre seu trabalho sem precisar executar manualme
32
32
 
33
33
  ## Exemplo de Exibição
34
34
 
35
- Quando você ativa um agente (ex: `/dev`), você verá:
35
+ Quando você ativa um agente (`@developer` no Claude Code ou
36
+ `$sinapse-agent developer` no Codex), você verá:
36
37
 
37
- ```
38
- Dex (Builder) ready. Let's build something great!
38
+ ```text
39
+ Pixel the Builder ready to innovate!
39
40
 
40
41
  Current Project Status:
41
42
  - Branch: main
@@ -52,24 +53,15 @@ Type *help to see available commands!
52
53
  ### Pré-requisitos
53
54
 
54
55
  - **Repositório Git** - Projeto deve ser inicializado com `git init`
55
- - **Framework SINAPSE-FullStack** instalado
56
+ - **Framework SINAPSE AI** instalado
56
57
  - **Node.js 18+** com pacotes necessários
57
58
 
58
59
  ### Configuração Inicial
59
60
 
60
- Execute o comando de inicialização via agente @devops:
61
-
62
- ```bash
63
- /devops
64
- *init-project-status
65
- ```
66
-
67
- Isso irá:
68
- 1. Detectar seu repositório git
69
- 2. Habilitar `projectStatus` no `core-config.yaml`
70
- 3. Criar arquivo de cache `.sinapse/project-status.yaml`
71
- 4. Adicionar arquivo de cache ao `.gitignore`
72
- 5. Testar a exibição do status
61
+ Nenhum comando de agente é necessário. Nas instalações atuais, `projectStatus`
62
+ fica habilitado em `.sinapse-ai/core-config.yaml` e carrega automaticamente na
63
+ ativação dos agentes. O loader detecta o repositório Git e mantém
64
+ `.sinapse/project-status.yaml` como cache de runtime.
73
65
 
74
66
  **Configuração Manual Alternativa:**
75
67
 
@@ -219,19 +211,24 @@ Mostra apenas stories com status: `InProgress` ou `In Progress`.
219
211
 
220
212
  ## Agentes Afetados
221
213
 
222
- Todos os 11 agentes SINAPSE exibem status do projeto:
223
-
224
- 1. **@dev** (Dex - Builder)
225
- 2. **@po** (Pax - Balancer)
226
- 3. **@qa** (Quinn - Guardian)
227
- 4. **@sm** (River - Facilitator)
228
- 5. **@pm** (Morgan - Strategist)
229
- 6. **@architect** (Aria - Visionary)
230
- 7. **@analyst** (Atlas - Decoder)
231
- 8. **@devops** (Gage - Operator)
232
- 9. **@data-engineer** (Dara - Sage)
233
- 10. **@ux-design-expert** (Uma - Empathizer)
234
- 11. **@sinapse-orqx** (Orion - Orchestrator)
214
+ O SINAPSE inclui 172 agentes especializados em 17 squads. O status de projeto
215
+ é uma capacidade compartilhada do framework; a lista abaixo é o subconjunto
216
+ core de desenvolvimento, não o catálogo completo:
217
+
218
+ 1. `developer` (Pixel)
219
+ 2. `product-lead` (Axis)
220
+ 3. `quality-gate` (Litmus)
221
+ 4. `sprint-lead` (Sync)
222
+ 5. `project-lead` (Beacon)
223
+ 6. `architect` (Stratum)
224
+ 7. `analyst` (Scope)
225
+ 8. `devops` (Pipeline)
226
+ 9. `data-engineer` (Tensor)
227
+ 10. `ux-design-expert` (Mosaic)
228
+ 11. `snps-orqx` (Imperator)
229
+
230
+ Ative esses IDs com `@agent-id` no Claude Code ou `$sinapse-agent agent-id` no
231
+ Codex; para roteamento principal no Codex, use `$snps`.
235
232
 
236
233
  ---
237
234
 
@@ -247,12 +244,9 @@ Todos os 11 agentes SINAPSE exibem status do projeto:
247
244
  3. O arquivo `.sinapse-ai/infrastructure/scripts/project-status-loader.js` existe?
248
245
  4. Há erros na saída de ativação do agente?
249
246
 
250
- **Solução:**
251
- ```bash
252
- # Re-run initialization
253
- /devops
254
- *init-project-status
255
- ```
247
+ **Solução:** Execute `npx sinapse-ai@latest doctor`, confirme as verificações
248
+ acima e reinicie a sessão do provider. O status recarrega automaticamente; não
249
+ existe task pointer público `init-project-status` no Codex.
256
250
 
257
251
  ### Dados de Status Desatualizados
258
252
 
@@ -368,28 +362,15 @@ await clearCache();
368
362
 
369
363
  ### Remoção Completa
370
364
 
371
- Para remover completamente a funcionalidade:
365
+ Não apague scripts, testes ou tasks do framework. Desabilite a funcionalidade
366
+ em `.sinapse-ai/core-config.yaml` e remova somente o cache de runtime:
372
367
 
373
368
  ```bash
374
- # Remove script
375
- rm .sinapse-ai/infrastructure/scripts/project-status-loader.js
376
-
377
- # Remove task
378
- rm .sinapse-ai/tasks/init-project-status.md
379
-
380
- # Remove cache
381
369
  rm .sinapse/project-status.yaml
382
-
383
- # Remove tests
384
- rm .sinapse-ai/infrastructure/scripts/__tests__/project-status-loader.test.js
385
-
386
- # Remove config section from core-config.yaml
387
- # (manually edit file)
388
-
389
- # Revert agent files to pre-6.1.2.4 state
390
- git revert <commit-hash>
391
370
  ```
392
371
 
372
+ Defina `projectStatus.enabled: false`; os arquivos protegidos permanecem instalados.
373
+
393
374
  ---
394
375
 
395
376
  ## Compatibilidade de Versão do Git
@@ -463,7 +444,7 @@ R: Sim, todos os agentes usam o mesmo arquivo de cache (`.sinapse/project-status
463
444
  - **Story:** `docs/stories/sinapse migration/story-6.1.2.4-project-status-context.md`
464
445
  - **Config:** `.sinapse-ai/core-config.yaml` (seção projectStatus)
465
446
  - **Script:** `.sinapse-ai/infrastructure/scripts/project-status-loader.js`
466
- - **Task de Init:** `.sinapse-ai/tasks/init-project-status.md`
447
+ - **Inicialização:** automática quando `projectStatus.enabled` está habilitado
467
448
  - **Testes:** `.sinapse-ai/infrastructure/scripts/__tests__/project-status-loader.test.js`
468
449
 
469
450
  ---
@@ -471,4 +452,3 @@ R: Sim, todos os agentes usam o mesmo arquivo de cache (`.sinapse/project-status
471
452
  **Versão:** 1.0
472
453
  **Status:** Pronto para Produção
473
454
  **Última Atualização:** 2025-01-14
474
-