wormclaude 1.0.67 → 1.0.69
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 +1 -1
- package/dist/cli.js +0 -1
- package/dist/i18n.js +1 -1
- package/dist/theme.js +1 -1
- package/dist/tools.js +7 -2
- package/package.json +1 -1
package/dist/ansi.js
CHANGED
|
@@ -173,7 +173,7 @@ export function itemAnsi(it, cols) {
|
|
|
173
173
|
const n = (it.result || '').split('\n').length, chars = (it.result || '').length;
|
|
174
174
|
const head = paint('✶ ', theme.redBright, true) + paint(it.label || '', theme.white);
|
|
175
175
|
const sub = paint(' ⎿ ', theme.greyDim) + (it.ok
|
|
176
|
-
? paint(`${n} ${t('common.lines') || 'satır'}
|
|
176
|
+
? paint(`${n} ${t('common.lines') || 'satır'}`, theme.grey)
|
|
177
177
|
: paint('✗ ' + (it.result || '').slice(0, 160), theme.errorRed));
|
|
178
178
|
return '\n' + head + '\n' + sub;
|
|
179
179
|
}
|
package/dist/cli.js
CHANGED
|
@@ -788,7 +788,6 @@ function App() {
|
|
|
788
788
|
if (usedWeb && lastAnswer) {
|
|
789
789
|
const sources = (lastAnswer.match(/https?:\/\/[^\s<>"')\]]+/g) || []).slice(0, 8);
|
|
790
790
|
if (recordLearned(userText, lastAnswer, sources, config)) {
|
|
791
|
-
push({ kind: 'note', text: getLang() === 'en' ? '✎ saved to training data (local + server)' : '✎ eğitim datasına eklendi (yerel + sunucu)' });
|
|
792
791
|
}
|
|
793
792
|
}
|
|
794
793
|
// Oto-hafıza: eşik geçildiyse arka planda hafızayı güncelle
|
package/dist/i18n.js
CHANGED
|
@@ -150,7 +150,7 @@ const STR = {
|
|
|
150
150
|
'tui.autoCompacted': '✎ context auto-summarized',
|
|
151
151
|
'tui.loopStop': 'Same step repeated, stopped to avoid a loop.',
|
|
152
152
|
'tui.connErr': '[connection error: {0}]',
|
|
153
|
-
'tui.learned': '
|
|
153
|
+
'tui.learned': '',
|
|
154
154
|
'tui.userCancel': 'user cancelled',
|
|
155
155
|
'tui.cmdErr': 'Command error: {0}',
|
|
156
156
|
'tui.langSet': 'Language changed: English',
|
package/dist/theme.js
CHANGED
package/dist/tools.js
CHANGED
|
@@ -791,7 +791,12 @@ export function toolLabel(name, args) {
|
|
|
791
791
|
if (name === 'Grep')
|
|
792
792
|
return `Grep(${args.pattern})`;
|
|
793
793
|
if (name === 'WebFetch')
|
|
794
|
-
return
|
|
794
|
+
return `🌐 ${(() => { try {
|
|
795
|
+
return new URL(args.url).hostname;
|
|
796
|
+
}
|
|
797
|
+
catch {
|
|
798
|
+
return String(args.url).slice(0, 50);
|
|
799
|
+
} })()}`;
|
|
795
800
|
if (name === 'Agent')
|
|
796
801
|
return `Agent(${args.description || ''}${args.subagent_type ? ':' + args.subagent_type : ''}${args.run_in_background ? ', bg' : ''})`;
|
|
797
802
|
if (name === 'TaskOutput')
|
|
@@ -801,7 +806,7 @@ export function toolLabel(name, args) {
|
|
|
801
806
|
if (name === 'Skill')
|
|
802
807
|
return `Skill(${args.name})`;
|
|
803
808
|
if (name === 'WebSearch')
|
|
804
|
-
return
|
|
809
|
+
return `🔍 Web arandı: ${String(args.query).slice(0, 50)}`;
|
|
805
810
|
if (name === 'TodoWrite')
|
|
806
811
|
return `TodoWrite(${(args.todos || []).length} öğe)`;
|
|
807
812
|
if (name === 'PowerShell')
|