sinapse-ai 6.0.0 → 6.0.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.
@@ -7,8 +7,8 @@
7
7
  # - SHA256 hashes for change detection
8
8
  # - File types for categorization
9
9
  #
10
- version: 6.0.0
11
- generated_at: "2026-03-25T02:59:56.752Z"
10
+ version: 6.0.2
11
+ generated_at: "2026-03-25T03:38:47.355Z"
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:5ea2b18bd32413355ceb504f4169456c962709f4801335be29287e1eab221a3b
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
@@ -31,14 +31,14 @@ const NC = '\x1b[0m';
31
31
  function header() {
32
32
  const W = `${WHITE}${BOLD}`;
33
33
  console.log('');
34
- console.log(`${W} ███████╗██╗███╗ ██╗ █████╗ ██████╗ ███████╗███████╗${NC}`);
35
- console.log(`${W} ██╔════╝██║████╗ ██║██╔══██╗██╔══██╗██╔════╝██╔════╝${NC}`);
36
- console.log(`${W} ███████╗██║██╔██╗ ██║███████║██████╔╝███████╗█████╗ ${NC}`);
37
- console.log(`${W} ╚════██║██║██║╚██╗██║██╔══██║██╔═══╝ ╚════██║██╔══╝ ${NC}`);
38
- console.log(`${W} ███████║██║██║ ╚████║██║ ██║██║ ███████║███████╗${NC}`);
39
- console.log(`${W} ╚══════╝╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝╚═╝ ╚══════╝╚══════╝${NC}`);
34
+ console.log(`${W} ███████╗██╗███╗ ██╗ █████╗ ██████╗ ███████╗███████╗ █████╗ ██╗${NC}`);
35
+ console.log(`${W} ██╔════╝██║████╗ ██║██╔══██╗██╔══██╗██╔════╝██╔════╝ ██╔══██╗██║${NC}`);
36
+ console.log(`${W} ███████╗██║██╔██╗ ██║███████║██████╔╝███████╗█████╗ ███████║██║${NC}`);
37
+ console.log(`${W} ╚════██║██║██║╚██╗██║██╔══██║██╔═══╝ ╚════██║██╔══╝ ██╔══██║██║${NC}`);
38
+ console.log(`${W} ███████║██║██║ ╚████║██║ ██║██║ ███████║███████╗ ██║ ██║██║${NC}`);
39
+ console.log(`${W} ╚══════╝╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝╚═╝ ╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝${NC}`);
40
40
  console.log('');
41
- console.log(`${DIM} AI Agent Squads for Claude Code${NC}`);
41
+ console.log(`${DIM} Seu copiloto de inteligencia artificial${NC}`);
42
42
  console.log(`${DIM} v${VERSION}${NC}`);
43
43
  console.log('');
44
44
  }
@@ -153,7 +153,7 @@ function cmdInstallGlobal() {
153
153
  console.log(` ${GREEN}OK${NC} ${squad.name} (${squad.agents} agents)`);
154
154
  }
155
155
 
156
- // Copy sinapse/ master squad
156
+ // Copy sinapse/ orqx squad
157
157
  const sinapseMasterSrc = path.join(ROOT, 'sinapse');
158
158
  const sinapseMasterDest = path.join(SINAPSE_HOME, 'sinapse');
