loop
스타10
포크3
업데이트2026년 4월 17일 15:19
Run a prompt or slash command on a recurring interval (e.g. /loop 5m /foo, defaults to 10m)
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Run a prompt or slash command on a recurring interval (e.g. /loop 5m /foo, defaults to 10m)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | loop |
| description | Run a prompt or slash command on a recurring interval (e.g. /loop 5m /foo, defaults to 10m) |
Use this skill when the user wants to set up a recurring task, poll for status, or run something repeatedly on an interval.
Examples:
| Tool | Purpose | Context cost |
|---|---|---|
cron_create | Schedule a prompt on a cron schedule (recurring or one-shot) | Low |
cron_delete | Cancel a scheduled task by ID | Low |
cron_list | List all active scheduled tasks | Low |
cron_list to check existing schedules before creating duplicatescron_create to schedule new taskscron_delete to cancel tasks that are no longer needed/loop [interval] <prompt> — Quick recurring loop (e.g. /loop 5m check the deploy)/loop-list — List all active loops/loop-kill <id|label|all> — Cancel loop(s) by ID, fuzzy label match, or kill all/loop-kill all → Cancel every active loop
/loop-kill abc123 → Cancel by exact ID
/loop-kill deploy → Cancel by fuzzy match on label/prompt (1 match)
/loop-kill test → Shows all matches when multiple loops match (pick by ID)
/loop-kill → Shows usage help
Fuzzy matching searches label, prompt text, and human-readable schedule (case-insensitive). When exactly one loop matches, it's cancelled immediately. With multiple matches, they're listed for the user to pick.
5-field cron in local time: minute hour day-of-month month day-of-week
| Pattern | Meaning |
|---|---|
*/5 * * * * | Every 5 minutes |
0 */2 * * * | Every 2 hours |
30 14 * * * | Daily at 2:30 PM |
0 9 * * 1-5 | Weekdays at 9 AM |
durable: true to persist tasks across sessions