一键导入
cron-manager
// Use when the user wants to create, inspect, update, or remove telclaude scheduled jobs, especially natural-language schedules like "every weekday at 9am". Prefer this skill for cron CRUD behind WRITE_LOCAL+.
// Use when the user wants to create, inspect, update, or remove telclaude scheduled jobs, especially natural-language schedules like "every weekday at 9am". Prefer this skill for cron CRUD behind WRITE_LOCAL+.
Audits text against AI writing tells and rewrites it into natural prose. Use when the operator wants drafted content de-AI-ified, especially before publishing on X/LinkedIn/Threads or sending to readers.
Use when the operator asks for a daily or morning Telegram brief, agenda digest, inbox highlights, or Hermes-style operator preset. This is a read-only private-agent workflow that gathers today's Google Calendar, recent Gmail inbox highlights, and weather, then returns a concise Telegram brief.
Prepare a concise Telegram briefing before an upcoming calendar event using read-only Google Calendar and Gmail context through the telclaude provider proxy.
Use when the operator asks for a weekly business report, Monday-morning business digest, revenue/support/CRM/analytics roundup, or wants to schedule workflow
Use when the operator wants to delegate a bounded, single-shot repo task to Codex through telclaude background jobs.
Social memory management for Telegram and social agents
| name | cron-manager |
| description | Use when the user wants to create, inspect, update, or remove telclaude scheduled jobs, especially natural-language schedules like "every weekday at 9am". Prefer this skill for cron CRUD behind WRITE_LOCAL+. |
Use the telclaude maintenance cron CLI for scheduled-job CRUD.
List jobs with machine-readable output first:
pnpm dev maintenance cron list --all --json
Use pnpm dev maintenance cron status --json when you need scheduler state or next-run data.
Choose exactly one schedule flag:
--at <iso>--every <duration>--cron "<minute hour day month weekday>"Choose exactly one action:
--social [serviceId]--private--prompt "<user-facing task>"Prompt options:
--skill <name> can be repeated to restrict scheduled skill use. Use --skill for unattended routines that need tools; passing no --skill preserves legacy private-agent behavior.--preprocess-command <path-or-executable> runs an executable before the prompt, with optional repeated --preprocess-arg <value>, --preprocess-cwd <path>, --preprocess-timeout-ms <ms>, and --preprocess-max-stdout-bytes <bytes>.[IDLE] or [SILENT] skips the agent run.[IDLE] or [SILENT] is treated as successful no-delivery output.Delivery targets:
--delivery origin--delivery home --owner <ownerId>--delivery chat --chat-id <chatId> [--thread-id <threadId>]Examples:
pnpm dev maintenance cron add \
--name "weekday-hn" \
--cron "0 9 * * 1-5" \
--prompt "Check Hacker News and post a short summary here." \
--delivery home \
--owner admin \
--json
pnpm dev maintenance cron add \
--name "team-digest" \
--cron "30 14 * * 1-5" \
--prompt "Summarize open background jobs for the team." \
--delivery chat \
--chat-id 123456789 \
--thread-id 42 \
--json
pnpm dev maintenance cron enable <id>pnpm dev maintenance cron disable <id>pnpm dev maintenance cron remove <id>pnpm dev maintenance cron run <id>/sethome persists the delivery destination for --delivery home.identity: <localUserId> (linked), use that as --owner.tg:<chatId> as the owner id.