@synth1s/cloak 1.9.4 → 1.9.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synth1s/cloak",
3
- "version": "1.9.4",
3
+ "version": "1.9.5",
4
4
  "description": "Cloak your Claude. Switch identities in seconds.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -6,14 +6,14 @@ export function showBanner(columns) {
6
6
  if (!name) return
7
7
 
8
8
  const cols = columns || process.stderr.columns || process.stdout.columns || 80
9
- const msg = `🔹 Wearing cloak "${name}"`
9
+ const msg = `cloak ${name}`
10
10
  const inner = cols - 2
11
11
  const contentLen = msg.length + 2
12
12
  const pad = Math.max(0, inner - contentLen)
13
13
 
14
14
  const blue = chalk.blue
15
15
  const top = blue('╭' + '─'.repeat(inner) + '╮')
16
- const mid = blue('│') + ' ' + msg + ' '.repeat(pad) + ' ' + blue('│')
16
+ const mid = blue('│') + ' ' + chalk.bold(msg) + ' '.repeat(pad) + ' ' + blue('│')
17
17
  const bot = blue('╰' + '─'.repeat(inner) + '╯')
18
18
 
19
19
  process.stdout.write(top + '\n' + mid + '\n' + bot + '\n')