wormclaude 1.0.63 → 1.0.64

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/dist/ansi.js CHANGED
@@ -81,11 +81,10 @@ export function bannerAnsi(cols) {
81
81
  // İmza: "✶✶ By S.Y® ✶✶" — büyük WORMCLAUDE'un SAĞ ucuna (CLAUDE'un "DE"si) hizalı.
82
82
  // İki-tonlu yıldız: tek glif yarı-renk yapılamaz → yan yana 1 kırmızı + 1 beyaz (iki yanda ayna).
83
83
  const sign = (process.env.WORMCLAUDE_SIGN || 'S.Y').trim();
84
- const st = (c) => paint('✶', c, true);
85
- const left = st(theme.white) + st(theme.red); // ✶beyaz ✶kırmızı
86
- const right = st(theme.red) + st(theme.white); // ✶kırmızı ✶beyaz (ayna)
84
+ const star = paint('✶', theme.redBright, true);
85
+ const left = star, right = star; // tek yıldız: solda + sağda
87
86
  const sigCore = paint(' By ' + sign, theme.greyDim) + paint('®', theme.red, true) + ' ';
88
- const plain = '✶✶ By ' + sign + '® ✶✶'; // genişlik hesabı (ANSI'siz)
87
+ const plain = ' By ' + sign + '® '; // genişlik hesabı (ANSI'siz)
89
88
  const bannerW = Math.min(Math.max(...rows.map((r) => r.length)), w);
90
89
  const pad = ' '.repeat(Math.max(2, bannerW - plain.length)); // sağa hizala → "DE" altına
91
90
  const sig = pad + left + sigCore + right;
package/dist/theme.js CHANGED
@@ -16,4 +16,4 @@ export const theme = {
16
16
  synType: '#a78bfa', // tip/sınıf adları, sabitler
17
17
  synProp: '#e0e0e0', // özellik/anahtar adları
18
18
  };
19
- export const VERSION = '1.0.63';
19
+ export const VERSION = '1.0.64';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wormclaude",
3
- "version": "1.0.63",
3
+ "version": "1.0.64",
4
4
  "description": "WormClaude CLI - uncensored security+code assistant (ink TUI, Claude-style)",
5
5
  "type": "module",
6
6
  "bin": {