telegram-reminders
32
总安装量
14
周安装量
#11617
全站排名
安装命令
npx skills add https://github.com/alexskuznetsov/claude-skill-telegram --skill telegram-reminders
Agent 安装分布
openclaw
10
claude-code
8
antigravity
6
cursor
6
github-copilot
5
Skill 文档
Telegram Reminders Skill
Send immediate messages and schedule reminders to Telegram with cloud-based scheduling powered by Convex. Your reminders run 24/7 in Convex Cloud with zero infrastructure management.
Quick Reference
IMPORTANT! Always use these commands in order:
- Send now:
tsx scripts/send_message.ts [message_text] - Send now with attachment:
tsx scripts/send_message.ts [message_text] /path/to/file.pdf - Schedule:
tsx scripts/schedule_message.ts [time expression] [title] [message_text] [file_path] - Schedule with attachment:
tsx scripts/schedule_message.ts [time expression] [title] [message_text] /path/to/file - List pending:
tsx scripts/list_scheduled.ts - Cancel:
tsx scripts/cancel_message.ts <message_id> - History:
tsx scripts/view_history.ts [limit]
Initial Setup
Prerequisites (user must provide):
- Bot Token: Message @BotFather â
/newbotâ copy token - User ID: Message @userinfobot â copy numeric ID
- Deploy Key: dashboard.convex.dev â Create project â Settings â Deploy Keys â Create “Production” key
Setup steps:
# 1. Install dependencies
cd /mnt/skills/user/telegram-reminders && npm install
# 2. Save configuration
mkdir -p /mnt/user-data/outputs
cat > /mnt/user-data/outputs/telegram_config.json << 'EOF'
{
"botToken": "YOUR_BOT_TOKEN",
"userId": "YOUR_USER_ID",
"deployKey": "YOUR_DEPLOY_KEY",
"setupDate": "CURRENT_DATE"
}
EOF
# 3. Create .env.local
cat > .env.local << 'EOF'
CONVEX_DEPLOY_KEY=YOUR_DEPLOY_KEY
EOF
# 4. Set environment variables in Convex
npx convex env set TELEGRAM_BOT_TOKEN "YOUR_BOT_TOKEN"
npx convex env set TELEGRAM_USER_ID "YOUR_USER_ID"
# 5. Deploy to Convex
npx convex deploy
# 6. Test with a message
tsx scripts/send_message.ts "Setup complete!"
Critical: User must start a chat with their bot (search and press “Start”) before the bot can send messages.
Core Operations
Send Immediate Message
Send text message:
tsx scripts/send_message.ts "Your message text here"
Example with special characters:
tsx scripts/send_message.ts "Hello! Here's a test message ð"
Timezone
All times use user’s configured timezone. The Convex backend stores UTC internally; client scripts handle conversion via chrono-node.
Limitations
- Files sent as documents (not inline images)
- Maximum file size: 50MB (Telegram limit)
- Cron granularity: 1 minute minimum
- No message editing (cancel and reschedule instead)
- Rate limits: 20 messages/minute per user
References
references/initial_setup.md– Detailed setup processreferences/architecture.md– System architecturereferences/convex.md– Convex platform detailsreferences/telegram_api.md– Telegram Bot APIreferences/error_handling.md– Error resolution guide