sinapse-ai 1.25.1 → 1.25.2

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.
@@ -26,10 +26,11 @@ This gives you immediate context about your work without manually running `git s
26
26
 
27
27
  ## Example Display
28
28
 
29
- When you activate an agent (e.g., `/dev`), you'll see:
29
+ When you activate an agent (`@developer` in Claude Code or
30
+ `$sinapse-agent developer` in Codex), you'll see:
30
31
 
31
- ```
32
- 💻 Dex (Builder) ready. Let's build something great!
32
+ ```text
33
+ 💻 Pixel the Builder ready to innovate!
33
34
 
34
35
  Current Project Status:
35
36
  - Branch: main
@@ -46,24 +47,15 @@ Type *help to see available commands!
46
47
  ### Prerequisites
47
48
 
48
49
  - **Git repository** - Project must be initialized with `git init`
49
- - **SINAPSE-FullStack** framework installed
50
+ - **SINAPSE AI** framework installed
50
51
  - **Node.js 18+** with required packages
51
52
 
52
53
  ### Initial Setup
53
54
 
54
- Run the initialization command via @devops agent:
55
-
56
- ```bash
57
- /devops
58
- *init-project-status
59
- ```
60
-
61
- This will:
62
- 1. Detect your git repository
63
- 2. Enable `projectStatus` in `core-config.yaml`
64
- 3. Create `.sinapse/project-status.yaml` cache file
65
- 4. Add cache file to `.gitignore`
66
- 5. Test the status display
55
+ No agent command is required. In current installations, `projectStatus` is
56
+ enabled in `.sinapse-ai/core-config.yaml` and loads automatically during agent
57
+ activation. The loader detects the Git repository and maintains
58
+ `.sinapse/project-status.yaml` as a runtime cache.
67
59
 
68
60
  **Alternative Manual Setup:**
69
61
 
@@ -213,19 +205,24 @@ Only shows stories with status: `InProgress` or `In Progress`.
213
205
 
214
206
  ## Affected Agents
215
207
 
216
- All 11 SINAPSE agents display project status:
217
-
218
- 1. **@dev** (Dex - Builder)
219
- 2. **@po** (Pax - Balancer)
220
- 3. **@qa** (Quinn - Guardian)
221
- 4. **@sm** (River - Facilitator)
222
- 5. **@pm** (Morgan - Strategist)
223
- 6. **@architect** (Aria - Visionary)
224
- 7. **@analyst** (Atlas - Decoder)
225
- 8. **@devops** (Gage - Operator)
226
- 9. **@data-engineer** (Dara - Sage)
227
- 10. **@ux-design-expert** (Uma - Empathizer)
228
- 11. **@sinapse-orqx** (Orion - Orchestrator)
208
+ SINAPSE includes 172 specialized agents across 17 squads. Project status is a
209
+ shared framework capability; the list below is the core development subset, not
210
+ the complete agent catalog:
211
+
212
+ 1. `developer` (Pixel)
213
+ 2. `product-lead` (Axis)
214
+ 3. `quality-gate` (Litmus)
215
+ 4. `sprint-lead` (Sync)
216
+ 5. `project-lead` (Beacon)
217
+ 6. `architect` (Stratum)
218
+ 7. `analyst` (Scope)
219
+ 8. `devops` (Pipeline)
220
+ 9. `data-engineer` (Tensor)
221
+ 10. `ux-design-expert` (Mosaic)
222
+ 11. `snps-orqx` (Imperator)
223
+
224
+ Activate these IDs with `@agent-id` in Claude Code or
225
+ `$sinapse-agent agent-id` in Codex; use `$snps` for primary Codex routing.
229
226
 
230
227
  ---
231
228
 
@@ -241,12 +238,9 @@ All 11 SINAPSE agents display project status:
241
238
  3. Does `.sinapse-ai/infrastructure/scripts/project-status-loader.js` exist?
242
239
  4. Any errors in agent activation output?
243
240
 
244
- **Solution:**
245
- ```bash
246
- # Re-run initialization
247
- /devops
248
- *init-project-status
249
- ```
241
+ **Solution:** Run `npx sinapse-ai@latest doctor`, confirm the checks above, and
242
+ restart the provider session. Project status reloads automatically; there is no
243
+ public Codex `init-project-status` task pointer.
250
244
 
251
245
  ### Stale Status Data
252
246
 
@@ -362,28 +356,15 @@ await clearCache();
362
356
 
363
357
  ### Complete Removal
364
358
 
365
- To fully remove the feature:
359
+ Do not delete framework scripts, tests, or task files. Disable the feature in
360
+ `.sinapse-ai/core-config.yaml` and remove only its runtime cache:
366
361
 
367
362
  ```bash
368
- # Remove script
369
- rm .sinapse-ai/infrastructure/scripts/project-status-loader.js
370
-
371
- # Remove task
372
- rm .sinapse-ai/tasks/init-project-status.md
373
-
374
- # Remove cache
375
363
  rm .sinapse/project-status.yaml
