Building a Personal Agent
Notes on building a personal agent on top of Claude Code, using markdown and the file system as the database.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3672359) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Juha Pellotsalo Posted on Apr 28 Building a Personal Agent #ai #agents #claude #personalagent Shortly after OpenClaw came out I started building my own personal agent. I picked Claude Code as the harness, partly out of habit and partly because I wanted to see what it could do outside of coding. The agent lives in a single directory on my file system. Launching Claude in that folder launches the agent. Nothing about it is Claude-specific, though.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV Community.