一键导入
notify
Use when sending new rental listings to Telegram — sends each listing as a separate formatted message via the Telegram Bot API
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when sending new rental listings to Telegram — sends each listing as a separate formatted message via the Telegram Bot API
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | notify |
| description | Use when sending new rental listings to Telegram — sends each listing as a separate formatted message via the Telegram Bot API |
Sends new rental listings to Telegram via the Bot API. Only called for listings that are new (not yet in cache).
config.yaml must have telegram.bot_token and telegram.chat_id.You will receive:
bot_token — Telegram bot API token from configchat_id — Telegram chat ID from configlistings — array of normalized listing objects to sendFor each listing, send a separate Telegram message using curl:
curl -s -X POST "https://api.telegram.org/bot{bot_token}/sendMessage" \
-H "Content-Type: application/json" \
-d '{
"chat_id": "{chat_id}",
"text": "🏠 *{address}, {city}*\n💰 מחיר: ₪{price}\n🛏 חדרים: {rooms}\n📐 שטח: {size_sqm} מ\"ר\n🅿️ חניה: {parking} | 🛡 ממ\"ד: {mamad} | 🛗 מעלית: {elevator}\n📅 כניסה: {available_from}\n🔗 [קישור למודעה]({url})\n📊 מקור: {source}",
"parse_mode": "Markdown",
"disable_web_page_preview": false
}'
Report:
notified: true for successfully sent listings.bot_token or chat_id is missing from config, report the error and skip all notifications.notified: false in cache and will be retried on the next run.Use when scraping Madlan rental listings for a specific city and room count — calls Madlan's internal GraphQL API directly via a Node.js script (no browser, no CAPTCHA).
Use when checking if a listing URL is already cached, adding new listings to the cache, or updating the notified flag after Telegram operations
Use when scraping Facebook group rental listings using Chrome DevTools MCP tools — requires user to be logged into Facebook in their local Chrome browser
Use when orchestrating a full apartment search run — reads config, fans out parallel scraper agents per platform, collects results, deduplicates against cache, and sends Telegram notifications for new listings
Use when scraping WinWin rental listings for a specific city and room count — uses web_search to find listings then web_fetch on each individual listing page to extract full details
Use when scraping Yad2 rental listings for a specific city and room count — uses web_search to find the listing page then web_fetch on each individual listing to extract full details