add script task templates and refactor convert-to-mp3 to use template pattern

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-08 16:14:11 +00:00
co-authored by Claude Opus 4.6
parent f32f427972
commit d4530a9667
4 changed files with 279 additions and 23 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -euo pipefail
# ── Standalone Template ──
# For tasks that don't operate on a file/directory target.
# All inputs are available as INPUT_<NAME> environment variables.
#
# Slot to fill before this template:
# main() { ... } — the task logic, using $INPUT_* env vars
# ── Execution ──
main