원클릭으로
cron
Schedule reminders and recurring tasks.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Schedule reminders and recurring tasks.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
股票深度研究覆盖报告:一次生成完整公司研究+财务模型+估值定价+投资建议,输出 coverage.md 到 workspace 作为长期记忆。当用户说'初次覆盖'、'写研究报告'、'深度覆盖'、'股票研究'、'覆盖这只股票'时触发。
Two-layer memory system with Dream-managed knowledge files.
Search and install agent skills from ClawHub, the public skill registry.
财报/业绩分析:财务指标、同比环比变化、盈利质量、指引对比。当用户说'财报分析'、'业绩解读'、'EPS'、'净利润'时触发。
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
A 股宏观分析:北向资金、恐慌指数、期货行情、利率环境、大盘整体判断。当用户说'宏观分析'、'大盘'、'北向资金'、'市场情绪'时触发。
| name | cron |
| description | Schedule reminders and recurring tasks. |
Use the cron tool to schedule reminders or recurring tasks.
Fixed reminder:
cron(action="add", message="Time to take a break!", every_seconds=1200)
Dynamic task (agent executes each time):
cron(action="add", message="Check HKUDS/fincat GitHub stars and report", every_seconds=600)
One-time scheduled task (compute ISO datetime from current time):
cron(action="add", message="Remind me about the meeting", at="<ISO datetime>")
Timezone-aware cron:
cron(action="add", message="Morning standup", cron_expr="0 9 * * 1-5", tz="America/Vancouver")
List/remove:
cron(action="list")
cron(action="remove", job_id="abc123")
| User says | Parameters |
|---|---|
| every 20 minutes | every_seconds: 1200 |
| every hour | every_seconds: 3600 |
| every day at 8am | cron_expr: "0 8 * * *" |
| weekdays at 5pm | cron_expr: "0 17 * * 1-5" |
| 9am Vancouver time daily | cron_expr: "0 9 * * *", tz: "America/Vancouver" |
| at a specific time | at: ISO datetime string (compute from current time) |
Use tz with cron_expr to schedule in a specific IANA timezone. Without tz, the server's local timezone is used.