From pmm
Dumps PMM memory state as terminal ASCII visualizations: file activity heatmaps via git timestamps, token burn estimates, clusters, and timelines. Levels: status (heatmap), summary (+clusters/timeline), detailed (full). Invoke via /pmm:dump.
npx claudepluginhub nominexhq/pmm-pluginThis skill uses the workspace's default tool permissions.
Render PMM memory state as inline ASCII visualizations. Runs as a subagent to keep the main context clean.
Generates interactive D3.js force-directed graph of memory files across git history with time slider for temporal navigation; opens in browser as subagent. Invoke via /pmm:viz.
Generates 'Journey Into [Project]' narrative report analyzing full development history from claude-mem timeline. Use for timeline reports, project history analysis, or journey summaries.
Displays memory health dashboard for Claude projects: MEMORY.md/CLAUDE.md line counts, topic files, capacity status, stale references, duplicates, recommendations. Invoke via /si:status.
Share bugs, ideas, or general feedback.
Render PMM memory state as inline ASCII visualizations. Runs as a subagent to keep the main context clean.
Depth level: $ARGUMENTS (default: status if empty or not provided)
/pmm:dump or /pmm:dump status — heatmap only (status level)/pmm:dump summary — heatmap + cluster list + last 5 timeline entries/pmm:dump detailed — full ASCII: graph map + heatmap + similarity matrix + clustersDispatch a general-purpose agent using the Readonly Agent Model from memory/config.md (default: haiku) with the prompt below. Replace <level> with the depth level (status, summary, or detailed). Replace <project-root> with the actual project root path.
Output the agent's returned string verbatim — it contains the fully formatted ASCII visualization.
Render PMM memory state as ASCII visualizations. This is a READ-ONLY task — do not edit any files. You may run git commands for timestamps.
Project root:
<project-root>Depth level:<level>Depth Levels
status— Heatmap onlysummary— Heatmap + cluster list + last 5 timeline entriesdetailed— Full ASCII: graph map + heatmap + similarity matrix + clustersVisualization 1: Heatmap — File Activity (all levels)
- Read
<project-root>/memory/config.mdto get the list of active files- For each active file, run:
git log -1 --format="%ar|%at" -- memory/<filename>- Map the unix timestamp to a heat level:
████= modified < 5 minutes ago███░= modified < 30 minutes ago██░░= modified < 2 hours ago█░░░= modified < 24 hours ago░░░░= modified > 24 hours ago or never- Check if file is empty/template-only (only has comments and headers, no real content)
- Sort by recency (most recent first)
- Render as aligned table with legend
Token Burn Estimate (all levels)
After the heatmap, show a token burn estimate:
- Count total characters across all
.mdfiles inmemory/:cat memory/*.md | wc -c- Estimate read tokens:
total_chars / 4- Get last memory diff stats:
git diff HEAD~1 --stat -- memory/ | tail -1(extract insertions + deletions)- Estimate write tokens:
(insertions + deletions) * 20 / 4- Render:
Token Burn (per save) Read: ~12,400 tok Write: ~850 tok Total: ~13,250 tokUse compact single-line format for dump. Round to nearest 50. Comma-separate thousands.
Visualization 2: Clusters + Timeline (summary and detailed only)
If level is
summary:
- Read
<project-root>/memory/vectors.md- Parse cluster lines:
Cluster: name → [members] | theme: ...- Render cluster names with member count
- Read
<project-root>/memory/timeline.md- Show last 5 timeline entries
Visualization 3: Graph Map (detailed only)
If level is
detailed:
- Read
<project-root>/memory/graph.md- Parse all
[[A]] → relationship → [[B]]lines- Group edges by
##section headers- Render each group as an ASCII subgraph:
- Nodes boxed:
┌──────┐ │ name │ └──────┘- Edges:
───relationship──▶- Group under section name
- If >15 edges, show top-level structure only (collapse leaf nodes)
- If empty/template: "No relationships recorded yet."
Visualization 4: Similarity Matrix (detailed only)
If level is
detailed:
- Read
<project-root>/memory/vectors.md- Parse similarity lines:
[[A]] ↔ [[B]] | score: X.XX | basis: ...- Parse cluster lines:
Cluster: name → [members] | theme: ...- Build sparse similarity matrix
- Render as aligned ASCII table (abbreviate names to 6 chars,
·for no data)- Render clusters as tree with
┌├└charsOutput Format
Return the fully formatted ASCII output. Keep it compact. No preamble — start directly with the visualization.