wormclaude 1.0.176 → 1.0.177

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/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.176';
19
+ export const VERSION = '1.0.177';
package/dist/tools.js CHANGED
@@ -774,7 +774,11 @@ async function execOne(call, hooks) {
774
774
  if (all.length)
775
775
  rpt += '\n' + all.slice(0, 60).map((x) => ' ' + JSON.stringify(x)).join('\n');
776
776
  rpt += `\n[full-done] recon+xss+sqli koşuldu. SecurityScan'i TEKRAR çağırma — bulguları kullanıcıya METİN olarak raporla (özet + öncelikli düzeltmeler).`;
777
- _scanCache.set(_fk, { out: rpt, t: Date.now() });
777
+ const _now = Date.now();
778
+ _scanCache.set(_fk, { out: rpt, t: _now });
779
+ // Alt tarama tiplerini de cache'le → full sonrası model tek tek recon/xss/sqli çağıramaz (gereksiz tekrar).
780
+ for (const _t of ['recon', 'xss', 'sqli'])
781
+ _scanCache.set(_t + '|' + target.toLowerCase(), { out: rpt, t: _now });
778
782
  return { ok: true, output: rpt, args };
779
783
  }
780
784
  catch (e) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wormclaude",
3
- "version": "1.0.176",
3
+ "version": "1.0.177",
4
4
  "description": "WormClaude CLI - uncensored security+code assistant (ink TUI, Claude-style)",
5
5
  "type": "module",
6
6
  "bin": {