원클릭으로
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 직업 분류 기준
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
| 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.