159
159
  if (fs.existsSync(sinapseMasterSrc)) {
@@ -191,13 +191,14 @@ function cmdInstallGlobal() {
191
191
  console.log(` ${GREEN}OK${NC} Framework agents — ${cmdCount} agents`);
192
192
  }
193
193
 
194
- // Generate commands for each squad
194
+ // Generate commands only for orqx agents (user-facing orchestrators)
195
195
  for (const squad of squads) {
196
196
  const squadPath = `${sinapseBase}/${squad.name}`;
197
197
  const agentsDir = path.join(SINAPSE_HOME, squad.name, 'agents');
198
198
  if (!fs.existsSync(agentsDir)) continue;
199
199
 
200
- for (const file of fs.readdirSync(agentsDir).filter(f => f.endsWith('.md'))) {
200
+ const orqxAgents = fs.readdirSync(agentsDir).filter(f => f.endsWith('.md') && f.includes('-orqx'));
201
+ for (const file of orqxAgents) {
201
202
  const agentId = file.replace('.md', '');
202
203
  const meta = extractAgentMeta(path.join(agentsDir, file));
203
204
  const cmdContent = generateCommandMd(agentId, meta.name, meta.icon, squad.name, squadPath, file);
@@ -206,7 +207,7 @@ function cmdInstallGlobal() {
206
207
  }
207
208
  }
208
209
 
209
- // Generate commands for sinapse/ master squad agents
210
+ // Generate commands for sinapse/ orqx squad agents
210
211
  if (fs.existsSync(sinapseMasterDest)) {
211
212
  const masterAgentsDir = path.join(sinapseMasterDest, 'agents');
212
213
  if (fs.existsSync(masterAgentsDir)) {
@@ -561,12 +562,14 @@ function cmdUpdateGlobal() {
561
562
 
562
563
  console.log(`${BOLD}Updating Sinapse...${NC}\n`);
563
564
 
564
- const squads = getSquads(ROOT);
565
+ const squadsDir = path.join(ROOT, 'squads');
566
+ const squadsSrcBase = fs.existsSync(squadsDir) ? squadsDir : ROOT;
567
+ const squads = getSquads(squadsSrcBase);
565
568
 
566
569
  // Phase 1: Re-copy squads
567
570
  console.log(`${CYAN}Phase 1:${NC} Updating squads`);
568
571
  for (const squad of squads) {
569
- const src = path.join(ROOT, squad.name);
572
+ const src = path.join(squadsSrcBase, squad.name);
570
573
  const dest = path.join(SINAPSE_HOME, squad.name);
571
574
  rmDirSync(dest);
572
575
  copyDirSync(src, dest);
@@ -577,7 +580,7 @@ function cmdUpdateGlobal() {
577
580
  if (fs.existsSync(sinapseMasterSrc)) {
578
581
  rmDirSync(path.join(SINAPSE_HOME, 'sinapse'));
579
582
  copyDirSync(sinapseMasterSrc, path.join(SINAPSE_HOME, 'sinapse'));
580
- console.log(` ${GREEN}OK${NC} sinapse (master)`);
583
+ console.log(` ${GREEN}OK${NC} sinapse (orqx)`);
581
584
  }
582
585
 
583
586
  // Phase 2: Regenerate commands (reuse install logic)
@@ -599,10 +602,15 @@ function cmdUpdateGlobal() {
599
602
  }
600
603
  }
601
604
 
605
+ // Only generate commands for orqx agents (user-facing orchestrators)
606
+ let totalAgents = 0;
602
607
  for (const squad of squads) {
603
608
  const agentsDir = path.join(SINAPSE_HOME, squad.name, 'agents');
604
609
  if (!fs.existsSync(agentsDir)) continue;
605
- for (const file of fs.readdirSync(agentsDir).filter(f => f.endsWith('.md'))) {
610
+ const allAgents = fs.readdirSync(agentsDir).filter(f => f.endsWith('.md'));
611
+ totalAgents += allAgents.length;
612
+ const orqxAgents = allAgents.filter(f => f.includes('-orqx'));
613
+ for (const file of orqxAgents) {
606
614
  const agentId = file.replace('.md', '');
607
615
  const meta = extractAgentMeta(path.join(agentsDir, file));
608
616
  const squadPath = `${sinapseBase}/${squad.name}`;
@@ -613,7 +621,7 @@ function cmdUpdateGlobal() {
613
621
  cmdCount++;
614
622
  }
615
623
  }
616
- console.log(` ${GREEN}OK${NC} ${cmdCount} command files`);
624
+ console.log(` ${GREEN}OK${NC} ${cmdCount} command files (${totalAgents} agents total)`);
617
625
 
618
626
  // Phase 3: Regenerate awareness
619
627
  console.log(`\n${CYAN}Phase 3:${NC} Updating squad-awareness`);
@@ -628,7 +636,7 @@ function cmdUpdateGlobal() {
628
636
  meta.commands = cmdCount;
629
637
  fs.writeFileSync(metaPath, JSON.stringify(meta, null, 2));
630
638
 
631
- console.log(`\n${GREEN}Update complete!${NC} ${squads.length} squads | ${cmdCount} agents\n`);
639
+ console.log(`\n${GREEN}Update complete!${NC} ${squads.length} squads | ${totalAgents} agents | ${cmdCount} orqx commands\n`);
632
640
  }
633
641
 
634
642
  // ── Uninstall ────────────────────────────────────────────────────────────────
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sinapse-ai",
3
- "version": "6.0.0",
3
+ "version": "6.0.2",
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