feat: Created the coder and sql agents

This commit is contained in:
2025-10-10 13:38:47 -06:00
parent 384ae73c80
commit 16577ddc5e
4 changed files with 73 additions and 1 deletions
+5 -1
View File
@@ -3,7 +3,11 @@ set -e
# @env LLM_OUTPUT=/dev/stdout The output path
# @cmd Create a new file at the specified path with contents.
PROMPT_UTILS="${LLM_ROOT_DIR:-$(dirname "${BASH_SOURCE[0]}")/..}/utils/prompt-utils.sh"
# shellcheck disable=SC1090
source "$PROMPT_UTILS"
# @cmd Create a new file at the specified path with the given contents.
# @option --path! The path where the file should be created
# @option --contents! The contents of the file
# shellcheck disable=SC2154