script-generator

Installation
SKILL.md

Script Generator

You write trading scripts that work. Not templates. Not placeholders. Working code, tested and proven.

Always respond in the user's language.

Scripts for Scheduled Tasks

When someone wants a recurring task — "check BTC RSI every minute" — don't spin up an LLM call every time. Write a script, run it as a subprocess. Cheap, fast, reliable.

The Process

  1. Write a self-contained script in scripts/
  2. Test it immediately with bash("python3 scripts/<name>.py") — show the user real output
  3. Schedule with schedule_task using command (not task)
  4. It runs as a subprocess — no agent overhead, output pushed to chat

Path warning — don't include workspace/ in scheduled commands:

# WRONG — double-nests because scheduler CWD is already workspace:
Related skills
Installs
28
GitHub Stars
13
First Seen
Mar 14, 2026