sinapse-ai 6.0.0 → 6.0.1

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.
@@ -8,7 +8,7 @@
8
8
  # - File types for categorization
9
9
  #
10
10
  version: 6.0.0
11
- generated_at: "2026-03-25T02:59:56.752Z"
11
+ generated_at: "2026-03-25T03:26:43.916Z"
12
12
  generator: scripts/generate-install-manifest.js
13
13
  file_count: 1090
14
14
  files:
@@ -1217,9 +1217,9 @@ files:
1217
1217
  type: data
1218
1218
  size: 9586
1219
1219
  - path: data/entity-registry.yaml
1220
- hash: sha256:f9027d6ec547c6ca09ad26c934f680b18e3f50194bcbffcb9ea6926c1f08ee38
1220
+ hash: sha256:1e7e92b7fc32364dc043d67a564d708a04f5d9cab8fb0b1f92141251209341c4
1221
1221
  type: data
1222
- size: 513946
1222
+ size: 519845
1223
1223
  - path: data/learned-patterns.yaml
1224
1224
  hash: sha256:24ac0b160615583a0ff783d3da8af80b7f94191575d6db2054ec8e10a3f945dc
1225
1225
  type: data
package/bin/cli.js CHANGED
@@ -561,12 +561,14 @@ function cmdUpdateGlobal() {
561
561
 
562
562
  console.log(`${BOLD}Updating Sinapse...${NC}\n`);
563
563
 
564
- const squads = getSquads(ROOT);
564
+ const squadsDir = path.join(ROOT, 'squads');
565
+ const squadsSrcBase = fs.existsSync(squadsDir) ? squadsDir : ROOT;
566
+ const squads = getSquads(squadsSrcBase);
565
567
 
566
568
  // Phase 1: Re-copy squads
567
569
  console.log(`${CYAN}Phase 1:${NC} Updating squads`);
568
570
  for (const squad of squads) {
569
- const src = path.join(ROOT, squad.name);
571
+ const src = path.join(squadsSrcBase, squad.name);
570
572
  const dest = path.join(SINAPSE_HOME, squad.name);
571
573
  rmDirSync(dest);
572
574
  copyDirSync(src, dest);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sinapse-ai",
3
- "version": "6.0.0",
3
+ "version": "6.0.1",
4
4
  "description": "SINAPSE: AI-Orchestrated System for Full Stack Development — 17 squads, 161 agents",
5
5
  "bin": {
6
6
  "sinapse": "bin/sinapse.js",
@@ -139,7 +139,7 @@ function showWelcome() {
139
139
  console.log(colors.secondary(' Bem-vindo ao SINAPSE AI.'));
140
140
  console.log(colors.secondary(' Seu copiloto de inteligencia artificial.'));
141
141
  console.log('');
142
- console.log(colors.tertiary(' 17 squads · 179 agentes · 1400+ tasks'));
142
+ console.log(colors.tertiary(' 17 squads · 151 agentes · 1400+ tasks'));
143
143
  console.log(colors.tertiary(' Tudo que voce precisa para construir,'));
144
144
  console.log(colors.tertiary(' empacotar e distribuir com IA.'));
145
145
  console.log('');
@@ -172,7 +172,7 @@ function showCompletion(context = {}) {
172
172
  console.log('');
173
173
  console.log(status.success('SINAPSE AI instalado'));
174
174
  console.log(status.success(`${llmLabel} configurado`));
175
- console.log(status.success('179 agentes disponiveis'));
175
+ console.log(status.success('151 agentes disponiveis'));
176
176
  console.log(status.success(`Pronto! ${startCommand}`));
177
177
  console.log('');
178
178
  console.log(headings.divider() + '\n');
@@ -1,6 +1,6 @@
1
1
  # Agent: Imperator — Sinapse Master
2
2
 
3
- > ACTIVATION-NOTICE: You are now Imperator — the supreme orchestrator of the SINAPSE ecosystem. You have authority over all 17 specialized squads and 12 framework agents (179 total). You do not execute domain work yourself — you diagnose, route, coordinate, and synthesize across the entire ecosystem. Every request passes through you first. You are the CEO of this AI workforce.
3
+ > ACTIVATION-NOTICE: You are now Imperator — the supreme orchestrator of the SINAPSE ecosystem. You have authority over all 17 specialized squads and 12 framework agents (151 total). You do not execute domain work yourself — you diagnose, route, coordinate, and synthesize across the entire ecosystem. Every request passes through you first. You are the CEO of this AI workforce.
4
4
 
5
5
  ## ACTIVATION INSTRUCTIONS — MANDATORY ON LOAD
6
6
 
@@ -19,7 +19,7 @@ Then display:
19
19
 
20
20
  ```
21
21
  AI Agent Squads for Claude Code
22
- v1.0 · 17 squads · 179 agents · 1400+ tasks
22
+ v1.0 · 17 squads · 151 agents · 1400+ tasks
23
23
 
24
24
  👑 Imperator — Sinapse Master ativado
25
25