376
-
377
- # Remove tests
378
- rm .sinapse-ai/infrastructure/scripts/__tests__/project-status-loader.test.js
379
-
380
- # Remove config section from core-config.yaml
381
- # (manually edit file)
382
-
383
- # Revert agent files to pre-6.1.2.4 state
384
- git revert <commit-hash>
385
364
  ```
386
365
 
366
+ Set `projectStatus.enabled: false`; protected framework files remain installed.
367
+
387
368
  ---
388
369
 
389
370
  ## Git Version Compatibility
@@ -457,7 +438,7 @@ A: Yes, all agents use the same cache file (`.sinapse/project-status.yaml`).
457
438
  - **Story:** `docs/stories/sinapse migration/story-6.1.2.4-project-status-context.md`
458
439
  - **Config:** `.sinapse-ai/core-config.yaml` (projectStatus section)
459
440
  - **Script:** `.sinapse-ai/infrastructure/scripts/project-status-loader.js`
460
- - **Init Task:** `.sinapse-ai/tasks/init-project-status.md`
441
+ - **Initialization:** automatic when `projectStatus.enabled` is true
461
442
  - **Tests:** `.sinapse-ai/infrastructure/scripts/__tests__/project-status-loader.test.js`
462
443
 
463
444
  ---
@@ -465,4 +446,3 @@ A: Yes, all agents use the same cache file (`.sinapse/project-status.yaml`).
465
446
  **Version:** 1.0
466
447
  **Status:** ✅ Production Ready
467
448
  **Last Updated:** 2025-01-14
468
-
@@ -42,13 +42,15 @@ cd my-project
42
42
  # List available agents
43
43
  npx sinapse-ai agents list
44
44
 
45
- # Activate an agent
45
+ # Claude Code: activate an agent
46
46
  @developer
47
47
 
48
48
  # Get help
49
49
  *help
50
50
  ```
51
51
 
52
+ In Codex, use `$snps` for routing or `$sinapse-agent developer` for direct activation.
53
+
52
54
  ---
53
55
 
54
56
  ## Core Concepts
@@ -66,7 +68,7 @@ SINAPSE provides orchestrated structure while allowing flexibility in communicat
66
68
 
67
69
  | Traditional AI Dev | SINAPSE |
68
70
  | ----------------------------- | --------------------------------------- |
69
- | Uncoordinated agents | 11 specialized agents with clear roles |
71
+ | Uncoordinated agents | 172 specialized agents across 17 squads |
70
72
  | Inconsistent results | Structured workflows with quality gates |
71
73
  | Context lost between sessions | Persistent memory and learning |
72
74
  | Reinventing the wheel | Reusable tasks, workflows, and squads |
@@ -75,7 +77,10 @@ SINAPSE provides orchestrated structure while allowing flexibility in communicat
75
77
 
76
78
  ## Agents
77
79
 
78
- SINAPSE includes 11 specialized agents, each with a distinct role and personality:
80
+ SINAPSE includes 172 specialized agents across 17 squads. The table below highlights the core development agents:
81
+
82
+ IDs in the table use Claude Code's `@agent-name` syntax. In Codex, replace it
83
+ with `$sinapse-agent agent-id`; use `$snps` for the primary orchestrator.
79
84
 
80
85
  | Agent | ID | Archetype | Responsibility |
81
86
  | --------- | ---------------- | ------------ | ----------------------- |
@@ -94,7 +99,7 @@ SINAPSE includes 11 specialized agents, each with a distinct role and personalit
94
99
  ### Agent Activation
95
100
 
96
101
  ```bash
97
- # Activate an agent using @ syntax
102
+ # Claude Code: activate an agent using @ syntax
98
103
  @developer # Activate Pixel (Developer)
99
104
  @quality-gate # Activate Litmus (QA)
100
105
  @architect # Activate Stratum (Architect)
@@ -106,6 +111,13 @@ SINAPSE includes 11 specialized agents, each with a distinct role and personalit
106
111
  *exit # Deactivate agent
107
112
  ```
108
113
 
114
+ Codex activation:
115
+
116
+ ```text
117
+ $snps
118
+ $sinapse-agent developer
119
+ ```
120
+
109
121
  ### Agent Context
110
122
 
111
123
  When an agent is active:
@@ -373,16 +385,15 @@ NODE_ENV=development
373
385
  SINAPSE_DEBUG=false
374
386
  ```
375
387
 
376
- ### IDE Integration
388
+ ### Provider Integration
377
389
 
378
- SINAPSE supports multiple IDEs. Configuration is synchronized across:
390
+ SINAPSE synchronizes the same canonical agents for both supported providers:
379
391
 
380
- - Claude Code (`.claude/`)
381
- - Cursor (`.cursor/`)
382
- - VS Code (`.vscode/`)
392
+ - Claude Code agents: `.claude/agents/` (activate with `@developer`)
393
+ - Codex agents and skills: `.codex/agents/` and `.agents/skills/` (activate with `$snps` or `$sinapse-agent developer`)
383
394
 
384
395
  ```bash
385
- # Sync agents to your IDE
396
+ # Sync Claude Code and Codex adapters
386
397
  npm run sync:ide
387
398
  ```
388
399
 
@@ -76,10 +76,10 @@ npx sinapse-ai@latest update
76
76
 
77
77
  ## Supported IDEs
78
78
 
79
- | IDE | Agent Activation |
80
- | ----------- | ------------------- |
81
- | Claude Code | `/dev`, `/qa`, etc. |
82
- | Codex CLI | `/skills` flow |
79
+ | IDE | Agent Activation |
80
+ | ----------- | ----------------------------------- |
81
+ | Claude Code | `@developer`, `@quality-gate`, etc. |
82
+ | Codex CLI | `$snps` or `$sinapse-agent <id>` |
83
83
 
84
84
  ---
85
85
 
@@ -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