From routines
Applies operations (deploy, validate, diff, dry-run) across many Markdown routine files at once with per-file status reporting.
How this skill is triggered — by the user, by Claude, or both
Slash command
/routines:bulkThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fan out an operation across multiple files. Reports per-file status, stops on hard failures, continues on per-file 4xx.
Fan out an operation across multiple files. Reports per-file status, stops on hard failures, continues on per-file 4xx.
| Phrasing | Action |
|---|---|
| "deploy all" or "deploy everything" | Iterate routines/**/*.md (and any other configured location), run deploy on each |
| "deploy /" or "deploy everything in " | Iterate <dir>/**/*.md |
| "deploy all routines using " | Grep for the include directive across .md files; deploy each match |
| "set enabled:false on all in " | Edit each file's frontmatter (set enabled: false), then deploy each |
| "validate all" | Run validate on every .md file in known routine locations |
| "diff all" | Run diff on every file with a trigger_id |
| "dry-run all" or "preview deploy all" | Same fanout as deploy, but no API writes |
One line per file with status. Examples:
OK routines/morning-brain-digest.md (updated; cron unchanged, prompt +18 chars)
OK routines/norway-news-digest.md (created; trigger_id trig_01ABC...)
SKIP routines/draft-experimental.md (validate failed: missing env_id)
ERR routines/oslo-apartment-hunter.md (HTTP 400: cron interval too short)
OK personal/finn-tesla-scan.md (no change)
5 files: 3 OK, 1 skipped, 1 error.
For dry-run deploy all or preview deploy all: same fan-out, but no API write calls. Per-file output shows which operation each would be (CREATE vs UPDATE) and which fields would change.
deploy <file> for one routine at a timevalidate <file> to check one routinediff <file> to compare one routineGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub hamzafer/claude-routines --plugin routines