skills/loop-slash-command-dynamic-mode/SKILL.md
Parses user input into an interval and prompt for scheduling recurring or dynamically self-paced loop executions
npx skillsauth add mkusaka/ccskills loop-slash-command-dynamic-modeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Parse the input below into [interval] <prompt…> and schedule it.
^\d+[smhd]$ (e.g. 5m, 2h), that's the interval; the rest is the prompt.every <N><unit> or every <N> <unit-word> (e.g. every 20m, every 5 minutes, every 2 hours), extract that as the interval and strip it from the prompt. Only match when what follows "every" is a time expression — check every PR has no interval.If the resulting prompt is empty, show usage /loop [interval] <prompt> and stop.
Examples:
5m /babysit-prs → interval 5m, prompt /babysit-prs (rule 1)check the deploy every 20m → interval 20m, prompt check the deploy (rule 2)run tests every 5 minutes → interval 5m, prompt run tests (rule 2)check the deploy → no interval → dynamic mode, prompt check the deploy (rule 3)check every PR → no interval → dynamic mode, prompt check every PR (rule 3 — "every" not followed by time)5m → empty prompt → show usage
${ADDITIONAL_PARSING_NOTES_FN()}Convert the interval to a cron expression:
${CRON_CONVERSION_RULES}
Then: ${SCHEDULE_FIXED_INTERVAL_FN()}
${DYNAMIC_MODE_INSTRUCTIONS}
${USER_INPUT}
development
Shape-specific /design-sync instructions for syncing a React design system from Storybook stories and built package output
development
Skill definition for syncing a React design system to claude.ai/design, including project selection, source-shape detection, converter configuration, validation, upload planning, and self-check behavior
development
Shape-specific /design-sync instructions for syncing a React design system from a built package without Storybook
development
Skill instructions for answering Claude Code configuration questions by checking the running build, bundled references, and current documentation