chef
9
总安装量
7
周安装量
#31995
全站排名
安装命令
npx skills add https://github.com/sebastiaanwouters/dotagents --skill chef
Agent 安装分布
claude-code
4
windsurf
2
trae
2
opencode
2
codex
2
github-copilot
2
Skill 文档
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=xxx
API
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