wormclaude 1.0.142 → 1.0.143
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 +1 -1
- package/dist/tools.js +1 -1
- package/package.json +1 -1
package/dist/theme.js
CHANGED
package/dist/tools.js
CHANGED
|
@@ -664,7 +664,7 @@ export function allToolSchemas() {
|
|
|
664
664
|
return all.filter((t) => CORE_TOOLS.has(t.function.name) && !excluded.has(t.function.name));
|
|
665
665
|
}
|
|
666
666
|
const TOOL_META = {
|
|
667
|
-
Read: { readOnly: true, concurrencySafe: true },
|
|
667
|
+
Read: { readOnly: true, concurrencySafe: true, validate: (a) => (a && a.file_path && String(a.file_path) !== 'undefined' ? null : 'file_path gerekli (geçerli bir dosya yolu ver)') },
|
|
668
668
|
Glob: { readOnly: true, concurrencySafe: true },
|
|
669
669
|
Grep: { readOnly: true, concurrencySafe: true },
|
|
670
670
|
WebFetch: { readOnly: true, validate: (a) => (a && a.url ? null : 'url gerekli') },
|