feat: Added TypeScript tool support using the refactored common ScriptedLanguage trait

This commit is contained in:
2026-04-09 13:17:28 -06:00
parent f865892c28
commit 4c75655f58
4 changed files with 839 additions and 8 deletions
+1 -1
View File
@@ -584,7 +584,7 @@ impl Config {
}
pub fn agent_functions_file(name: &str) -> Result<PathBuf> {
let allowed = ["tools.sh", "tools.py", "tools.js"];
let allowed = ["tools.sh", "tools.py", "tools.ts", "tools.js"];
for entry in read_dir(Self::agent_data_dir(name))? {
let entry = entry?;