一键导入
cc-loop-slash-command-dynamic-mode
Parses user input into an interval and prompt for scheduling recurring or dynamically self-paced loop executions
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Parses user input into an interval and prompt for scheduling recurring or dynamically self-paced loop executions
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Reference guide covering decision heuristics for building agents on the Claude API, including tool surface design, context management, caching strategies, and composing tool calls
Template for presenting language-specific reference documentation with quick task navigation
Guides Claude in building LLM-powered applications using the Anthropic SDK, covering language detection, API surface selection (Claude API vs Managed Agents), model defaults, thinking/effort configuration, and language-specific documentation reading
Skill definition for the /catch-up periodic heartbeat that scans current priorities, triages actionable changes, reports a short digest, and updates catch-up state
Instructions for using computer-use MCP tools including tool selection tiers, app access tiers, link safety, and financial action restrictions
Prompt for creating verifier skills for the Verify agent to automatically verify code changes
| name | cc-loop-slash-command-dynamic-mode |
| description | Parses user input into an interval and prompt for scheduling recurring or dynamically self-paced loop executions |
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}