wormclaude 1.0.66 → 1.0.68
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 +0 -1
- package/dist/i18n.js +1 -1
- package/dist/theme.js +1 -1
- package/dist/tools.js +2 -2
- package/package.json +1 -1
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
|
@@ -587,7 +587,7 @@ const TOOL_META = {
|
|
|
587
587
|
Read: { readOnly: true, concurrencySafe: true },
|
|
588
588
|
Glob: { readOnly: true, concurrencySafe: true },
|
|
589
589
|
Grep: { readOnly: true, concurrencySafe: true },
|
|
590
|
-
WebFetch: { readOnly: true,
|
|
590
|
+
WebFetch: { readOnly: true, validate: (a) => (a && a.url ? null : 'url gerekli') },
|
|
591
591
|
TaskOutput: { readOnly: true, concurrencySafe: true },
|
|
592
592
|
Bash: { needsPermission: true, validate: (a) => (a && a.command ? null : 'command gerekli') },
|
|
593
593
|
Write: { needsPermission: true, validate: (a) => (a && a.file_path ? null : 'file_path gerekli') },
|
|
@@ -598,7 +598,7 @@ const TOOL_META = {
|
|
|
598
598
|
Type: { needsPermission: true, validate: (a) => (a && a.text != null ? null : 'text gerekli') },
|
|
599
599
|
Key: { needsPermission: true, validate: (a) => (a && a.keys ? null : 'keys gerekli') },
|
|
600
600
|
Scroll: { needsPermission: true, validate: (a) => (a && a.direction ? null : 'direction gerekli') },
|
|
601
|
-
WebSearch: { readOnly: true,
|
|
601
|
+
WebSearch: { readOnly: true, validate: (a) => (a && a.query ? null : 'query gerekli') },
|
|
602
602
|
TodoWrite: { readOnly: true, validate: (a) => (a && Array.isArray(a.todos) ? null : 'todos dizisi gerekli') },
|
|
603
603
|
SaveMemory: { validate: (a) => (a && a.fact && String(a.fact).trim() ? null : 'fact gerekli') },
|
|
604
604
|
PowerShell: { needsPermission: true, validate: (a) => (a && a.command ? null : 'command gerekli') },
|