惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
H
Help Net Security
量子位
The Cloudflare Blog
博客园 - Franky
博客园 - 聂微东
博客园 - 司徒正美
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
宝玉的分享
宝玉的分享
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
罗磊的独立博客
GbyAI
GbyAI
雷峰网
雷峰网
T
The Blog of Author Tim Ferriss
Martin Fowler
Martin Fowler
S
SegmentFault 最新的问题
美团技术团队
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
MongoDB | Blog
MongoDB | Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I built a self-hosted AI agent that markets itself. Here'...
Fahad R · 2026-05-02 · via DEV Community

Fahad R

Two months ago my co-founder and I got tired of paying for AI tools
that live on someone else's server, phone home constantly, and charge
per seat.

So we built our own.

Today we're open sourcing it. It's called Daemora.

What it actually does

You install it with one command:

npm install -g daemora
daemora setup
daemora start

Enter fullscreen mode Exit fullscreen mode

Then you message your Telegram or Discord bot like a teammate.

This week I asked it to:

  • Find the top 10 skipping ropes on Amazon, analyse them, create a Google Doc and email it to someone
  • Research catnip, write a report, save it to my machine and send it to me on Telegram
  • Fix a bug in a GitHub repo, open a PR, run the tests and health check the service every minute

All three worked. While I made coffee.

The part that surprised us most

We thought the hard part would be the LLM integration.

It wasn't.

The hard part was security. When you give an AI agent access
to your actual machine, you have to think about things like:

  • Preventing it from dumping your environment variables
  • Stopping it from reading files outside its sandbox
  • Stripping secrets from subprocess environments so they can't be leaked via executeCommand
  • Blocking network egress if a response contains a known secret value

We ended up with a 14-layer security model. AES-256-GCM
encrypted vault, filesystem sandbox, subprocess isolation,
egress guard, prompt injection tagging. You can run
daemora doctor for a full scored security audit.

The thing we're most proud of

Three-layer memory.

Daemora has semantic, episodic, and procedural memory with
automatic extraction, composite-scored recall, and confidence
decay. It learns from every task without you manually saving
anything. Unified session across all channels - you can start
a task on Telegram and follow up on Discord.

It also has smart loop detection. If the agent starts burning
tokens in repetitive patterns - exact repeat, ping-pong,
semantic repeat, or polling loops - it detects and stops
automatically. This one saved us a lot of money during
development.

The meta part

This week I gave Daemora a prompt to market itself.

Set up watchers for competitor mentions. Draft Reddit posts.
Monitor GitHub for star spikes. Send me a Telegram report
every Friday with growth metrics. Generate short-form videos
via the Media Studio crew and post them automatically.

It's now running its own growth campaign. Autonomously.
On my laptop.

That felt like the moment we knew it was real.

What's inside

  • 52 built-in tools - files, web, shell, email, scheduling, vision, media, multi-agent delegation
  • 20 messaging channels - Telegram, Slack, Discord, WhatsApp, email, Signal, Teams and more
  • 7 AI providers including Ollama - works fully local, no API key needed
  • Native MCP integration - GitHub, Notion, Linear, Postgres in one command
  • Media Studio crew - generate AI images, videos, and music. Edit videos with Remotion - add captions, transitions, effects programmatically
  • Provider failover - automatic retry with exponential backoff. If a provider goes down, switches automatically
  • Three-layer memory - semantic, episodic, procedural. Learns from every task, no manual saving needed
  • 60 built-in skills - coding, research, email, GitHub, Slack, Google Workspace, macOS automation and more

The stack if you're curious

Runtime: Node.js 20+ - ES modules, no build step
AI SDK: Vercel AI SDK - model-agnostic, 25+ providers
Storage: SQLite + file-based (Markdown, JSONL)
Scheduling: croner - production-grade cron
Vault: Node.js crypto built-in - AES-256-GCM + scrypt
Voice: Twilio + OpenAI Realtime STT + ElevenLabs TTS
Video: Remotion - React-based programmatic video editing

No Docker required. No binary dependencies for the vault.
Runs as a system daemon on macOS, Linux, or Windows WSL.

Try it

npm install -g daemora

Enter fullscreen mode Exit fullscreen mode

AGPL-3.0. Everything runs on your machine. Nothing leaves
your infrastructure except the tokens you send to model APIs.

Would love to hear what you'd automate first — drop it
in the comments.