/memory
List the file-based memory store grouped by project (auto-memory) plus the CLAUDE.md files.
$ npx -y skills add hoangsonww/Claude-Code-Agent-Monitor --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/memory
Context preview
What this command does when you run it.
List the file-based memory store grouped by project (auto-memory) plus the CLAUDE.md files.
Command definition
memory.mddescription: List the file-based memory store grouped by project (auto-memory) plus the CLAUDE.md files.
argument-hint: "[project-filter]"
List the user's file-based memory store from the Agent Monitor Config Explorer at `http://localhost:4820`. If **$ARGUMENTS** is given, treat it as a project-slug filter and show only matching auto-memory groups.
curl -s http://localhost:4820/api/cc-config/memory
The response is `{ items: [...] }`. Two kinds of entry:
- **CLAUDE.md** — `{ scope:"user"|"project", file, size, mtime, preview }`.
- **Auto-memory facts** — `{ scope:"auto-memory", project, name, isIndex, file,
size, mtime, frontmatter, preview }`.
Print in two parts:
1. **CLAUDE.md** — one line per entry: `scope`, `size` (KB), last-modified. Flag any with `truncated: true` as oversized.
2. **Auto-memory, grouped by `project`** — for each project (filtered by `$ARGUMENTS` if provided), list the index file (`isIndex: true`, usually `MEMORY.md`) first, then each per-fact file with `name`, `frontmatter.description` (or start of `preview`), `size` (KB), and `mtime`.
Memory store
CLAUDE.md
user ..... 8.2 KB modified 3d ago
project .. 1.1 KB modified 1h ago
Project: -Users-david-WebstormProjects-foo (4 files)
MEMORY.md (index) ......... 0.6 KB
feature_x_decision.md ..... 0.3 KB — "why we chose X over Y"
api_quirk.md .............. 0.2 KB — "endpoint Z returns 200 on error"Cite only fields the API returned — never invent facts, names, or sizes. Note that auto-memory files are editable via `PUT`/`DELETE /api/cc-config/file` (a backup is taken automatically) but this command is read-only. If the dashboard is unreachable, say so and tell the user to start it with `npm start` from the repo root.
Read more
description: List the file-based memory store grouped by project (auto-memory) plus the CLAUDE.md files. argument-hint: "[project-filter]"
List the user's file-based memory store from the Agent Monitor Config Explorer at `http://localhost:4820`. If **$ARGUMENTS** is given, treat it as a project-slug filter and show only matching auto-memory groups.
curl -s http://localhost:4820/api/cc-config/memory
The response is `{ items: [...] }`. Two kinds of entry:
- **CLAUDE.md** — `{ scope:"user"|"project", file, size, mtime, preview }`.
- **Auto-memory facts** — `{ scope:"auto-memory", project, name, isIndex, file,
size, mtime, frontmatter, preview }`.
Print in two parts:
1. **CLAUDE.md** — one line per entry: `scope`, `size` (KB), last-modified. Flag any with `truncated: true` as oversized.
2. **Auto-memory, grouped by `project`** — for each project (filtered by `$ARGUMENTS` if provided), list the index file (`isIndex: true`, usually `MEMORY.md`) first, then each per-fact file with `name`, `frontmatter.description` (or start of `preview`), `size` (KB), and `mtime`.
Memory store
CLAUDE.md
user ..... 8.2 KB modified 3d ago
project .. 1.1 KB modified 1h ago
Project: -Users-david-WebstormProjects-foo (4 files)
MEMORY.md (index) ......... 0.6 KB
feature_x_decision.md ..... 0.3 KB — "why we chose X over Y"
api_quirk.md .............. 0.2 KB — "endpoint Z returns 200 on error"Cite only fields the API returned — never invent facts, names, or sizes. Note that auto-memory files are editable via `PUT`/`DELETE /api/cc-config/file` (a backup is taken automatically) but this command is read-only. If the dashboard is unreachable, say so and tell the user to start it with `npm start` from the repo root.
🚀 A real-time monitoring dashboard for Claude Code & Codex, built with SQLite3, Node.js, Express, React, Vite, TailwindCSS, & WebSockets. It tracks sessions, agent activity, tool usage, and subagent orchestration, providing live analytics, a Kanban status board, status notifications, a cute buddy, & an interactive web UI/MacOS/Windows native app.
Repo: hoangsonww/Claude-Code-Agent-Monitor
Other commands on claude-code-agent-monitor.
- /burn-rate
Compute the recent 7-day spend trend (burn rate) from daily sessions and per-session cost.
Open command - /cost-today
Quick total cost plus a per-model one-liner from the dashboard pricing engine.
Open command - /top-spenders
List the top N most expensive Claude Code sessions by inline cost.
Open command - /audit-config
Quick Claude Code config audit — counts per surface (user vs project) and totals.
Open command - /inventory
One-screen inventory of skills, agents, commands, MCP servers, and hooks counts.
Open command - /budget
Show current Claude Code spend versus a budget number
Open command

