wormclaude 1.0.82 → 1.0.83

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/cli.js CHANGED
@@ -418,7 +418,7 @@ function WormSpinner({ label, tokens }) {
418
418
  " tokens") : null));
419
419
  }
420
420
  function StatusLine({ model, ctxTokens, trust = 0 }) {
421
- const max = Number(process.env.WORMCLAUDE_CTX) || 12288;
421
+ const max = Number(process.env.WORMCLAUDE_CTX) || 32768;
422
422
  const pct = Math.min(100, Math.round((ctxTokens / max) * 100));
423
423
  const filled = Math.round(pct / 10);
424
424
  const bar = '█'.repeat(filled) + '░'.repeat(10 - filled);
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.82';
19
+ export const VERSION = '1.0.83';
package/dist/tui.js CHANGED
@@ -68,7 +68,7 @@ export async function runTui() {
68
68
  // Canlı akış artık FOOTER'da DEĞİL — içerik akışına (mesajın altından aşağı) satır-satır basılır.
69
69
  const SPIN = ['·', '✢', '✳', '✶', '✻', '✽', '✶', '✳', '✢'];
70
70
  // Canlı bağlam ölçer: son isteğin prompt_tokens'ı = o anki kullanılan bağlam (footer'da gösterilir).
71
- const CTX_MAX = Number(process.env.WORMCLAUDE_CTX) || 12288;
71
+ const CTX_MAX = Number(process.env.WORMCLAUDE_CTX) || 32768;
72
72
  let ctxUsed = 0;
73
73
  const _k = (n) => (n >= 1000 ? (n / 1000).toFixed(1).replace(/\.0$/, '') + 'k' : String(n));
74
74
  const ctxGauge = () => `◷ ${_k(ctxUsed)}/${_k(CTX_MAX)} (%${Math.min(100, Math.round((ctxUsed / CTX_MAX) * 100))})`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wormclaude",
3
- "version": "1.0.82",
3
+ "version": "1.0.83",
4
4
  "description": "WormClaude CLI - uncensored security+code assistant (ink TUI, Claude-style)",
5
5
  "type": "module",
6
6
  "bin": {