.agent/skills/telegram-bot-development/SKILL.md
Telegram Bot API, polling, webhooks, message formatting, inline keyboards, and file sending. Use when building or extending Julia's Telegram communication layer via OpenClaw.
npx skillsauth add abzhaw/juliaz_agents telegram-bot-developmentInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
// Polling approach (simpler, no public URL needed)
import TelegramBot from 'node-telegram-bot-api';
const bot = new TelegramBot(process.env.TELEGRAM_BOT_TOKEN!, { polling: true });
bot.on('message', async (msg) => {
const chatId = msg.chat.id;
const text = msg.text;
await bot.sendMessage(chatId, `You said: ${text}`);
});
// Escape special chars for MarkdownV2
const escape = (s: string) => s.replace(/[_*[\]()~`>#+\-=|{}.!]/g, '\\$&');
await bot.sendMessage(chatId, `*Bold* _italic_ \`code\`\n[Link](https://example.com)`, {
parse_mode: 'MarkdownV2'
});
await bot.sendMessage(chatId, 'Choose an option:', {
reply_markup: {
inline_keyboard: [[
{ text: '✅ Approve', callback_data: 'approve' },
{ text: '❌ Reject', callback_data: 'reject' }
]]
}
});
bot.on('callback_query', async (query) => {
await bot.answerCallbackQuery(query.id);
await bot.sendMessage(query.message!.chat.id, `You chose: ${query.data}`);
});
await bot.sendDocument(chatId, fs.createReadStream('./report.pdf'), {
caption: 'Daily security report'
});
await bot.sendPhoto(chatId, 'https://example.com/image.png');
julia-relay skill → POST /incoming on the bridgePOST http://localhost:3001/incoming with Julia's chatIddevelopment
Fortschrittsverfolgung der Masterarbeit. Wortanzahl pro Kapitel, Fertigstellungsgrad, fehlende Elemente, Deadlines. Haelt den Ueberblick.
development
Kapitelarchitektur und Gliederung der Masterarbeit. Verwaltet die Struktur, schlaegt vor wo Inhalte hingehoeren, validiert den logischen Fluss zwischen Kapiteln.
tools
Konvertiert Protokolleinträge und Session-Logs in thesis-fähiges deutsches Narrativ. Transformiert Entwicklungsdokumentation in akademische Prosa.
research
Sucht und analysiert akademische Literatur. Findet relevante Papers, erstellt strukturierte Zusammenfassungen. Zitiert NIEMALS — schlaegt nur vor.