소스 정보
- 저장소
- letta-ai/lettabot
- 최근 소스 활동
- 2026년 2월 14일 02:10
- 감지된 SKILL.md 언어
- 영어
- 스타
- 327
- 포크
- 84
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/letta-ai/lettabot --skill cron명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | cron |
| description | Create and manage scheduled tasks (cron jobs) that send you messages at specified times. |
Schedule tasks that send messages to the agent at specified times. Jobs are scheduled immediately when created.
lettabot-cron list # List all jobs
lettabot-cron create [options] # Create job
lettabot-cron delete ID # Delete job
lettabot-cron enable ID # Enable job
lettabot-cron disable ID # Disable job
lettabot-cron create \
--name "Morning Briefing" \
--schedule "0 8 * * *" \
--message "Good morning! Review tasks for today." \
--deliver telegram:123456789
Options:
-n, --name - Job name (required)-s, --schedule - Cron expression (required)-m, --message - Prompt sent to the agent when the job fires (required)-d, --deliver - Auto-deliver the agent's response to a channel (format: channel:chatId). Without this flag, the job runs in silent mode (see below).--disabled - Create in disabled stateCron jobs run in one of two modes:
--deliver): The agent receives the message and can act on it (e.g., update memory, run tools), but the response is NOT automatically sent to any chat. If the agent wants to send a message, it must explicitly use lettabot-message send.--deliver channel:chatId): The agent's response is automatically delivered to the specified channel/chat after execution.When a cron job runs, the agent receives a message like:
[cron:cron-123abc Morning Briefing] Good morning! Review tasks for today.
Current time: 1/27/2026, 8:00:00 AM (America/Los_Angeles)
This tells the agent:
┌───────── minute (0-59)
│ ┌─────── hour (0-23)
│ │ ┌───── day of month (1-31)
│ │ │ ┌─── month (1-12)
│ │ │ │ ┌─ day of week (0-6, Sun=0)
* * * * *
| Pattern | When |
|---|---|
0 8 * * * | Daily at 8:00 AM |
0 9 * * 1-5 | Weekdays at 9:00 AM |
0 */2 * * * | Every 2 hours |
30 17 * * 5 | Fridays at 5:30 PM |
0 0 1 * * | First of month at midnight |
Daily morning check-in (delivered to Telegram):
lettabot-cron create \
-n "Morning" \
-s "0 8 * * *" \
-m "Good morning! What's on today's agenda?" \
-d telegram:123456789
Weekly review (delivered to Slack):
lettabot-cron create \
-n "Weekly Review" \
-s "0 17 * * 5" \
-m "Friday wrap-up: What did we accomplish?" \
-d slack:C1234567890
Background task (silent mode - agent acts but no auto-delivery):
lettabot-cron create \
-n "Email Check" \
-s "0 */2 * * *" \
-m "Check for new emails and summarize anything important."
lettabot-cron list to see next run times and last run statuscron-jobs.jsoncron-log.jsonl--deliver, the agent must use lettabot-message send to communicate results to users