synapos 2.7.0 → 2.7.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.
- package/bin/synapos.js +7 -3
- package/package.json +1 -1
package/bin/synapos.js
CHANGED
|
@@ -50,6 +50,7 @@ const SQUADS = [
|
|
|
50
50
|
const COMMANDS = [
|
|
51
51
|
{ file: 'init.md', content: 'Leia e execute exatamente o protocolo em: .synapos/core/orchestrator.md\n' },
|
|
52
52
|
{ file: 'bump.md', content: 'Leia e execute exatamente o protocolo em: .synapos/core/commands/bump.md\n' },
|
|
53
|
+
{ file: 'session.md', content: 'Leia e execute exatamente o protocolo em: .synapos/core/commands/session.md\n' },
|
|
53
54
|
{ file: 'set-model.md', content: 'Leia e execute exatamente o protocolo em: .synapos/core/commands/set-model.md\n' },
|
|
54
55
|
{ file: 'setup/start.md', content: 'Leia e execute exatamente o protocolo em: .synapos/core/commands/setup/start.md\n' },
|
|
55
56
|
{ file: 'setup/build-business.md', content: 'Leia e execute exatamente o protocolo em: .synapos/core/commands/setup/build-business.md\n' },
|
|
@@ -59,9 +60,12 @@ const COMMANDS = [
|
|
|
59
60
|
|
|
60
61
|
// IDE definitions
|
|
61
62
|
const IDES = [
|
|
62
|
-
{ value: 'claude',
|
|
63
|
-
{ value: 'copilot',
|
|
64
|
-
{ value: 'opencode',
|
|
63
|
+
{ value: 'claude', title: 'Claude Code', commandsDir: '.claude/commands', hint: '/init na conversa' },
|
|
64
|
+
{ value: 'copilot', title: 'Copilot', commandsDir: null, hint: 'synapos:init no chat do Copilot' },
|
|
65
|
+
{ value: 'opencode', title: 'OpenCode', commandsDir: '.opencode/commands', hint: '/init no chat' },
|
|
66
|
+
{ value: 'cursor', title: 'Cursor', commandsDir: '.cursor/commands', hint: '/init no chat' },
|
|
67
|
+
{ value: 'trae', title: 'Trae', commandsDir: '.trae/commands', hint: '/init no chat' },
|
|
68
|
+
{ value: 'antigravity', title: 'Antigravity', commandsDir: '.agent/workflows', hint: '/init no chat' },
|
|
65
69
|
];
|
|
66
70
|
|
|
67
71
|
// ─── Helpers ──────────────────────────────────────────────────────────────────
|
package/package.json
CHANGED