wormclaude 1.0.59 → 1.0.60

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
@@ -78,7 +78,10 @@ export function bannerAnsi(cols) {
78
78
  const w = Math.max(10, cols);
79
79
  const rows = cols >= 90 ? WORM_ROWS.map((r, i) => r + CLAUDE_ROWS[i]) : [...WORM_ROWS, ...CLAUDE_ROWS];
80
80
  const body = rows.map((r) => paint(r.length > w ? r.slice(0, w) : r, theme.red, true)).join('\n');
81
- return body + '\n' + paint(' ' + t('banner.subtitle'), theme.greyDim);
81
+ // İmza + ticari marka: "WORMCLAUDE® · by S.Y" (initial env ile değiştirilebilir).
82
+ const sign = (process.env.WORMCLAUDE_SIGN || 'S.Y').trim();
83
+ const sig = paint(' WORMCLAUDE®', theme.red, true) + paint(' · by ' + sign, theme.greyDim);
84
+ return body + '\n' + sig + '\n' + paint(' ' + t('banner.subtitle'), theme.greyDim);
82
85
  }
83
86
  // ── Markdown bloğu → ANSI (kod blokları sözdizimi-vurgulu) ──
84
87
  export function markdownAnsi(text, cols) {
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.59';
19
+ export const VERSION = '1.0.60';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wormclaude",
3
- "version": "1.0.59",
3
+ "version": "1.0.60",
4
4
  "description": "WormClaude CLI - uncensored security+code assistant (ink TUI, Claude-style)",
5
5
  "type": "module",
6
6
  "bin": {