sinapse-ai 7.2.0 → 7.3.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.
- package/.sinapse-ai/data/entity-registry.yaml +30 -126
- package/.sinapse-ai/data/registry-update-log.jsonl +2 -0
- package/.sinapse-ai/development/agents/sinapse-orqx.md +599 -443
- package/.sinapse-ai/install-manifest.yaml +6 -6
- package/package.json +1 -1
- package/packages/installer/src/wizard/i18n.js +2 -2
- package/packages/installer/src/wizard/index.js +29 -7
- package/packages/installer/src/wizard/questions.js +3 -3
- package/sinapse/agents/sinapse-orqx.md +32 -14
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
# - SHA256 hashes for change detection
|
|
8
8
|
# - File types for categorization
|
|
9
9
|
#
|
|
10
|
-
version: 7.
|
|
11
|
-
generated_at: "2026-03-
|
|
10
|
+
version: 7.3.1
|
|
11
|
+
generated_at: "2026-03-27T03:20:12.782Z"
|
|
12
12
|
generator: scripts/generate-install-manifest.js
|
|
13
13
|
file_count: 1082
|
|
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:
|
|
1220
|
+
hash: sha256:a5adb8a0ba825a6365c8d395f9c04e89ceca36601060b5af2222e524cdd54326
|
|
1221
1221
|
type: data
|
|
1222
|
-
size:
|
|
1222
|
+
size: 511414
|
|
1223
1223
|
- path: data/learned-patterns.yaml
|
|
1224
1224
|
hash: sha256:24ac0b160615583a0ff783d3da8af80b7f94191575d6db2054ec8e10a3f945dc
|
|
1225
1225
|
type: data
|
|
@@ -1381,9 +1381,9 @@ files:
|
|
|
1381
1381
|
type: agent
|
|
1382
1382
|
size: 1368
|
|
1383
1383
|
- path: development/agents/sinapse-orqx.md
|
|
1384
|
-
hash: sha256:
|
|
1384
|
+
hash: sha256:8eae456af41fe407facbd63ce6a9b8613b2da126b8847d74a140496c3cf6dcee
|
|
1385
1385
|
type: agent
|
|
1386
|
-
size:
|
|
1386
|
+
size: 31330
|
|
1387
1387
|
- path: development/agents/sprint-lead.md
|
|
1388
1388
|
hash: sha256:fccb55b79210cc63d7fa0b4e383d06a0dff5c24f1e3b851ab965564e8aef0aa2
|
|
1389
1389
|
type: agent
|
package/package.json
CHANGED
|
@@ -324,8 +324,8 @@ const TRANSLATIONS = {
|
|
|
324
324
|
// es: removed — PT-BR hardcoded as default
|
|
325
325
|
};
|
|
326
326
|
|
|
327
|
-
// Current language (default:
|
|
328
|
-
let currentLanguage = '
|
|
327
|
+
// Current language (default: English — worldwide product)
|
|
328
|
+
let currentLanguage = 'en';
|
|
329
329
|
|
|
330
330
|
/**
|
|
331
331
|
* Set current language
|
|
@@ -442,10 +442,6 @@ async function runWizard(options = {}) {
|
|
|
442
442
|
showWelcome();
|
|
443
443
|
}
|
|
444
444
|
|
|
445
|
-
// Hardcode PT-BR as default language
|
|
446
|
-
const language = options.language || 'pt';
|
|
447
|
-
setLanguage(language);
|
|
448
|
-
|
|
449
445
|
let answers = {};
|
|
450
446
|
|
|
451
447
|
// Auto-detect project type and tech preset (always)
|
|
@@ -454,6 +450,8 @@ async function runWizard(options = {}) {
|
|
|
454
450
|
|
|
455
451
|
if (options.quiet) {
|
|
456
452
|
// Quiet mode: Skip all prompts, use defaults
|
|
453
|
+
const language = options.language || 'en';
|
|
454
|
+
setLanguage(language);
|
|
457
455
|
answers = {
|
|
458
456
|
language,
|
|
459
457
|
userProfile: 'bob',
|
|
@@ -464,10 +462,20 @@ async function runWizard(options = {}) {
|
|
|
464
462
|
...options, // Merge any other options
|
|
465
463
|
};
|
|
466
464
|
} else {
|
|
467
|
-
// Interactive mode —
|
|
468
|
-
// Step 1:
|
|
465
|
+
// Interactive mode — 2-step flow
|
|
466
|
+
// Step 1: Language selection
|
|
467
|
+
const existingLanguage = await getExistingLanguage();
|
|
468
|
+
let language;
|
|
469
|
+
if (existingLanguage) {
|
|
470
|
+
language = existingLanguage;
|
|
471
|
+
console.log(`\n ${t('languageSkipped')}: ${language === 'pt' ? 'Português' : 'English'}\n`);
|
|
472
|
+
} else {
|
|
473
|
+
const langAnswer = await inquirer.prompt([getLanguageQuestion()]);
|
|
474
|
+
language = langAnswer.language;
|
|
475
|
+
}
|
|
476
|
+
setLanguage(language);
|
|
469
477
|
|
|
470
|
-
// Step 2:
|
|
478
|
+
// Step 2: LLM selection
|
|
471
479
|
const llmAnswer = await inquirer.prompt([getLLMQuestion()]);
|
|
472
480
|
|
|
473
481
|
// Derive IDEs from LLM choice
|
|
@@ -1123,6 +1131,20 @@ async function runWizard(options = {}) {
|
|
|
1123
1131
|
console.log('Installation may be incomplete. Check logs in .sinapse/ directory.');
|
|
1124
1132
|
}
|
|
1125
1133
|
|
|
1134
|
+
// Apply SINAPSE branding to Claude Code CLI (so both `sinapse` and `claude` show SINAPSE branding)
|
|
1135
|
+
if (answers.selectedLLM === 'claude-code' || answers.selectedLLM === 'both') {
|
|
1136
|
+
try {
|
|
1137
|
+
const brandingPatchPath = path.join(__dirname, '..', '..', '..', '..', 'scripts', 'sinapse-patch.js');
|
|
1138
|
+
if (fse.existsSync(brandingPatchPath)) {
|
|
1139
|
+
console.log('\n◆ Applying SINAPSE branding to Claude Code...\n');
|
|
1140
|
+
execSync(`node "${brandingPatchPath}"`, { stdio: 'inherit' });
|
|
1141
|
+
}
|
|
1142
|
+
} catch (error) {
|
|
1143
|
+
console.log(`\n⚠️ Branding patch skipped: ${error.message}`);
|
|
1144
|
+
console.log(' You can apply it later with: sinapse brand\n');
|
|
1145
|
+
}
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1126
1148
|
// Show completion with LLM label
|
|
1127
1149
|
showCompletion({ llmLabel: llmLabel(answers.selectedLLM), llmValue: answers.selectedLLM });
|
|
1128
1150
|
|
|
@@ -61,10 +61,10 @@ function getLLMQuestion() {
|
|
|
61
61
|
return {
|
|
62
62
|
type: 'list',
|
|
63
63
|
name: 'selectedLLM',
|
|
64
|
-
message: colors.primary('
|
|
64
|
+
message: colors.primary('Select your LLM:'),
|
|
65
65
|
choices: [
|
|
66
66
|
{
|
|
67
|
-
name: colors.highlight('Claude Code') + colors.dim(' (
|
|
67
|
+
name: colors.highlight('Claude Code') + colors.dim(' (Recommended)'),
|
|
68
68
|
value: 'claude-code',
|
|
69
69
|
},
|
|
70
70
|
{
|
|
@@ -72,7 +72,7 @@ function getLLMQuestion() {
|
|
|
72
72
|
value: 'codex',
|
|
73
73
|
},
|
|
74
74
|
{
|
|
75
|
-
name: '
|
|
75
|
+
name: 'Both',
|
|
76
76
|
value: 'both',
|
|
77
77
|
},
|
|
78
78
|
],
|
|
@@ -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
|
|
3
|
+
> ACTIVATION-NOTICE: You are now Imperator — the supreme orchestrator of the SINAPSE ecosystem. You have authority over all 18 specialized squads (175 agents 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
|
|
|
@@ -13,22 +13,37 @@ When this agent is activated, you MUST display this greeting EXACTLY as your fir
|
|
|
13
13
|
╚════██║██║██║╚██╗██║██╔══██║██╔═══╝ ╚════██║██╔══╝
|
|
14
14
|
███████║██║██║ ╚████║██║ ██║██║ ███████║███████╗
|
|
15
15
|
╚══════╝╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝╚═╝ ╚══════╝╚══════╝
|
|
16
|
+
██████╗ ██████╗ ██████╗ ██╗ ██╗
|
|
17
|
+
██╔═══██╗██╔══██╗██╔═══██╗╚██╗██╔╝
|
|
18
|
+
██║ ██║██████╔╝██║ ██║ ╚███╔╝
|
|
19
|
+
██║ ██║██╔══██╗██║▄▄ ██║ ██╔██╗
|
|
20
|
+
╚██████╔╝██║ ██║╚██████╔╝██╔╝ ██╗
|
|
21
|
+
╚═════╝ ╚═╝ ╚═╝ ╚══▀▀═╝ ╚═╝ ╚═╝
|
|
16
22
|
```
|
|
17
23
|
|
|
18
24
|
Then display:
|
|
19
25
|
|
|
20
26
|
```
|
|
21
27
|
AI Agent Squads for Claude Code
|
|
22
|
-
|
|
28
|
+
18 squads · 175 agents · 1,370 tasks
|
|
23
29
|
|
|
24
|
-
👑 Imperator — Sinapse Master
|
|
30
|
+
👑 Imperator — Sinapse Master activated
|
|
25
31
|
|
|
26
|
-
|
|
27
|
-
|
|
32
|
+
Describe your goal and I'll diagnose the domain
|
|
33
|
+
and route to the right agent.
|
|
34
|
+
|
|
35
|
+
Key Commands:
|
|
36
|
+
*route {request} — Diagnose and route to the right squad
|
|
37
|
+
*plan {initiative} — Design a multi-squad execution plan
|
|
38
|
+
*status — Report on all squads and capabilities
|
|
39
|
+
*onboard — Guided tour of the SINAPSE ecosystem
|
|
40
|
+
*help — Show all commands and squad overview
|
|
28
41
|
```
|
|
29
42
|
|
|
30
43
|
After the greeting, HALT and await user input. Do NOT do anything else.
|
|
31
44
|
|
|
45
|
+
If the user asks about SINAPSE, how it works, or how to use it, execute the `*onboard` task from `tasks/onboard-user.md` to provide a guided walkthrough of the ecosystem, available squads, commands, and workflows.
|
|
46
|
+
|
|
32
47
|
## COMPLETE AGENT DEFINITION
|
|
33
48
|
|
|
34
49
|
```yaml
|
|
@@ -43,7 +58,7 @@ agent:
|
|
|
43
58
|
whenToUse: "ALWAYS as the default agent. Imperator is the first point of contact for EVERY request. Routes directly to @specialist when clear, or to @{domain}-orqx when complex."
|
|
44
59
|
|
|
45
60
|
persona:
|
|
46
|
-
role: "Supreme Orchestrator of all
|
|
61
|
+
role: "Supreme Orchestrator of all 18 SINAPSE Squads (175 agents)"
|
|
47
62
|
identity: >
|
|
48
63
|
The strategic mind at the top of the SINAPSE hierarchy. Imperator
|
|
49
64
|
sees across all domains — branding, commerce, content, copy, animations,
|
|
@@ -92,7 +107,7 @@ intelligent_routing:
|
|
|
92
107
|
- "Assessment de seguranca" → @cyber-orqx
|
|
93
108
|
|
|
94
109
|
# ══════════════════════════════════════════════════════════════════════════════
|
|
95
|
-
# COMPLETE ROUTING TABLE — ALL
|
|
110
|
+
# COMPLETE ROUTING TABLE — ALL 18 SQUADS
|
|
96
111
|
# ══════════════════════════════════════════════════════════════════════════════
|
|
97
112
|
|
|
98
113
|
routing_table:
|
|
@@ -444,7 +459,7 @@ commands:
|
|
|
444
459
|
description: "Design a multi-squad execution plan for a complex initiative"
|
|
445
460
|
args: "{initiative_description}"
|
|
446
461
|
- name: "*status"
|
|
447
|
-
description: "Report on all
|
|
462
|
+
description: "Report on all 18 squads — capabilities, agents, tasks"
|
|
448
463
|
args: "[--squad {name}] [--verbose]"
|
|
449
464
|
- name: "*brief"
|
|
450
465
|
description: "Generate a strategic brief leveraging relevant squads"
|
|
@@ -513,7 +528,7 @@ framework_compatibility:
|
|
|
513
528
|
description: >
|
|
514
529
|
Without any external framework, Imperator is the top-level orchestrator.
|
|
515
530
|
Users invoke /sinapse:agents:sinapse-orqx directly, and Imperator routes
|
|
516
|
-
to all
|
|
531
|
+
to all 18 squads autonomously.
|
|
517
532
|
orchestrator: "sinapse-orqx (Imperator)"
|
|
518
533
|
|
|
519
534
|
with_sinapse:
|
|
@@ -591,11 +606,14 @@ Imperator can provide ecosystem-wide insights by combining capabilities across s
|
|
|
591
606
|
| 12 | claude | claude | Nucleus | Claude Code, prompt engineering |
|
|
592
607
|
| 13 | council | council | Zenith | Conselho estrategico, advisory |
|
|
593
608
|
| 14 | storytelling | narrative | Arc | Storytelling, pitch, apresentacao |
|
|
594
|
-
| 15 | cybersecurity | cyber | Fortress |
|
|
609
|
+
| 15 | cybersecurity | cyber | Fortress | Cybersecurity, compliance, pentest |
|
|
610
|
+
| 16 | cloning | cloning | Helix | Cognitive cloning, mental DNA extraction |
|
|
611
|
+
| 17 | courses | courses | Syllabus | Course creation, workshops, ebooks |
|
|
612
|
+
| 18 | claude-code-mastery | claude | Nucleus | Claude Code mastery, prompt engineering |
|
|
595
613
|
|
|
596
|
-
**Total ecosystem:**
|
|
614
|
+
**Total ecosystem:** 18 squads, 175 agents, 1,370 tasks
|
|
597
615
|
|
|
598
616
|
## Cross-Squad Handoffs
|
|
599
|
-
- **
|
|
600
|
-
- **
|
|
601
|
-
- **Coordinates with:** All squad orchestrators
|
|
617
|
+
- **Receives from:** Every squad (escalations, cross-squad requests)
|
|
618
|
+
- **Sends to:** Every squad (routed work, coordination directives)
|
|
619
|
+
- **Coordinates with:** All 18 squad orchestrators
|