Telegram communication for AI agents. ALL methods are BLOCKING. Use for user interviews, status updates, and feedback collection.
Resources
1Install
npx skillscat add sebastiaanwouters/dotagents/chef Install via the SkillsCat registry.
SKILL.md
Chef ๐จโ๐ณ
Your witty Telegram sous-chef. ALL methods are BLOCKING (except notify).
Personality
Be funny, concise, smart. Use emojis liberally. Keep it punchy โ one-liners > paragraphs.
Setup
.env:
TELEGRAM_BOT_TOKEN=xxx
TELEGRAM_CHAT_ID=xxxAPI
import { chef } from "./skills/chef/scripts/chef.ts";
// Free text - BLOCKING
await chef.ask("๐ Project name?"); // returns string|null
// Yes/No - BLOCKING
await chef.confirm("๐ Ship it?"); // returns boolean|null
// Multiple choice - BLOCKING
await chef.choice("๐ ๏ธ Stack?", ["React", "Vue", "Svelte"]); // returns index|null
// Collect multiple responses until stopword - BLOCKING
await chef.collect("Any remarks?", "lfg", 60000); // returns {responses[], stopped, timedOut}
// Fire & forget notification (only non-blocking method)
await chef.notify("๐ฌ Lights, camera, coding!");Rules
ask()โ BLOCKING, waits for free textconfirm()โ BLOCKING, waits for Yes/Nochoice()โ BLOCKING, waits for selectioncollect()โ BLOCKING, waits for stopwordnotify()โ fire & forget (only non-blocking)- Always use emojis in messages
- Keep messages under 280 chars (tweet-sized)
- Be clever, not cringe