← 🏠 return home

🤖🔐 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 status

Install dependencies

npm install

Run local dev server

npm run dev

Build 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.