> ## Documentation Index
> Fetch the complete documentation index at: https://docs.openclaw.kr/llms.txt
> Use this file to discover all available pages before exploring further.

# cron

# `openclaw cron`

게이트웨이 스케줄러를 위한 크론 작업 관리.

관련 항목:

* Cron jobs: [Cron jobs](/ko-KR/automation/cron-jobs)

Tip: 전체 명령어 표면을 확인하려면 `openclaw cron --help`를 실행하세요.

Note: 단독 `cron add` 작업은 기본적으로 `--announce` 전달을 사용합니다. 출력을 내부에 유지하려면 `--no-deliver`를 사용하세요. `--deliver`는 `--announce`의 더 이상 사용되지 않는 별칭으로 남아 있습니다.

Note: 일회성 (`--at`) 작업은 기본적으로 성공 후 삭제됩니다. 유지하려면 `--keep-after-run`을 사용하세요.

Note: 반복 작업은 이제 연속적인 오류 후 지수 백오프를 사용하여 재시도합니다(30초 → 1분 → 5분 → 15분 → 60분). 다음 성공적인 실행 후 정상 일정으로 돌아갑니다.

업그레이드 참고: 현재 전달/저장 형식 이전에 만든 오래된 cron 작업이 있다면 `openclaw doctor --fix`를 실행하세요. 이제 Doctor는 레거시 cron 필드(`jobId`, `schedule.cron`, 최상위 delivery 필드, payload `provider` delivery alias)를 정규화하고, `cron.webhook`이 설정된 경우 단순한 `notify: true` webhook fallback 작업을 명시적 webhook 전달로 마이그레이션합니다.

## Common edits

메시지를 변경하지 않고 전달 설정을 업데이트:

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
openclaw cron edit <job-id> --announce --channel telegram --to "123456789"
```

단독 작업에 대한 전달 비활성화:

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
openclaw cron edit <job-id> --no-deliver
```

특정 채널에 발표:

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
openclaw cron edit <job-id> --announce --channel slack --to "channel:C1234567890"
```
