en un clic
loop
Run a command on a recurring interval (poll CI etc.).
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Run a command on a recurring interval (poll CI etc.).
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
Help build/debug DeepSeek API usage (openai-compatible).
Read/extract/combine/split PDFs.
Launch this project's app to see a change in action.
Schedule a one-off or cron task via DeepCode's daemon.
Help author a new skill — frontmatter + body + best-trigger description.
Modify settings.json / hooks / permissions safely + explain trade-offs.
| name | loop |
| description | Run a command on a recurring interval (poll CI etc.). |
Drive a polling loop where the agent re-checks state at an interval — useful for "wait until CI is green", "poll deploy status", "tail a log".
Use ScheduleWakeup (or the loop primitive in the host) with a sensible
delay:
| Watching | Delay | Why |
|---|---|---|
| CI run | 60-270 s | Status changes minute-scale |
| Deploy queue | 60-180 s | Same |
| Local file change | 5-30 s | Use fs.watch instead when possible |
| Cron / external timer | 20-30 min | Don't burn cache for nothing |
| "Idle tick, no signal" | 20-30 min | Default; cap notification noise |
Anthropic-style prompt caches expire after ~5 min. Pick either:
Avoid 5-15 min windows — they pay the miss without amortizing.
ALWAYS have a clear stop condition. Loop should exit when:
Just enough to confirm progress: [14:32] CI status: in_progress (8/12 jobs).
Don't dump full logs each tick.