sinapse-ai 7.0.5 → 7.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.sinapse-ai/core-config.yaml +2 -26
- package/.sinapse-ai/data/entity-registry.yaml +742 -917
- package/.sinapse-ai/data/registry-update-log.jsonl +22 -0
- package/.sinapse-ai/infrastructure/scripts/ide-sync/index.js +1 -49
- package/.sinapse-ai/infrastructure/scripts/validate-parity.js +0 -7
- package/.sinapse-ai/install-manifest.yaml +11 -43
- package/README.en.md +6 -11
- package/README.md +6 -11
- package/bin/cli.js +116 -75
- package/bin/modules/env-config.js +1 -2
- package/bin/sinapse-init.js +23 -188
- package/docs/ide-integration.md +22 -263
- package/docs/installation/README.md +4 -6
- package/docs/installation/faq.md +10 -33
- package/docs/installation/linux.md +0 -23
- package/docs/installation/macos.md +0 -10
- package/docs/installation/troubleshooting.md +5 -9
- package/docs/installation/v4-quick-start.md +1 -1
- package/docs/installation/windows.md +0 -18
- package/package.json +2 -9
- package/packages/installer/src/config/ide-configs.js +3 -49
- package/squads/claude-code-mastery/CHANGELOG.md +22 -0
- package/squads/claude-code-mastery/README.md +146 -0
- package/squads/claude-code-mastery/agents/claude-mastery-chief.md +554 -0
- package/squads/claude-code-mastery/agents/config-engineer.md +865 -0
- package/squads/claude-code-mastery/agents/hooks-architect.md +1013 -0
- package/squads/claude-code-mastery/agents/mcp-integrator.md +791 -0
- package/squads/claude-code-mastery/agents/project-integrator.md +1196 -0
- package/squads/claude-code-mastery/agents/roadmap-sentinel.md +931 -0
- package/squads/claude-code-mastery/agents/skill-craftsman.md +1250 -0
- package/squads/claude-code-mastery/agents/swarm-orqx.md +1008 -0
- package/squads/claude-code-mastery/checklists/agent-team-readiness-checklist.md +88 -0
- package/squads/claude-code-mastery/checklists/brownfield-readiness-checklist.md +91 -0
- package/squads/claude-code-mastery/checklists/change-checklist.md +75 -0
- package/squads/claude-code-mastery/checklists/context-rot-checklist.md +114 -0
- package/squads/claude-code-mastery/checklists/integration-audit-checklist.md +104 -0
- package/squads/claude-code-mastery/checklists/multi-agent-review-checklist.md +77 -0
- package/squads/claude-code-mastery/checklists/pre-push-checklist.md +79 -0
- package/squads/claude-code-mastery/data/ci-cd-patterns.yaml +412 -0
- package/squads/claude-code-mastery/data/claude-code-quick-ref.yaml +314 -0
- package/squads/claude-code-mastery/data/hook-patterns.yaml +512 -0
- package/squads/claude-code-mastery/data/mcp-integration-catalog.yaml +323 -0
- package/squads/claude-code-mastery/data/project-type-signatures.yaml +335 -0
- package/squads/claude-code-mastery/scripts/validate-setup.js +163 -0
- package/squads/claude-code-mastery/squad.yaml +205 -0
- package/squads/claude-code-mastery/tasks/audit-integration.md +219 -0
- package/squads/claude-code-mastery/tasks/audit-settings.md +206 -0
- package/squads/claude-code-mastery/tasks/audit-setup.md +225 -0
- package/squads/claude-code-mastery/tasks/brownfield-setup.md +322 -0
- package/squads/claude-code-mastery/tasks/ci-cd-setup.md +335 -0
- package/squads/claude-code-mastery/tasks/claude-md-engineer.md +334 -0
- package/squads/claude-code-mastery/tasks/configure-claude-code.md +215 -0
- package/squads/claude-code-mastery/tasks/context-rot-audit.md +329 -0
- package/squads/claude-code-mastery/tasks/create-agent-definition.md +278 -0
- package/squads/claude-code-mastery/tasks/create-rules.md +206 -0
- package/squads/claude-code-mastery/tasks/create-team-topology.md +258 -0
- package/squads/claude-code-mastery/tasks/diagnose.md +166 -0
- package/squads/claude-code-mastery/tasks/enterprise-config.md +346 -0
- package/squads/claude-code-mastery/tasks/hook-designer.md +272 -0
- package/squads/claude-code-mastery/tasks/integrate-project.md +304 -0
- package/squads/claude-code-mastery/tasks/mcp-integration-plan.md +229 -0
- package/squads/claude-code-mastery/tasks/mcp-workflow.md +285 -0
- package/squads/claude-code-mastery/tasks/multi-project-setup.md +228 -0
- package/squads/claude-code-mastery/tasks/optimize-context.md +217 -0
- package/squads/claude-code-mastery/tasks/optimize-workflow.md +226 -0
- package/squads/claude-code-mastery/tasks/parallel-decomposition.md +293 -0
- package/squads/claude-code-mastery/tasks/permission-strategy.md +266 -0
- package/squads/claude-code-mastery/tasks/sandbox-setup.md +279 -0
- package/squads/claude-code-mastery/tasks/setup-repository.md +230 -0
- package/squads/claude-code-mastery/tasks/setup-wizard.md +236 -0
- package/squads/claude-code-mastery/tasks/worktree-strategy.md +320 -0
- package/squads/claude-code-mastery/templates/claude-md-fullstack.md +147 -0
- package/squads/claude-code-mastery/templates/claude-md-library.md +175 -0
- package/squads/claude-code-mastery/templates/claude-md-microservices.md +186 -0
- package/squads/claude-code-mastery/templates/claude-md-mobile.md +198 -0
- package/squads/claude-code-mastery/templates/claude-md-monorepo.md +139 -0
- package/squads/claude-code-mastery/templates/github-actions-claude-ci.yml +348 -0
- package/squads/claude-code-mastery/templates/github-actions-claude-review.yml +179 -0
- package/squads/claude-code-mastery/workflows/wf-audit-complete.yaml +140 -0
- package/squads/claude-code-mastery/workflows/wf-knowledge-update.yaml +165 -0
- package/squads/claude-code-mastery/workflows/wf-project-setup.yaml +192 -0
- package/.sinapse-ai/infrastructure/scripts/ide-sync/transformers/antigravity.js +0 -105
- package/.sinapse-ai/infrastructure/scripts/ide-sync/transformers/cursor.js +0 -94
- package/.sinapse-ai/infrastructure/scripts/ide-sync/transformers/github-copilot.js +0 -184
- package/.sinapse-ai/infrastructure/scripts/validate-gemini-integration.js +0 -151
- package/.sinapse-ai/product/templates/ide-rules/antigravity-rules.md +0 -115
- package/.sinapse-ai/product/templates/ide-rules/copilot-rules.md +0 -92
- package/.sinapse-ai/product/templates/ide-rules/cursor-rules.md +0 -115
- package/.sinapse-ai/product/templates/ide-rules/gemini-rules.md +0 -87
- package/docs/pt/platforms/antigravity.md +0 -508
- package/docs/pt/platforms/cursor.md +0 -633
- package/docs/pt/platforms/gemini-cli.md +0 -481
- package/docs/pt/platforms/github-copilot.md +0 -478
package/docs/ide-integration.md
CHANGED
|
@@ -6,41 +6,25 @@
|
|
|
6
6
|
|
|
7
7
|
Guide for integrating SINAPSE with supported IDEs and AI development platforms.
|
|
8
8
|
|
|
9
|
-
**Version:**
|
|
10
|
-
**Last Updated:** 2026-
|
|
11
|
-
|
|
12
|
-
---
|
|
13
|
-
|
|
14
|
-
## Compatibility Contract (SINAPSE 4.2.11)
|
|
15
|
-
|
|
16
|
-
The IDE matrix is enforced by a versioned contract:
|
|
17
|
-
|
|
18
|
-
- Contract file: `.sinapse-ai/infrastructure/contracts/compatibility/sinapse-4.2.11.yaml`
|
|
19
|
-
- Validator: `npm run validate:parity`
|
|
20
|
-
|
|
21
|
-
If matrix claims in this document diverge from validator results, parity validation fails.
|
|
9
|
+
**Version:** 7.0.5
|
|
10
|
+
**Last Updated:** 2026-03-25
|
|
22
11
|
|
|
23
12
|
---
|
|
24
13
|
|
|
25
14
|
## Supported IDEs
|
|
26
15
|
|
|
27
|
-
SINAPSE supports
|
|
16
|
+
SINAPSE supports the following AI-powered development platforms:
|
|
28
17
|
|
|
29
|
-
### Quick Status Matrix
|
|
18
|
+
### Quick Status Matrix
|
|
30
19
|
|
|
31
|
-
| IDE/CLI | Overall Status | How to Activate an Agent | Auto-Checks Before/After Actions |
|
|
32
|
-
| --- | --- | --- | --- |
|
|
33
|
-
| Claude Code | Works | `/agent-name` commands | Works (full) |
|
|
34
|
-
|
|
|
35
|
-
| Codex CLI | Limited | `/skills` then `sinapse-<agent-id>` | Limited (some checks need manual sync) | Run `npm run sync:ide:codex` and follow `/skills` flow |
|
|
36
|
-
| Cursor | Limited | `@agent` + synced rules | Not available | Follow synced rules and run validators manually (`npm run validate:parity`) |
|
|
37
|
-
| GitHub Copilot | Limited | chat modes + repo instructions | Not available | Use repo instructions and VS Code MCP config for context |
|
|
38
|
-
| AntiGravity | Limited | workflow-driven activation | Not available | Use generated workflows and run validators manually |
|
|
20
|
+
| IDE/CLI | Overall Status | How to Activate an Agent | Auto-Checks Before/After Actions |
|
|
21
|
+
| --- | --- | --- | --- |
|
|
22
|
+
| Claude Code | Works | `/agent-name` commands | Works (full) |
|
|
23
|
+
| Codex CLI | Limited | `/skills` then `sinapse-<agent-id>` | Limited (some checks need manual sync) |
|
|
39
24
|
|
|
40
25
|
Legend:
|
|
41
|
-
- `Works`: fully recommended for new users
|
|
26
|
+
- `Works`: fully recommended for new users.
|
|
42
27
|
- `Limited`: usable with the documented workaround.
|
|
43
|
-
- `Not available`: this IDE does not offer this capability; use the workaround instead.
|
|
44
28
|
|
|
45
29
|
### What You Lose Without Full Auto-Checks
|
|
46
30
|
|
|
@@ -49,32 +33,26 @@ Some IDEs run automatic checks before and after each action (e.g., validating co
|
|
|
49
33
|
| IDE | Auto-Check Level | What Is Reduced | How to Compensate |
|
|
50
34
|
| --- | --- | --- | --- |
|
|
51
35
|
| Claude Code | Full | Nothing | Built-in checks handle everything |
|
|
52
|
-
| Gemini CLI | High | Minor timing differences in checks | Gemini native checks cover most scenarios |
|
|
53
36
|
| Codex CLI | Partial | Less automatic session tracking; some pre/post-action checks need manual trigger | Use `AGENTS.md` + `/skills` + sync/validation scripts |
|
|
54
|
-
| Cursor | None | No automatic pre/post-action checks; no automatic audit trail | Follow synced rules, use MCP for context, run validators |
|
|
55
|
-
| GitHub Copilot | None | Same as Cursor, plus more reliance on manual workflow | Use repo instructions, chat modes, VS Code MCP |
|
|
56
|
-
| AntiGravity | None | No automatic check equivalents | Use generated workflows and run validators |
|
|
57
37
|
|
|
58
38
|
### Beginner Decision Guide
|
|
59
39
|
|
|
60
40
|
If your goal is to get started as fast as possible:
|
|
61
41
|
|
|
62
|
-
1. **Best option:** Use `Claude Code`
|
|
42
|
+
1. **Best option:** Use `Claude Code` -- it has the most automation and fewest manual steps.
|
|
63
43
|
2. **Good option:** Use `Codex CLI` if you prefer a terminal-first workflow and can follow the `/skills` activation flow.
|
|
64
|
-
3. **Usable with extra steps:** Use `Cursor`, `Copilot`, or `AntiGravity` -- they work but require more manual validation steps (see workarounds in the table above).
|
|
65
44
|
|
|
66
45
|
### Practical Consequences by Capability
|
|
67
46
|
|
|
68
47
|
- **Session tracking** (automatic start/end detection):
|
|
69
|
-
- Automatic on Claude Code
|
|
70
|
-
- Manual or partial on Codex
|
|
48
|
+
- Automatic on Claude Code.
|
|
49
|
+
- Manual or partial on Codex CLI.
|
|
71
50
|
- **Pre/post-action guardrails** (checks that run before and after each tool use):
|
|
72
|
-
- Full on Claude Code
|
|
51
|
+
- Full on Claude Code.
|
|
73
52
|
- Partial on Codex CLI (run sync scripts to compensate).
|
|
74
|
-
- Not available on Cursor, Copilot, and AntiGravity (run validators manually).
|
|
75
53
|
- **Automatic audit trail** (record of what happened in each session):
|
|
76
|
-
- Richest on Claude Code
|
|
77
|
-
- Reduced on
|
|
54
|
+
- Richest on Claude Code.
|
|
55
|
+
- Reduced on Codex CLI (compensate with manual logging or validator output).
|
|
78
56
|
|
|
79
57
|
---
|
|
80
58
|
|
|
@@ -159,158 +137,6 @@ ls -la AGENTS.md .codex/agents/ .codex/skills/
|
|
|
159
137
|
|
|
160
138
|
---
|
|
161
139
|
|
|
162
|
-
### Cursor
|
|
163
|
-
|
|
164
|
-
**Recommendation Level:** Best (popular AI IDE)
|
|
165
|
-
|
|
166
|
-
```yaml
|
|
167
|
-
config_file: .cursor/rules.md
|
|
168
|
-
agent_folder: .cursor/rules
|
|
169
|
-
activation: @agent-name
|
|
170
|
-
format: condensed-rules
|
|
171
|
-
mcp_support: via configuration
|
|
172
|
-
special_features:
|
|
173
|
-
- Composer integration
|
|
174
|
-
- Chat modes
|
|
175
|
-
- @codebase context
|
|
176
|
-
- Multi-file editing
|
|
177
|
-
- Subagents and cloud handoff support (latest Cursor releases)
|
|
178
|
-
- Long-running agent workflows (research preview)
|
|
179
|
-
```
|
|
180
|
-
|
|
181
|
-
**Setup:**
|
|
182
|
-
|
|
183
|
-
1. SINAPSE creates `.cursor/` directory on init
|
|
184
|
-
2. Agents activated with @mention: `@dev`, `@qa`
|
|
185
|
-
3. Rules synchronized to `.cursor/rules/`
|
|
186
|
-
|
|
187
|
-
**Configuration:**
|
|
188
|
-
|
|
189
|
-
```bash
|
|
190
|
-
# Sync Cursor only
|
|
191
|
-
npm run sync:ide:cursor
|
|
192
|
-
|
|
193
|
-
# Verify setup
|
|
194
|
-
ls -la .cursor/rules/
|
|
195
|
-
```
|
|
196
|
-
|
|
197
|
-
**MCP Configuration (`.cursor/mcp.json`):**
|
|
198
|
-
|
|
199
|
-
```json
|
|
200
|
-
{
|
|
201
|
-
"mcpServers": {
|
|
202
|
-
"context7": {
|
|
203
|
-
"url": "https://mcp.context7.com/sse"
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
```
|
|
208
|
-
|
|
209
|
-
---
|
|
210
|
-
|
|
211
|
-
### GitHub Copilot
|
|
212
|
-
|
|
213
|
-
**Recommendation Level:** Good (GitHub integration)
|
|
214
|
-
|
|
215
|
-
```yaml
|
|
216
|
-
config_file: .github/copilot-instructions.md
|
|
217
|
-
agent_folder: .github/agents
|
|
218
|
-
activation: chat modes
|
|
219
|
-
format: text
|
|
220
|
-
mcp_support: via VS Code MCP config
|
|
221
|
-
special_features:
|
|
222
|
-
- GitHub integration
|
|
223
|
-
- PR assistance
|
|
224
|
-
- Code review
|
|
225
|
-
- Works with repo instructions and VS Code MCP config
|
|
226
|
-
```
|
|
227
|
-
|
|
228
|
-
**Setup:**
|
|
229
|
-
|
|
230
|
-
1. Enable GitHub Copilot in your repository
|
|
231
|
-
2. SINAPSE creates `.github/copilot-instructions.md`
|
|
232
|
-
3. Agent instructions synchronized
|
|
233
|
-
|
|
234
|
-
**Configuration:**
|
|
235
|
-
|
|
236
|
-
```bash
|
|
237
|
-
# Sync all enabled IDE targets
|
|
238
|
-
npm run sync:ide
|
|
239
|
-
|
|
240
|
-
# Verify setup
|
|
241
|
-
cat .github/copilot-instructions.md
|
|
242
|
-
```
|
|
243
|
-
|
|
244
|
-
---
|
|
245
|
-
|
|
246
|
-
### AntiGravity
|
|
247
|
-
|
|
248
|
-
**Recommendation Level:** Good (Google integration)
|
|
249
|
-
|
|
250
|
-
```yaml
|
|
251
|
-
config_file: .antigravity/rules.md
|
|
252
|
-
config_json: .antigravity/antigravity.json
|
|
253
|
-
agent_folder: .agent/workflows
|
|
254
|
-
activation: workflow-based
|
|
255
|
-
format: cursor-style
|
|
256
|
-
mcp_support: native (Google)
|
|
257
|
-
special_features:
|
|
258
|
-
- Google Cloud integration
|
|
259
|
-
- Workflow system
|
|
260
|
-
- Native Firebase tools
|
|
261
|
-
```
|
|
262
|
-
|
|
263
|
-
**Setup:**
|
|
264
|
-
|
|
265
|
-
1. SINAPSE creates `.antigravity/` directory
|
|
266
|
-
2. Configure Google Cloud credentials
|
|
267
|
-
3. Agents synchronized as workflows
|
|
268
|
-
|
|
269
|
-
---
|
|
270
|
-
|
|
271
|
-
### Gemini CLI
|
|
272
|
-
|
|
273
|
-
**Recommendation Level:** Good
|
|
274
|
-
|
|
275
|
-
```yaml
|
|
276
|
-
config_file: .gemini/rules.md
|
|
277
|
-
agent_folder: .gemini/rules/SINAPSE/agents
|
|
278
|
-
activation: slash launcher commands
|
|
279
|
-
format: text
|
|
280
|
-
mcp_support: native
|
|
281
|
-
special_features:
|
|
282
|
-
- Google AI models
|
|
283
|
-
- CLI-based workflow
|
|
284
|
-
- Multimodal support
|
|
285
|
-
- Native hooks events and hook commands
|
|
286
|
-
- Native MCP server support
|
|
287
|
-
- Rapidly evolving command/tooling UX
|
|
288
|
-
```
|
|
289
|
-
|
|
290
|
-
**Setup:**
|
|
291
|
-
|
|
292
|
-
1. Run installer flow selecting `gemini` in IDE selection (wizard path)
|
|
293
|
-
2. SINAPSE creates:
|
|
294
|
-
- `.gemini/rules.md`
|
|
295
|
-
- `.gemini/rules/SINAPSE/agents/*.md`
|
|
296
|
-
- `.gemini/commands/*.toml` (`/sinapse-menu`, `/sinapse-<agent>`)
|
|
297
|
-
- `.gemini/hooks/*.js`
|
|
298
|
-
- `.gemini/settings.json` (hooks enabled)
|
|
299
|
-
3. Validate integration:
|
|
300
|
-
|
|
301
|
-
```bash
|
|
302
|
-
npm run sync:ide:gemini
|
|
303
|
-
npm run validate:gemini-sync
|
|
304
|
-
npm run validate:gemini-integration
|
|
305
|
-
```
|
|
306
|
-
|
|
307
|
-
4. Quick agent activation (recommended):
|
|
308
|
-
- `/sinapse-menu` to list shortcuts
|
|
309
|
-
- `/sinapse-dev`, `/sinapse-architect`, `/sinapse-qa`, etc.
|
|
310
|
-
- `/sinapse-agent <agent-id>` for generic launcher
|
|
311
|
-
|
|
312
|
-
---
|
|
313
|
-
|
|
314
140
|
## Sync System
|
|
315
141
|
|
|
316
142
|
### How Sync Works
|
|
@@ -319,13 +145,12 @@ SINAPSE maintains a single source of truth for agent definitions and synchronize
|
|
|
319
145
|
|
|
320
146
|
```
|
|
321
147
|
┌─────────────────────────────────────────────────────┐
|
|
322
|
-
│ SINAPSE Core
|
|
323
|
-
│ .sinapse-ai/development/agents/ (Source of Truth)
|
|
324
|
-
│ │
|
|
148
|
+
│ SINAPSE Core │
|
|
149
|
+
│ .sinapse-ai/development/agents/ (Source of Truth) │
|
|
150
|
+
│ │ │
|
|
325
151
|
│ ┌───────────┼───────────┐ │
|
|
326
|
-
│ ▼ ▼
|
|
327
|
-
│ .claude/ .codex/
|
|
328
|
-
│ .antigravity/ .gemini/ │
|
|
152
|
+
│ ▼ ▼ │
|
|
153
|
+
│ .claude/ .codex/ │
|
|
329
154
|
└─────────────────────────────────────────────────────┘
|
|
330
155
|
```
|
|
331
156
|
|
|
@@ -335,11 +160,6 @@ SINAPSE maintains a single source of truth for agent definitions and synchronize
|
|
|
335
160
|
# Sync all IDE targets
|
|
336
161
|
npm run sync:ide
|
|
337
162
|
|
|
338
|
-
# Sync only Gemini
|
|
339
|
-
npm run sync:ide:gemini
|
|
340
|
-
npm run sync:ide:github-copilot
|
|
341
|
-
npm run sync:ide:antigravity
|
|
342
|
-
|
|
343
163
|
# Validate sync
|
|
344
164
|
npm run sync:ide:check
|
|
345
165
|
```
|
|
@@ -357,10 +177,6 @@ auto_sync:
|
|
|
357
177
|
platforms:
|
|
358
178
|
- claude
|
|
359
179
|
- codex
|
|
360
|
-
- github-copilot
|
|
361
|
-
- cursor
|
|
362
|
-
- gemini
|
|
363
|
-
- antigravity
|
|
364
180
|
```
|
|
365
181
|
|
|
366
182
|
---
|
|
@@ -378,9 +194,7 @@ npm run sync:ide
|
|
|
378
194
|
npm run sync:ide:check
|
|
379
195
|
|
|
380
196
|
# Check platform-specific directory
|
|
381
|
-
ls .cursor/rules/agents/ # Cursor
|
|
382
197
|
ls .claude/commands/SINAPSE/agents/ # Claude Code
|
|
383
|
-
ls .gemini/rules/SINAPSE/agents/ # Gemini CLI
|
|
384
198
|
```
|
|
385
199
|
|
|
386
200
|
### Sync Conflicts
|
|
@@ -389,8 +203,7 @@ ls .gemini/rules/SINAPSE/agents/ # Gemini CLI
|
|
|
389
203
|
# Preview what would change
|
|
390
204
|
npm run sync:ide -- --dry-run
|
|
391
205
|
|
|
392
|
-
#
|
|
393
|
-
cp -r .cursor/rules/ .cursor/rules.backup/
|
|
206
|
+
# Force sync
|
|
394
207
|
npm run sync:ide
|
|
395
208
|
```
|
|
396
209
|
|
|
@@ -402,7 +215,6 @@ sinapse mcp status
|
|
|
402
215
|
|
|
403
216
|
# Verify MCP configuration for IDE
|
|
404
217
|
cat ~/.claude.json # For Claude Code
|
|
405
|
-
cat .cursor/mcp.json # For Cursor
|
|
406
218
|
```
|
|
407
219
|
|
|
408
220
|
### IDE-Specific Issues
|
|
@@ -412,67 +224,14 @@ cat .cursor/mcp.json # For Cursor
|
|
|
412
224
|
- Ensure `.claude/` is in project root
|
|
413
225
|
- Check hooks permissions: `chmod +x .claude/hooks/*.py`
|
|
414
226
|
|
|
415
|
-
**Cursor:**
|
|
416
|
-
|
|
417
|
-
- Restart Cursor after sync
|
|
418
|
-
- Check `.cursor/rules/` permissions
|
|
419
|
-
|
|
420
|
-
## Platform Decision Guide
|
|
421
|
-
|
|
422
|
-
Use this guide to choose the right platform:
|
|
423
|
-
|
|
424
|
-
```
|
|
425
|
-
Do you use Claude/Anthropic API?
|
|
426
|
-
├── Yes --> Claude Code (Best SINAPSE integration)
|
|
427
|
-
└── No
|
|
428
|
-
└── Do you prefer VS Code?
|
|
429
|
-
├── Yes --> Want an extension?
|
|
430
|
-
│ ├── Yes --> GitHub Copilot (Native GitHub features)
|
|
431
|
-
│ └── No --> GitHub Copilot (Native GitHub features)
|
|
432
|
-
└── No --> Want a dedicated AI IDE?
|
|
433
|
-
├── Yes --> Which model do you prefer?
|
|
434
|
-
│ ├── Claude/GPT --> Cursor (Most popular AI IDE)
|
|
435
|
-
└── No --> Use Google Cloud?
|
|
436
|
-
├── Yes --> AntiGravity (Google integration)
|
|
437
|
-
└── No --> Gemini CLI (Specialized)
|
|
438
|
-
```
|
|
439
|
-
|
|
440
|
-
---
|
|
441
|
-
|
|
442
|
-
## Migration Between IDEs
|
|
443
|
-
|
|
444
|
-
### From Cursor to Claude Code
|
|
445
|
-
|
|
446
|
-
```bash
|
|
447
|
-
# Export current rules
|
|
448
|
-
cp -r .cursor/rules/ ./rules-backup/
|
|
449
|
-
|
|
450
|
-
# Initialize Claude Code
|
|
451
|
-
npm run sync:ide
|
|
452
|
-
|
|
453
|
-
# Verify migration
|
|
454
|
-
diff -r ./rules-backup/ .claude/commands/SINAPSE/agents/
|
|
455
|
-
```
|
|
456
|
-
|
|
457
|
-
### From Claude Code to Cursor
|
|
458
|
-
|
|
459
|
-
```bash
|
|
460
|
-
# Sync to Cursor
|
|
461
|
-
npm run sync:ide:cursor
|
|
462
|
-
|
|
463
|
-
# Configure MCP (if needed)
|
|
464
|
-
# Copy MCP config to .cursor/mcp.json
|
|
465
|
-
```
|
|
466
|
-
|
|
467
227
|
---
|
|
468
228
|
|
|
469
229
|
## Related Documentation
|
|
470
230
|
|
|
471
231
|
- [Claude Code Guide](./pt/platforms/claude-code.md)
|
|
472
|
-
- [Cursor Guide](./pt/platforms/cursor.md)
|
|
473
232
|
- [Agent Selection Guide](./guides/agent-selection-guide.md)
|
|
474
233
|
- [MCP Global Setup](./guides/mcp-global-setup.md)
|
|
475
234
|
|
|
476
235
|
---
|
|
477
236
|
|
|
478
|
-
_SINAPSE IDE Integration Guide
|
|
237
|
+
_SINAPSE IDE Integration Guide v7.0.5_
|
|
@@ -76,12 +76,10 @@ npx sinapse-ai install --force-upgrade
|
|
|
76
76
|
|
|
77
77
|
## Supported IDEs
|
|
78
78
|
|
|
79
|
-
| IDE
|
|
80
|
-
|
|
|
81
|
-
| Claude Code
|
|
82
|
-
|
|
|
83
|
-
| Gemini CLI | Mention in prompt |
|
|
84
|
-
| GitHub Copilot | Chat modes |
|
|
79
|
+
| IDE | Agent Activation |
|
|
80
|
+
| ----------- | ------------------- |
|
|
81
|
+
| Claude Code | `/dev`, `/qa`, etc. |
|
|
82
|
+
| Codex CLI | `/skills` flow |
|
|
85
83
|
|
|
86
84
|
---
|
|
87
85
|
|
package/docs/installation/faq.md
CHANGED
|
@@ -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/`,
|
|
78
|
+
- Create IDE configuration (`.claude/`, etc.)
|
|
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/`
|
|
82
|
+
**Important:** If you have an existing `.claude/` directory, the installer will ask before modifying.
|
|
83
83
|
|
|
84
84
|
---
|
|
85
85
|
|
|
@@ -119,9 +119,6 @@ your-project/
|
|
|
119
119
|
├── .claude/ # Claude Code (if selected)
|
|
120
120
|
│ └── commands/SINAPSE/agents/ # Agent slash commands
|
|
121
121
|
│
|
|
122
|
-
├── .cursor/ # Cursor (if selected)
|
|
123
|
-
│ └── rules/ # Agent rules
|
|
124
|
-
│
|
|
125
122
|
├── docs/ # Documentation structure
|
|
126
123
|
│ ├── stories/ # Development stories
|
|
127
124
|
│ ├── architecture/ # Architecture docs
|
|
@@ -223,7 +220,7 @@ mv .sinapse-ai.backup .sinapse-ai
|
|
|
223
220
|
npx sinapse-ai install
|
|
224
221
|
|
|
225
222
|
# Package for offline use
|
|
226
|
-
tar -czvf sinapse-offline.tar.gz .sinapse-ai/ .claude/
|
|
223
|
+
tar -czvf sinapse-offline.tar.gz .sinapse-ai/ .claude/
|
|
227
224
|
```
|
|
228
225
|
|
|
229
226
|
**On air-gapped machine:**
|
|
@@ -254,7 +251,7 @@ tar -xzvf sinapse-offline.tar.gz
|
|
|
254
251
|
# Install and package
|
|
255
252
|
npx sinapse-ai install
|
|
256
253
|
cd your-project
|
|
257
|
-
tar -czvf sinapse-transfer.tar.gz .sinapse-ai/ .claude/
|
|
254
|
+
tar -czvf sinapse-transfer.tar.gz .sinapse-ai/ .claude/ docs/
|
|
258
255
|
```
|
|
259
256
|
|
|
260
257
|
2. **Transfer the archive** via USB, secure transfer, etc.
|
|
@@ -276,14 +273,10 @@ tar -xzvf sinapse-offline.tar.gz
|
|
|
276
273
|
|
|
277
274
|
**Answer:**
|
|
278
275
|
|
|
279
|
-
| IDE
|
|
280
|
-
|
|
|
281
|
-
| **Claude Code**
|
|
282
|
-
| **
|
|
283
|
-
| **Gemini CLI** | Full Support | Mention in prompt |
|
|
284
|
-
| **GitHub Copilot** | Full Support | Chat modes |
|
|
285
|
-
|
|
286
|
-
**Adding support for a new IDE:** Open a GitHub issue with the IDE's agent/rules specification.
|
|
276
|
+
| IDE | Status | Agent Activation |
|
|
277
|
+
| --------------- | ------------ | ------------------- |
|
|
278
|
+
| **Claude Code** | Full Support | `/dev`, `/qa`, etc. |
|
|
279
|
+
| **Codex CLI** | Limited | `/skills` flow |
|
|
287
280
|
|
|
288
281
|
---
|
|
289
282
|
|
|
@@ -291,23 +284,7 @@ tar -xzvf sinapse-offline.tar.gz
|
|
|
291
284
|
|
|
292
285
|
**Answer:** Yes! Select multiple IDEs during installation:
|
|
293
286
|
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
```
|
|
297
|
-
? Which IDE(s) do you want to configure?
|
|
298
|
-
❯ ◉ Cursor
|
|
299
|
-
◉ Claude Code
|
|
300
|
-
```
|
|
301
|
-
|
|
302
|
-
**Command line:**
|
|
303
|
-
|
|
304
|
-
```bash
|
|
305
|
-
```
|
|
306
|
-
|
|
307
|
-
Each IDE gets its own configuration directory:
|
|
308
|
-
|
|
309
|
-
- `.cursor/rules/` for Cursor
|
|
310
|
-
- `.claude/commands/` for Claude Code
|
|
287
|
+
The installer configures supported IDEs automatically. Claude Code uses `.claude/commands/` for agent configuration.
|
|
311
288
|
|
|
312
289
|
---
|
|
313
290
|
|
|
@@ -323,7 +300,7 @@ git clone your-repo
|
|
|
323
300
|
cd your-repo
|
|
324
301
|
|
|
325
302
|
# Optionally configure their preferred IDE
|
|
326
|
-
npx sinapse-ai install
|
|
303
|
+
npx sinapse-ai install
|
|
327
304
|
```
|
|
328
305
|
|
|
329
306
|
If `.sinapse-ai/` is not committed:
|
|
@@ -181,7 +181,6 @@ The installer automatically:
|
|
|
181
181
|
- ✅ Detects your Linux distribution and applies optimizations
|
|
182
182
|
- ✅ Creates necessary directories with proper Unix permissions (755/644)
|
|
183
183
|
- ✅ Configures IDE paths for Linux:
|
|
184
|
-
- Cursor: `~/.config/Cursor/`
|
|
185
184
|
- Claude: `~/.claude/`
|
|
186
185
|
- ✅ Sets up shell scripts with Unix line endings (LF)
|
|
187
186
|
- ✅ Respects XDG Base Directory specification
|
|
@@ -191,20 +190,6 @@ The installer automatically:
|
|
|
191
190
|
|
|
192
191
|
## IDE-Specific Setup
|
|
193
192
|
|
|
194
|
-
### Cursor
|
|
195
|
-
|
|
196
|
-
1. Install Cursor: Download from [cursor.sh](https://cursor.sh/)
|
|
197
|
-
|
|
198
|
-
```bash
|
|
199
|
-
# AppImage method
|
|
200
|
-
chmod +x cursor-*.AppImage
|
|
201
|
-
./cursor-*.AppImage
|
|
202
|
-
```
|
|
203
|
-
|
|
204
|
-
2. IDE rules are installed to `.cursor/rules/`
|
|
205
|
-
3. Keyboard shortcut: `Ctrl+L` to open chat
|
|
206
|
-
4. Use `@agent-name` to activate agents
|
|
207
|
-
|
|
208
193
|
### Claude Code (CLI)
|
|
209
194
|
|
|
210
195
|
1. Install Claude Code:
|
|
@@ -216,14 +201,6 @@ The installer automatically:
|
|
|
216
201
|
2. Commands are installed to `.claude/commands/SINAPSE/`
|
|
217
202
|
3. Use `/agent-name` to activate agents
|
|
218
203
|
|
|
219
|
-
|
|
220
|
-
3. Use `@agent-name` to activate agents
|
|
221
|
-
|
|
222
|
-
### VS Code (with Continue extension)
|
|
223
|
-
|
|
224
|
-
1. Install Continue extension
|
|
225
|
-
2. Configure SINAPSE rules in `.continue/`
|
|
226
|
-
|
|
227
204
|
---
|
|
228
205
|
|
|
229
206
|
## Troubleshooting
|
|
@@ -74,27 +74,17 @@ The installer automatically:
|
|
|
74
74
|
- ✅ Detects macOS and applies platform-specific configurations
|
|
75
75
|
- ✅ Creates necessary directories with proper permissions
|
|
76
76
|
- ✅ Configures IDE paths for macOS locations:
|
|
77
|
-
- Cursor: `~/Library/Application Support/Cursor/`
|
|
78
77
|
- Claude: `~/.claude/`
|
|
79
78
|
- ✅ Sets up shell scripts with Unix line endings
|
|
80
79
|
- ✅ Handles case-sensitive filesystems properly
|
|
81
80
|
|
|
82
81
|
## IDE-Specific Setup
|
|
83
82
|
|
|
84
|
-
### Cursor
|
|
85
|
-
|
|
86
|
-
1. IDE rules are installed to `.cursor/rules/`
|
|
87
|
-
2. Keyboard shortcut: `Cmd+L` to open chat
|
|
88
|
-
3. Use `@agent-name` to activate agents
|
|
89
|
-
|
|
90
83
|
### Claude Code
|
|
91
84
|
|
|
92
85
|
1. Commands are installed to `.claude/commands/SINAPSE/`
|
|
93
86
|
2. Use `/agent-name` to activate agents
|
|
94
87
|
|
|
95
|
-
|
|
96
|
-
2. Use `@agent-name` to activate agents
|
|
97
|
-
|
|
98
88
|
## Troubleshooting
|
|
99
89
|
|
|
100
90
|
### Permission Issues
|
|
@@ -547,15 +547,12 @@ nvm use 16
|
|
|
547
547
|
```bash
|
|
548
548
|
# Claude Code
|
|
549
549
|
ls .claude/commands/SINAPSE/agents/
|
|
550
|
-
|
|
551
|
-
# Cursor
|
|
552
|
-
ls .cursor/rules/
|
|
553
550
|
```
|
|
554
551
|
|
|
555
552
|
3. Check IDE settings allow custom commands
|
|
556
|
-
4. Re-run installation
|
|
553
|
+
4. Re-run installation:
|
|
557
554
|
```bash
|
|
558
|
-
npx sinapse-ai install
|
|
555
|
+
npx sinapse-ai install
|
|
559
556
|
```
|
|
560
557
|
|
|
561
558
|
---
|
|
@@ -567,9 +564,8 @@ nvm use 16
|
|
|
567
564
|
**Solution:**
|
|
568
565
|
|
|
569
566
|
1. Check IDE version is compatible
|
|
570
|
-
2. For
|
|
571
|
-
3.
|
|
572
|
-
4. Restart IDE after installation
|
|
567
|
+
2. For Claude Code: Files should be in `.claude/commands/`
|
|
568
|
+
3. Restart IDE after installation
|
|
573
569
|
|
|
574
570
|
---
|
|
575
571
|
|
|
@@ -690,7 +686,7 @@ ls -la .sinapse-ai/
|
|
|
690
686
|
- OS: [Windows 11 / macOS 14 / Ubuntu 22.04]
|
|
691
687
|
- Node.js version: [output of `node --version`]
|
|
692
688
|
- npm version: [output of `npm --version`]
|
|
693
|
-
- IDE: [Claude Code /
|
|
689
|
+
- IDE: [Claude Code / Codex CLI]
|
|
694
690
|
|
|
695
691
|
**Steps to Reproduce:**
|
|
696
692
|
1. [First step]
|
|
@@ -230,7 +230,7 @@ npm cache clean --force
|
|
|
230
230
|
|
|
231
231
|
### Agent not responding
|
|
232
232
|
|
|
233
|
-
1. Ensure you're in
|
|
233
|
+
1. Ensure you're in Claude Code CLI or Codex CLI
|
|
234
234
|
2. Check you're using correct activation syntax: `@agent-name`
|
|
235
235
|
3. Verify agent file exists: `ls .sinapse-ai/development/agents/`
|
|
236
236
|
|
|
@@ -156,7 +156,6 @@ The installer automatically:
|
|
|
156
156
|
- ✅ Detects Windows and applies platform-specific configurations
|
|
157
157
|
- ✅ Creates necessary directories with proper permissions
|
|
158
158
|
- ✅ Configures IDE paths for Windows locations:
|
|
159
|
-
- Cursor: `%APPDATA%\Cursor\`
|
|
160
159
|
- Claude: `%USERPROFILE%\.claude\`
|
|
161
160
|
- ✅ Handles Windows path separators (backslashes)
|
|
162
161
|
- ✅ Configures line endings correctly (CRLF for batch, LF for scripts)
|
|
@@ -166,14 +165,6 @@ The installer automatically:
|
|
|
166
165
|
|
|
167
166
|
## IDE-Specific Setup
|
|
168
167
|
|
|
169
|
-
### Cursor
|
|
170
|
-
|
|
171
|
-
1. Download from [cursor.sh](https://cursor.sh/)
|
|
172
|
-
2. Run the installer
|
|
173
|
-
3. IDE rules are installed to `.cursor\rules\`
|
|
174
|
-
4. Keyboard shortcut: `Ctrl+L` to open chat
|
|
175
|
-
5. Use `@agent-name` to activate agents
|
|
176
|
-
|
|
177
168
|
### Claude Code (CLI)
|
|
178
169
|
|
|
179
170
|
1. Install Claude Code:
|
|
@@ -185,15 +176,6 @@ The installer automatically:
|
|
|
185
176
|
2. Commands are installed to `.claude\commands\SINAPSE\`
|
|
186
177
|
3. Use `/agent-name` to activate agents
|
|
187
178
|
|
|
188
|
-
|
|
189
|
-
2. Run the installer
|
|
190
|
-
4. Use `@agent-name` to activate agents
|
|
191
|
-
|
|
192
|
-
### VS Code
|
|
193
|
-
|
|
194
|
-
1. Install Continue extension from marketplace
|
|
195
|
-
2. SINAPSE can integrate via `.continue\` configuration
|
|
196
|
-
|
|
197
179
|
---
|
|
198
180
|
|
|
199
181
|
## Troubleshooting
|