/brain
Launch the Brain Visualizer, a real-time 3D view of memory and relationships. Triggers on "show your brain", "visualize memory", "open the brain", "memory graph". See also: `brain-monitor` for a terminal dashboard alternative.
$ npx -y skills add kbanc85/claudia --skill brain --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/brain
Context preview
The summary Claude sees to decide when to auto-load this skill.
Launch the Brain Visualizer, a real-time 3D view of memory and relationships. Triggers on "show your brain", "visualize memory", "open the brain", "memory graph". See also: `brain-monitor` for a terminal dashboard alternative.
SKILL.md
brain.SKILL.mdname: brain
description: Launch the Brain Visualizer, a real-time 3D view of memory and relationships. Triggers on "show your brain", "visualize memory", "open the brain", "memory graph". See also: `brain-monitor` for a terminal dashboard alternative.
effort-level: medium
Brain
Launch the Claudia Brain Visualizer, a real-time 3D cosmos visualization of my memory system showing entities, relationships, memories, and patterns as a swirling interactive force-directed graph.
**Triggers:** `/brain`, "show me your brain", "visualize memory", "open the brain", "memory graph"
---
Overview
The visualizer is a single Express server (`server.js`) in `~/.claudia/visualizer/` that serves both the API (reads SQLite directly) and the pre-built 3D frontend from `dist/`. One process, one port (3849).
---
Launch
Step 1: Check if already running
if curl -s http://localhost:3849/health > /dev/null 2>&1; then
echo "ALREADY_RUNNING"
else
echo "NOT_RUNNING"
fi
Step 2: Find the visualizer directory
VISUALIZER_DIR=""
for dir in \
"$HOME/.claudia/visualizer" \
"$(npm root -g 2>/dev/null)/get-claudia/visualizer"; do
if [ -d "$dir" ] && [ -f "$dir/server.js" ]; then
VISUALIZER_DIR="$dir"
break
fi
done
if [ -z "$VISUALIZER_DIR" ]; then
echo "VISUALIZER_NOT_FOUND"
else
echo "VISUALIZER_FOUND:$VISUALIZER_DIR"
fiStep 3: Start the server (if NOT_RUNNING and VISUALIZER_FOUND)
PROJECT_DIR="$(pwd)"
cd "$VISUALIZER_DIR"
# Install deps if needed
if [ ! -d "node_modules" ]; then
echo "Installing dependencies..."
npm install --production 2>&1
fi
# Start server with --open to auto-launch browser
nohup node server.js --project-dir "$PROJECT_DIR" --open > /tmp/claudia-brain.log 2>&1 &
sleep 2
# Verify it started
if curl -s http://localhost:3849/health > /dev/null 2>&1; then
echo "STARTED"
else
echo "FAILED"
tail -10 /tmp/claudia-brain.log
fi
Step 4: Open browser (if ALREADY_RUNNING)
If the server was already running, just open the browser:
open "http://localhost:3849" 2>/dev/null || xdg-open "http://localhost:3849" 2>/dev/null || echo "OPEN_MANUALLY:http://localhost:3849"
---
Report to User
**If already running:**
Your brain is live at http://localhost:3849
**If started successfully:**
**Brain Visualizer**
Live at http://localhost:3849
Viewing database for: [PROJECT_DIR]
What you're seeing:
- **Entities** (people, orgs, projects, concepts) as colored nodes, size scales with importance
- **Relationships** as arcing edges with traveling pulse particles
- **Patterns** as wireframe clusters
- **Starfield** background, the galaxy is just ambiance
**Controls:**
- Click any node to see details, memories, and relationships
- Search bar (top left) to find specific entities, camera flies to matches
- H = toggle HUD, R = reset camera, F = fullscreen, Esc = close panel
- The graph updates live as I learn new things
**If visualizer not found:**
The Brain Visualizer isn't installed at ~/.claudia/visualizer/.
To install: run `npx get-claudia` again, or manually copy the visualizer directory:
1. Copy `visualizer/` from the get-claudia package to `~/.claudia/visualizer/`
2. Run `npm install --production` there
3. Try `/brain` again
**If server failed to start:**
The server couldn't start. Check the log:
```bash
tail -50 /tmp/claudia-brain.log
Common issues:
- Port 3849 already in use (kill the old process first)
- Database not found for this project (make sure --project-dir is correct)
- Missing node_modules (run `npm install --production` in ~/.claudia/visualizer/)
---
## Tone
Treat this like showing someone something cool. A little proud of it. "Want to see what your memory graph looks like?" energy.
Read more
name: brain description: Launch the Brain Visualizer, a real-time 3D view of memory and relationships. Triggers on "show your brain", "visualize memory", "open the brain", "memory graph". See also: `brain-monitor` for a terminal dashboard alternative. effort-level: medium
Brain
Launch the Claudia Brain Visualizer, a real-time 3D cosmos visualization of my memory system showing entities, relationships, memories, and patterns as a swirling interactive force-directed graph.
**Triggers:** `/brain`, "show me your brain", "visualize memory", "open the brain", "memory graph"
---
Overview
The visualizer is a single Express server (`server.js`) in `~/.claudia/visualizer/` that serves both the API (reads SQLite directly) and the pre-built 3D frontend from `dist/`. One process, one port (3849).
---
Launch
Step 1: Check if already running
if curl -s http://localhost:3849/health > /dev/null 2>&1; then echo "ALREADY_RUNNING" else echo "NOT_RUNNING" fi
Step 2: Find the visualizer directory
VISUALIZER_DIR=""
for dir in \
"$HOME/.claudia/visualizer" \
"$(npm root -g 2>/dev/null)/get-claudia/visualizer"; do
if [ -d "$dir" ] && [ -f "$dir/server.js" ]; then
VISUALIZER_DIR="$dir"
break
fi
done
if [ -z "$VISUALIZER_DIR" ]; then
echo "VISUALIZER_NOT_FOUND"
else
echo "VISUALIZER_FOUND:$VISUALIZER_DIR"
fiStep 3: Start the server (if NOT_RUNNING and VISUALIZER_FOUND)
PROJECT_DIR="$(pwd)" cd "$VISUALIZER_DIR" # Install deps if needed if [ ! -d "node_modules" ]; then echo "Installing dependencies..." npm install --production 2>&1 fi # Start server with --open to auto-launch browser nohup node server.js --project-dir "$PROJECT_DIR" --open > /tmp/claudia-brain.log 2>&1 & sleep 2 # Verify it started if curl -s http://localhost:3849/health > /dev/null 2>&1; then echo "STARTED" else echo "FAILED" tail -10 /tmp/claudia-brain.log fi
Step 4: Open browser (if ALREADY_RUNNING)
If the server was already running, just open the browser:
open "http://localhost:3849" 2>/dev/null || xdg-open "http://localhost:3849" 2>/dev/null || echo "OPEN_MANUALLY:http://localhost:3849"
---
Report to User
**If already running:**
Your brain is live at http://localhost:3849
**If started successfully:**
**Brain Visualizer** Live at http://localhost:3849 Viewing database for: [PROJECT_DIR] What you're seeing: - **Entities** (people, orgs, projects, concepts) as colored nodes, size scales with importance - **Relationships** as arcing edges with traveling pulse particles - **Patterns** as wireframe clusters - **Starfield** background, the galaxy is just ambiance **Controls:** - Click any node to see details, memories, and relationships - Search bar (top left) to find specific entities, camera flies to matches - H = toggle HUD, R = reset camera, F = fullscreen, Esc = close panel - The graph updates live as I learn new things
**If visualizer not found:**
The Brain Visualizer isn't installed at ~/.claudia/visualizer/. To install: run `npx get-claudia` again, or manually copy the visualizer directory: 1. Copy `visualizer/` from the get-claudia package to `~/.claudia/visualizer/` 2. Run `npm install --production` there 3. Try `/brain` again
**If server failed to start:**
The server couldn't start. Check the log: ```bash tail -50 /tmp/claudia-brain.log
Common issues:
- Port 3849 already in use (kill the old process first)
- Database not found for this project (make sure --project-dir is correct)
- Missing node_modules (run `npm install --production` in ~/.claudia/visualizer/)
--- ## Tone Treat this like showing someone something cool. A little proud of it. "Want to see what your memory graph looks like?" energy.
Terminal-based AI chief of staff. Remembers relationships, tracks commitments, helps you think strategically. Runs on Claude Code.
Repo: kbanc85/claudia
Other skills on claudia.
- /auto-research
Iteratively improve a local artifact (draft, document, page) by running a hill-climbing loop. The user names the artifact, the evaluator, and the budget. Claudia edits the artifact, scores it, keeps it if better or reverts if worse, repeats. Use when user says "iterate on this",
Open skill - /brain-monitor
Launch the Brain Monitor TUI, a real-time terminal dashboard for watching Claudia's memory system. Triggers on "brain monitor", "show dashboard", "memory dashboard", "terminal brain". See also: `brain` for a 3D graph view in the browser.
Open skill - /build-team
Propose a personalized team of specialized agents based on the user's profile, goals, and how they actually work. Runs the proposal through an independent Checker, gates on the user's approval, and applies with rollback. Use when the user says "build my team", "set up my
Open skill - /capture-meeting
Process meeting notes or transcript to extract decisions, commitments, and insights. Use when user shares transcript or says "capture this meeting", "here are my notes from the call". See also: `meeting-prep` for pre-call briefings; `follow-up-draft` for post-meeting emails.
Open skill - /client-health
Health check across active client engagements showing status, deliverables, and concerns. Triggers on "how are my clients?", "client status", "client health check".
Open skill - /databases
View all Claudia memory databases, switch between them, manage isolation. Triggers on "which database?", "switch workspace", "show databases", "list databases".
Open skill

