sinapse-ai 1.0.0 → 1.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.
Files changed (2) hide show
  1. package/bin/cli.js +12 -5
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -17,22 +17,29 @@ const CLAUDE_COMMANDS_DIR = path.join(HOME, '.claude', 'commands', 'SINAPSE', 'a
17
17
  const BIN_DIR = path.join(HOME, 'bin');
18
18
  const IS_WIN = process.platform === 'win32';
19
19
 
20
- const BRAND = '\x1b[38;2;226;90;36m';
20
+ const WHITE = '\x1b[38;2;255;255;255m';
21
21
  const CYAN = '\x1b[36m';
22
22
  const GREEN = '\x1b[32m';
23
23
  const YELLOW = '\x1b[33m';
24
24
  const RED = '\x1b[31m';
25
25
  const BOLD = '\x1b[1m';
26
+ const DIM = '\x1b[2m';
26
27
  const NC = '\x1b[0m';
27
28
 
28
29
  // ── Helpers ──────────────────────────────────────────────────────────────────
29
30
 
30
31
  function header() {
32
+ const W = `${WHITE}${BOLD}`;
31
33
  console.log('');
32
- console.log(`${BRAND}${BOLD} ╔═╗╦╔╗╔╔═╗╔═╗╔═╗╔═╗${NC}`);
33
- console.log(`${BRAND}${BOLD} ╚═╗║║║║╠═╣╠═╝╚═╗║╣ ${NC}`);
34
- console.log(`${BRAND}${BOLD} ╚═╝╩╝╚╝╩ ╩╩ ╚═╝╚═╝${NC}`);
35
- console.log(` ${BOLD}v${VERSION}${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
+ console.log('');
41
+ console.log(`${DIM} AI Agent Squads for Claude Code${NC}`);
42
+ console.log(`${DIM} v${VERSION}${NC}`);
36
43
  console.log('');
37
44
  }
38
45
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sinapse-ai",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Sinapse — 17 AI agent squads with 161 agents for Claude Code. One command install: npx sinapse install",
5
5
  "author": "Caio Imori",
6
6
  "license": "MIT",