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.
- package/.sinapse-ai/data/entity-registry.yaml +39 -14
- package/.sinapse-ai/install-manifest.yaml +3 -3
- package/CHANGELOG.md +2 -8
- package/README.en.md +38 -30
- package/README.md +33 -25
- package/bin/commands/install.js +6 -2
- package/bin/commands/update.js +6 -2
- package/bin/lib/command-generator.js +60 -36
- package/bin/lib/global-provider-adapters.js +244 -49
- package/bin/lib/provider-contract.js +23 -0
- package/bin/lib/provider-parity.js +60 -9
- package/docs/getting-started.md +13 -5
- package/docs/guides/codex-config.md +35 -51
- package/docs/guides/ide-integration.md +22 -23
- package/docs/guides/project-status-feature.md +35 -55
- package/docs/guides/user-guide.md +21 -10
- package/docs/installation/README.md +4 -4
- package/docs/installation/faq.md +84 -70
- package/docs/installation/linux.md +11 -14
- package/docs/installation/macos.md +10 -4
- package/docs/installation/troubleshooting.md +10 -4
- package/docs/installation/v4-quick-start.md +13 -13
- package/docs/installation/windows.md +11 -15
- package/docs/pt/guides/project-status-feature.md +35 -55
- package/docs/pt/guides/user-guide.md +21 -11
- package/docs/pt/installation/README.md +2 -4
- package/docs/pt/installation/faq.md +54 -89
- package/docs/pt/installation/linux.md +9 -27
- package/docs/pt/installation/macos.md +8 -12
- package/docs/pt/installation/troubleshooting.md +10 -8
- package/docs/pt/installation/v4-quick-start.md +16 -16
- package/docs/pt/installation/windows.md +8 -21
- package/docs/troubleshooting.md +9 -7
- package/package.json +1 -1
- package/scripts/validate-article-vii.js +305 -20
- package/scripts/validate-install-docs.js +87 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# AGENTS.md - SINAPSE
|
|
2
2
|
|
|
3
|
-
Este arquivo configura o comportamento esperado de agentes no Codex CLI neste
|
|
3
|
+
Este arquivo configura o comportamento esperado de agentes no Codex CLI neste repositório.
|
|
4
4
|
|
|
5
5
|
## Constitution
|
|
6
6
|
|
|
@@ -14,7 +14,7 @@ Siga `.sinapse-ai/constitution.md` como fonte de verdade:
|
|
|
14
14
|
- Ecosystem Metrics Accuracy (NON-NEGOTIABLE)
|
|
15
15
|
- Mandatory Delegation (NON-NEGOTIABLE)
|
|
16
16
|
|
|
17
|
-
## Workflow
|
|
17
|
+
## Workflow Obrigatório
|
|
18
18
|
|
|
19
19
|
1. Inicie por uma story em `docs/stories/`
|
|
20
20
|
2. Implemente apenas o que os acceptance criteria pedem
|
|
@@ -35,31 +35,31 @@ npm test
|
|
|
35
35
|
- CLI: `bin/`
|
|
36
36
|
- Pacotes: `packages/`
|
|
37
37
|
- Testes: `tests/`
|
|
38
|
-
-
|
|
38
|
+
- Documentação: `docs/`
|
|
39
39
|
|
|
40
40
|
## IDE/Agent Sync
|
|
41
41
|
|
|
42
42
|
- Sincronizar regras/agentes: `npm run sync:ide`
|
|
43
43
|
- Validar drift: `npm run sync:ide:check`
|
|
44
|
-
- Rodar paridade
|
|
44
|
+
- Rodar paridade Claude/Codex: `npm run validate:parity`
|
|
45
45
|
- Sync Claude Code: `npm run sync:ide:claude`
|
|
46
|
-
- Sincronizar
|
|
46
|
+
- Sincronizar Codex: `npm run sync:ide:codex`
|
|
47
47
|
- Validar Codex sync/integration: `npm run validate:codex-sync`; `npm run validate:codex-integration`
|
|
48
48
|
- Validar command/task registry do Codex: `npm run validate:codex-commands`
|
|
49
|
-
- Validar matriz de
|
|
49
|
+
- Validar matriz de delegação do Codex: `npm run validate:codex-delegation`
|
|
50
50
|
- Gerar skills locais do Codex: `npm run sync:skills:codex`
|
|
51
|
-
- Este
|
|
51
|
+
- Este repositório usa **local-first**: `.agents/skills` é a única raiz de skills SINAPSE versionada no projeto
|
|
52
52
|
- Use `sync:skills:codex:global` apenas para testes fora deste repo
|
|
53
53
|
|
|
54
54
|
## Command Resolution (Codex)
|
|
55
55
|
|
|
56
|
-
Quando um agente no Codex receber um `*comando`, prefira resolver a
|
|
56
|
+
Quando um agente no Codex receber um `*comando`, prefira resolver a execução por esta ordem:
|
|
57
57
|
|
|
58
58
|
1. Consultar `.codex/command-registry.json`
|
|
59
59
|
2. Opcionalmente usar `node .codex/scripts/resolve-codex-command.js <skill-ou-agent> <comando>`
|
|
60
60
|
3. Carregar a task/workflow/checklist/template mapeada
|
|
61
61
|
|
|
62
|
-
Isso evita "file hunting" manual e torna a
|
|
62
|
+
Isso evita "file hunting" manual e torna a execução de workflows/tasks mais determinística no Codex.
|
|
63
63
|
|
|
64
64
|
## Delegation Resolution (Codex)
|
|
65
65
|
|
|
@@ -72,68 +72,52 @@ Quando um orqx no Codex precisar decidir um handoff:
|
|
|
72
72
|
- `codex-shim`
|
|
73
73
|
- `exploratory`
|
|
74
74
|
|
|
75
|
-
No Codex,
|
|
75
|
+
No Codex, não trate handoffs exploratórios como se fossem caminhos garantidos pelo validator.
|
|
76
76
|
|
|
77
|
-
##
|
|
77
|
+
## Ativação de agentes (Codex)
|
|
78
78
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
Atalhos aceitos por agente (nome completo + alias):
|
|
86
|
-
- `@sinapse-orqx` -> `.sinapse-ai/development/agents/sinapse-orqx.md`
|
|
87
|
-
- `@developer` ou `@dev` -> `.sinapse-ai/development/agents/developer.md`
|
|
88
|
-
- `@quality-gate` ou `@qa` -> `.sinapse-ai/development/agents/quality-gate.md`
|
|
89
|
-
- `@project-lead` ou `@pm` -> `.sinapse-ai/development/agents/project-lead.md`
|
|
90
|
-
- `@product-lead` ou `@po` -> `.sinapse-ai/development/agents/product-lead.md`
|
|
91
|
-
- `@sprint-lead` ou `@sm` -> `.sinapse-ai/development/agents/sprint-lead.md`
|
|
92
|
-
- `@analyst` -> `.sinapse-ai/development/agents/analyst.md`
|
|
93
|
-
- `@architect` -> `.sinapse-ai/development/agents/architect.md`
|
|
94
|
-
- `@data-engineer` -> `.sinapse-ai/development/agents/data-engineer.md`
|
|
95
|
-
- `@devops` -> `.sinapse-ai/development/agents/devops.md`
|
|
96
|
-
- `@squad-creator` -> `.sinapse-ai/development/agents/squad-creator.md`
|
|
97
|
-
- `@ux-design-expert` -> `.sinapse-ai/development/agents/ux-design-expert.md`
|
|
98
|
-
|
|
99
|
-
Resposta esperada ao ativar atalho:
|
|
100
|
-
1. Confirmar agente ativado
|
|
101
|
-
2. Mostrar 3-6 comandos principais (`*help`, etc.)
|
|
102
|
-
3. Seguir na persona do agente
|
|
79
|
+
- Use `$snps` para roteamento pelo orquestrador principal.
|
|
80
|
+
- Use `$sinapse-agent <agent-id>` para ativação direta, por exemplo
|
|
81
|
+
`$sinapse-agent developer` ou `$sinapse-agent architect`.
|
|
82
|
+
- O ativador paramétrico resolve a fonte canônica e apenas tasks existentes;
|
|
83
|
+
não interprete `@agent`, slash commands ou aliases curtos como ativação Codex.
|
|
103
84
|
|
|
104
85
|
## Orquestradores (18 orqx: 17 squad + 1 master)
|
|
105
86
|
|
|
106
|
-
Cada orqx coordena um squad completo de agentes especializados.
|
|
87
|
+
Cada orqx coordena um squad completo de agentes especializados. Use `$snps` para
|
|
88
|
+
roteamento ou `$sinapse-agent <orqx-id>` para ativação direta:
|
|
107
89
|
|
|
108
90
|
| Orqx | Squad | Foco |
|
|
109
91
|
|------|-------|------|
|
|
110
92
|
| `sinapse-orqx` | Core | Orquestrador principal de todos os squads |
|
|
111
|
-
| `brand-orqx` | Brand |
|
|
112
|
-
| `copy-orqx` | Copy | Copywriting persuasivo, headlines,
|
|
113
|
-
| `content-orqx` | Content |
|
|
114
|
-
| `storytelling-orqx` | Storytelling | Narrativa, roteiros, frameworks de
|
|
93
|
+
| `brand-orqx` | Brand | Estratégia de marca, arquétipos, auditoria |
|
|
94
|
+
| `copy-orqx` | Copy | Copywriting persuasivo, headlines, conversão |
|
|
95
|
+
| `content-orqx` | Content | Governança editorial, estratégia de conteúdo |
|
|
96
|
+
| `storytelling-orqx` | Storytelling | Narrativa, roteiros, frameworks de história |
|
|
115
97
|
| `commercial-orqx` | Commercial | Vendas, funil, revenue, pipeline |
|
|
116
98
|
| `paidmedia-orqx` | Paid Media | Meta Ads, Google Ads, campanhas |
|
|
117
99
|
| `growth-orqx` | Growth | Analytics, CRO, SEO, growth hacking |
|
|
118
|
-
| `research-orqx` | Research | Market analysis,
|
|
119
|
-
| `product-orqx` | Product | Product discovery,
|
|
100
|
+
| `research-orqx` | Research | Market analysis, inteligência competitiva |
|
|
101
|
+
| `product-orqx` | Product | Product discovery, estratégia, operações |
|
|
120
102
|
| `design-orqx` | Design | Design systems, componentes, tokens |
|
|
121
|
-
| `animations-orqx` | Animations | Motion design, CSS,
|
|
122
|
-
| `cyber-orqx` | Cybersecurity |
|
|
103
|
+
| `animations-orqx` | Animations | Motion design, CSS, partículas, 3D |
|
|
104
|
+
| `cyber-orqx` | Cybersecurity | Segurança, threat intel, pentest |
|
|
123
105
|
| `finance-orqx` | Finance | Budget, pricing, profitability |
|
|
124
|
-
| `courses-orqx` | Courses |
|
|
106
|
+
| `courses-orqx` | Courses | Currículos, assessments, launch |
|
|
125
107
|
| `cloning-orqx` | Cloning | Clonagem cognitiva, mind synthesis |
|
|
126
|
-
| `council-orqx` | Council | Advisors
|
|
127
|
-
| `swarm-orqx` | Mastery | Claude Code, MCP,
|
|
108
|
+
| `council-orqx` | Council | Advisors estratégicos (Munger, Dalio, Thiel) |
|
|
109
|
+
| `swarm-orqx` | Mastery | Claude Code, MCP, integração avançada |
|
|
128
110
|
|
|
129
|
-
|
|
111
|
+
Adapters de arquivo: `.claude/agents/sinapse-<orqx-id>.md` no Claude Code e
|
|
112
|
+
`.codex/agents/<orqx-id>.toml` (com companion `.md`) no Codex.
|
|
130
113
|
|
|
131
114
|
## Agentes Especializados (160)
|
|
132
115
|
|
|
133
|
-
Existem 172 agentes organizados em 17 squads (160 em squads + 12 framework agents, incluindo o master orchestrator). Eles
|
|
134
|
-
- `.
|
|
116
|
+
Existem 172 agentes organizados em 17 squads (160 em squads + 12 framework agents, incluindo o master orchestrator). Eles são acessíveis via:
|
|
117
|
+
- `.claude/agents/sinapse-<agent-id>.md` - agent nativo do Claude Code
|
|
118
|
+
- `.codex/agents/<agent-id>.toml` e `.codex/agents/<agent-id>.md` - adapters Codex
|
|
135
119
|
- Chamada interna pelo orqx do squad
|
|
136
120
|
|
|
137
121
|
Exemplos: `brand-strategist`, `ad-copywriter`, `penetration-tester`, `content-writer`, `ga-analytics-engineer`, etc.
|
|
138
122
|
|
|
139
|
-
Use `*help` dentro de qualquer orqx para ver os especialistas
|
|
123
|
+
Use `*help` dentro de qualquer orqx para ver os especialistas disponíveis no squad.
|
|
@@ -19,40 +19,39 @@ SINAPSE supports the following AI-powered development platforms:
|
|
|
19
19
|
|
|
20
20
|
| IDE/CLI | Overall Status | How to Activate an Agent | Auto-Checks Before/After Actions |
|
|
21
21
|
| --- | --- | --- | --- |
|
|
22
|
-
| Claude Code | Works |
|
|
23
|
-
| Codex CLI |
|
|
22
|
+
| Claude Code | Works | `@agent-name` | 20 native hook registrations |
|
|
23
|
+
| Codex CLI | Works | `$snps` or `$sinapse-agent <id>` | 9 lifecycle events through the bridge |
|
|
24
24
|
|
|
25
25
|
Legend:
|
|
26
|
-
- `Works`:
|
|
27
|
-
- `Limited`: usable with the documented workaround.
|
|
26
|
+
- `Works`: supported by provider-native adapters and release validators.
|
|
28
27
|
|
|
29
|
-
###
|
|
28
|
+
### Provider-Native Differences
|
|
30
29
|
|
|
31
|
-
|
|
30
|
+
Both providers expose native lifecycle surfaces. Their registration models differ, so parity is measured semantically instead of by requiring identical hook files:
|
|
32
31
|
|
|
33
|
-
|
|
|
34
|
-
| --- | --- | --- |
|
|
35
|
-
|
|
|
36
|
-
|
|
|
32
|
+
| Measured surface | Claude Code | Codex CLI |
|
|
33
|
+
| --- | --- | --- |
|
|
34
|
+
| Native agents | 172 | 172 |
|
|
35
|
+
| Installed skills | 36 | 37 |
|
|
36
|
+
| Registered hooks | 20 native registrations | 9 lifecycle events through the bridge |
|
|
37
|
+
| Activation | `@agent-name` | `$snps` or `$sinapse-agent <id>` |
|
|
37
38
|
|
|
38
39
|
### Beginner Decision Guide
|
|
39
40
|
|
|
40
41
|
If your goal is to get started as fast as possible:
|
|
41
42
|
|
|
42
|
-
1.
|
|
43
|
-
2.
|
|
43
|
+
1. Use **Claude Code** when you want its native `@agent-name` interaction.
|
|
44
|
+
2. Use **Codex CLI** when you want `$snps`, direct parametric activation and its terminal-first workflow.
|
|
44
45
|
|
|
45
46
|
### Practical Consequences by Capability
|
|
46
47
|
|
|
47
48
|
- **Session tracking** (automatic start/end detection):
|
|
48
|
-
-
|
|
49
|
-
- Manual or partial on Codex CLI.
|
|
49
|
+
- Registered through native lifecycle adapters on both providers.
|
|
50
50
|
- **Pre/post-action guardrails** (checks that run before and after each tool use):
|
|
51
|
-
-
|
|
52
|
-
-
|
|
51
|
+
- Claude Code uses native hook registrations.
|
|
52
|
+
- Codex maps native lifecycle events through the compatibility bridge.
|
|
53
53
|
- **Automatic audit trail** (record of what happened in each session):
|
|
54
|
-
-
|
|
55
|
-
- Reduced on Codex CLI (compensate with manual logging or validator output).
|
|
54
|
+
- Provider-specific telemetry uses the same canonical SINAPSE governance sources.
|
|
56
55
|
|
|
57
56
|
---
|
|
58
57
|
|
|
@@ -60,12 +59,12 @@ If your goal is to get started as fast as possible:
|
|
|
60
59
|
|
|
61
60
|
### Claude Code
|
|
62
61
|
|
|
63
|
-
**Recommendation Level:**
|
|
62
|
+
**Recommendation Level:** Native SINAPSE integration
|
|
64
63
|
|
|
65
64
|
```yaml
|
|
66
65
|
config_file: .claude/CLAUDE.md
|
|
67
66
|
agent_folder: .claude/agents
|
|
68
|
-
activation:
|
|
67
|
+
activation: '@agent-name'
|
|
69
68
|
format: full-markdown-yaml
|
|
70
69
|
mcp_support: native
|
|
71
70
|
special_features:
|
|
@@ -79,7 +78,7 @@ special_features:
|
|
|
79
78
|
**Setup:**
|
|
80
79
|
|
|
81
80
|
1. SINAPSE automatically creates `.claude/` directory on init
|
|
82
|
-
2. Agents are available
|
|
81
|
+
2. Agents are available through `@developer`, `@quality-gate`, `@architect`, etc.
|
|
83
82
|
3. Configure MCP servers in `~/.claude.json`
|
|
84
83
|
|
|
85
84
|
**Configuration:**
|
|
@@ -107,7 +106,7 @@ format: markdown
|
|
|
107
106
|
mcp_support: native via Codex tooling
|
|
108
107
|
special_features:
|
|
109
108
|
- AGENTS.md project instructions
|
|
110
|
-
-
|
|
109
|
+
- $snps and $sinapse-agent <id> activators
|
|
111
110
|
- Strong CLI workflow support
|
|
112
111
|
- Easy integration with repository scripts
|
|
113
112
|
- Notify command plus emerging tool hooks in recent Codex releases
|
|
@@ -118,7 +117,7 @@ special_features:
|
|
|
118
117
|
1. Keep `AGENTS.md` at repository root
|
|
119
118
|
2. Run `npm run sync:ide:codex` to sync auxiliary agent files
|
|
120
119
|
3. Run `npm run sync:skills:codex` to generate project-local skills in `.agents/skills`
|
|
121
|
-
4. Use
|
|
120
|
+
4. Use `$snps` or `$sinapse-agent architect`, `$sinapse-agent developer`, etc.
|
|
122
121
|
5. Use `npm run sync:skills:codex:global` only when you explicitly want global installation
|
|
123
122
|
|
|
124
123
|
**Configuration:**
|
|
@@ -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 (
|
|
29
|
+
When you activate an agent (`@developer` in Claude Code or
|
|
30
|
+
`$sinapse-agent developer` in Codex), you'll see:
|
|
30
31
|
|
|
31
|
-
```
|
|
32
|
-
💻
|
|
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
|
|
50
|
+
- **SINAPSE AI** framework installed
|
|
50
51
|
- **Node.js 18+** with required packages
|
|
51
52
|
|
|
52
53
|
### Initial Setup
|
|
53
54
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
/
|
|
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
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
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
|
-
|
|
246
|
-
|
|
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
|
-
|
|
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
|
-
- **
|
|
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
|
-
#
|
|
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 |
|
|
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
|
|
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
|
-
#
|
|
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
|
-
###
|
|
388
|
+
### Provider Integration
|
|
377
389
|
|
|
378
|
-
SINAPSE
|
|
390
|
+
SINAPSE synchronizes the same canonical agents for both supported providers:
|
|
379
391
|
|
|
380
|
-
- Claude Code
|
|
381
|
-
-
|
|
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
|
|
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 |
|
|
82
|
-
| Codex CLI |
|
|
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
|
|