feat: Install built-in agents

This commit is contained in:
2025-10-10 13:37:05 -06:00
parent 6be2651106
commit 743e42d4f8
15 changed files with 526 additions and 17 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -e
# @env LLM_OUTPUT=/dev/stdout The output path
# @cmd Get the ip info
get_ipinfo() {
curl -fsSL https://httpbin.org/ip >> "$LLM_OUTPUT"
}