AI agents &
automation
Useful AI — RAG over your docs, scheduled agents that do actual work, Telegram & WhatsApp bots, scrapers, n8n / Make / custom pipelines. Wired into your existing stack without breaking it.
# every 5min: triage new contacts
async def qualify(lead):
score = await claude.rank(lead.message)
if score > 0.8: # ping me on Telegram
await tg.notify("hot lead", lead)