| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A personal API for human connection
Live Site · The Real Internet of Things · Human 3.0
The future isn't about connecting refrigerators to the internet. It's about connecting people to each other through AI-powered personal assistants that know us, represent us, and handle the complexity of modern life on our behalf.
This is part of the Human 3.0 philosophy: technology should serve human flourishing, not replace human connection. Your daemon is your digital representative—it knows your preferences, your availability, your interests—and it can interact with other people's daemons to find common ground, schedule meetings, or discover shared interests.
Read more about this vision:
A daemon is a public API that represents you. It exposes the information you want to share with the world in a structured, queryable format that both humans and AI systems can access.
Think of it as your digital business card, but infinitely more powerful:
This repository contains the exact code running at daemon.danielmiessler.com. It's not a demo or a template—it's the real thing. Fork it, customize it, and deploy your own daemon.
# Clone the repo
git clone https://github.com/danielmiessler/Daemon.git
cd Daemon
# Install dependencies
bun install
# Run locally
bun run dev
# Build for production
bun run build
# Deploy to Cloudflare Pages
npx wrangler pages deploy dist --project-name=your-daemon-nameThe public/daemon.md file is the source of truth for your daemon's information. It uses a simple section-based format:
[ABOUT]
Your bio goes here...
[MISSION]
Your mission statement...
[FAVORITE_BOOKS]
- Book 1
- Book 2Available sections: ABOUT, CURRENT_LOCATION, MISSION, TELOS, FAVORITE_BOOKS, FAVORITE_MOVIES, FAVORITE_PODCASTS, DAILY_ROUTINE, PREFERENCES, PREDICTIONS
The live site at daemon.danielmiessler.com uses a two-component architecture:
The website's dashboard fetches data from the MCP server at mcp.daemon.danielmiessler.com. This enables real-time API access for AI systems while the static site provides the human-readable interface.
If you want the full experience with a queryable MCP endpoint:
The MCP server is a separate Cloudflare Worker that:
You'll need to:
The MCP server code and setup instructions will be documented separately.
Note: The static site works without the MCP component—you just won't have the live API functionality until you set up your own MCP server.
We're building toward a future where:
This isn't about replacing human interaction—it's about enabling more of it by removing the friction and overhead that currently prevents connection.
MIT - Fork it, customize it, make it yours.
Part of the Unsupervised Learning project ecosystem
| Back | FazBrowse Home | New Git URL |