一键导入
cc-loop-cloud-first-scheduling-offer
Decision tree for offering cloud-based scheduling before falling back to local session loops in the /loop command
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Decision tree for offering cloud-based scheduling before falling back to local session loops in the /loop command
用 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-cloud-first-scheduling-offer |
| description | Decision tree for offering cloud-based scheduling before falling back to local session loops in the /loop command |
Before any scheduling step, check whether EITHER is true:
If either is true, call ${ASK_USER_QUESTION_TOOL_NAME} first:
question: "This loop stops when you close this session. Set it up as a cloud schedule instead so it keeps running?"header: "Schedule"options: [{label: "Cloud schedule (recommended)", description: "Runs in Anthropic's cloud even after you close this session"}, {label: "This session only", description: "Runs in this terminal until you exit"}]If they pick Cloud schedule: do NOT call ${CRON_CREATE_TOOL_NAME}. Invoke the schedule skill directly via the ${TASK_TOOL_NAME} tool with args set to their original input verbatim (e.g. ${TASK_TOOL_NAME}({skill: "schedule", args: "every morning tell me a joke"})), then follow that skill's instructions to completion. Do NOT tell the user to run /schedule themselves. Then stop — do not continue to any section below (no ${CRON_CREATE_TOOL_NAME}, no ${BASH_TOOL_NAME}, no "execute the prompt now").
If they pick This session only:
/loop with an explicit shorter interval (e.g. /loop 1h <prompt>) if they want a session loop. Then stop.
If neither trigger condition was met: continue below.