A live public profile and context layer for AI systems and humans
A Daemon is a public personal profile designed to be read by both humans and AI systems. It exposes structured information about who I am, what I build, and what drives me — always accessible, always up to date.
Think of it as a living business card:
- For humans: A clean site showing my background, projects, and direction
- For AI systems: A structured
/daemon.jsonendpoint with all my data
Forked and heavily customized from danielmiessler/Daemon.
- Astro — static site generation
- React — interactive components
- Tailwind CSS v4 — styling
- GitHub Pages — hosting and deployment
git clone https://github.com/Balbus95/Daemon.git
cd Daemon
npm install
npm run dev- Update your profile: Edit
public/daemon.jsonwith your data - Mirror to markdown: Keep
public/daemon.mdin sync (human-readable version) - Adjust pages: Edit components in
src/and pages insrc/pages/ - Deploy: Push to
main— GitHub Actions handles the rest
All profile data lives in public/daemon.json:
{
"about": "...",
"mission": "...",
"telos": ["P1: ...", "M1: ...", "G1: ..."],
"current_location": "...",
"preferences": ["..."],
"daily_routine": ["..."],
"favorite_books": ["..."],
"favorite_movies": ["..."],
"favorite_podcasts": ["..."],
"predictions": ["..."],
"projects": {
"technical": ["..."],
"creative": ["..."],
"personal": ["..."]
},
"last_updated": "YYYY-MM-DD"
}The JSON is publicly accessible at /daemon.json — any AI assistant or tool can fetch it directly for context.
MIT — fork it, customize it, make it yours.