🤖🔐 Building My Personal AI + Security Lab ⚡
A practical build log for creating a personal AI/security workspace across Linux 🐧, GitHub 🐙, Cloudflare ☁️, automation ⚙️, and AI agents 🤖.
🎯 Goal
The goal is to build a controlled lab where AI agents can help with coding, documentation, deployment troubleshooting, command references, and security reviews without losing operational control.
🏗️ Core stack
Linux VM 🐧, GitHub repo 🐙, Astro website ⚡, Cloudflare Pages ☁️, TMUX 💻, Hermes/OpenClaw agents 🤖, and strict review-before-deploy habits 🔐.
🔨 Common commands
Create a repo workspace
git clone <repo-url> && cd <repo>Inspect project status
git statusInstall dependencies
npm installRun local dev server
npm run devBuild before deploy
npm run build🔐 Security rules
Keep secrets out of Git, review every diff, validate builds locally, avoid unnecessary dependencies, and treat AI-generated changes as untrusted until inspected.