<aside> π€
What you'll build: A personal AI assistant that has access to Notion, Gmail, and Google Calendar. It remembers things across sessions, drafts emails in your voice, briefs you each morning, and runs entirely in Claude Code on your machine.
</aside>
npm install -g @anthropic-ai/claude-code in your terminalnode --version to check)Your agent lives in a folder inside ~/.claude/agents/. Here is what you will build:
~/.claude/agents/my-assistant/
βββ CLAUDE.md β agent instructions (the brain)
βββ .mcp.json β MCP server connections
βββ memory/
β βββ MEMORY.md β persistent memory across sessions
βββ .claude/
βββ skills/ β installed skills
Open your terminal and run:
mkdir -p ~/.claude/agents/my-assistant/memory
mkdir -p ~/.claude/agents/my-assistant/.claude/skills
cd ~/.claude/agents/my-assistant
This is the brain of your agent. It tells Claude who it is, what it has access to, and how to behave.