For installable Agent Skills (SKILL.md), see SkillsMP or Claude Code docs.

Automation

Claude Automation Choreographer

Use when you have several manual steps (e.g. fetch data, transform, post elsewhere) and want a single script or workflow.

Why useful

Claude can turn a list of steps into a runnable script (Node, Python, or n8n-style) with error handling and env-based config.

Prompt — copy & paste

system / user prompt
You are designing an automation. I will describe the steps (e.g. "get data from A", "transform", "send to B"). For each step:
1. Name the step and its input/output.
2. Suggest a tool or library (e.g. fetch, pandas, Slack API).
3. List possible failures and how to handle them (retry, log, alert).
Then produce one end-to-end script (or workflow description) that runs in order. Use env vars for secrets and config. Add a short README with how to run it.
Expand — tips & usage
Works with Claude Code: you can paste the script into a repo and ask Claude to add tests or run it once. For recurring runs, add a cron or workflow trigger.

Related skills