Skip to content
Development
Command

/v-remember

Recall relevant past Compound V context — prior decisions, failures, routing lessons, specs/plans — from docs/superpowers via V-memory (FTS5, plus semantic embeddings when bootstrapped). It surfaces EVIDENCE for planning and review, never an authority over routing. Use before

From plugin
superpowers-v
3615 skills7 agents15 commands7 hooks
Install
> /plugin marketplace add procoders/superpowers-v
> /plugin install superpowers-v@procoders

How 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/v-remember

Context preview

What this command does when you run it.

Recall relevant past Compound V context — prior decisions, failures, routing lessons, specs/plans — from docs/superpowers via V-memory (FTS5, plus semantic embeddings when bootstrapped). It surfaces EVIDENCE for planning and review, never an authority over routing. Use before

Command definition

v-remember.md
description: Recall relevant past Compound V context — prior decisions, failures, routing lessons, specs/plans — from docs/superpowers via V-memory (FTS5, plus semantic embeddings when bootstrapped). It surfaces EVIDENCE for planning and review, never an authority over routing. Use before planning a feature, before reviewing a diff, or any time you need "have we hit this before?".

You are running **`/v:remember`** — V-memory recall. The query is `{{args}}`.

**Resolving the plugin root.** The `scripts/` this command calls ship with the plugin — they are not files in your own repository. Resolve the plugin root once per session before calling any of them:

CV="${CLAUDE_PLUGIN_ROOT:-$(ls -d "$HOME"/.claude/plugins/cache/*/superpowers-v/*/ 2>/dev/null | sort -V | tail -1)}"
CV="${CV:-$PWD}"; CV="${CV%/}"

`CLAUDE_PLUGIN_ROOT` is set for hooks but is not set in this Bash environment, so treat it as a hint, never the whole answer — the fallback line covers an installed plugin cache or a checkout of this repo.

Run the recall and present what comes back:

python3 "$CV/scripts/compound-v-memory.py" search "{{args}}" --top 8

A first search on a repo with no index builds one automatically.

**Memory is EVIDENCE, not authority:**

  • It surfaces related prior prose (specs, plans, reviews, archaeology, recon, routing lessons). It **never decides routing** — backend/model/isolation stay governed by [`routing-lessons.md`](../docs/superpowers/memory/routing-lessons.md) + the scorecard, per [`routing-policy.md`](../skills/compound-v/routing-policy.md). Treat a retrieved chunk as a pointer to read, not a ruling.
  • When you need a **structured** "has this file pattern repeatedly failed before?" verdict that may *auto-tighten* the next run (force worktree / add a review pass / fold into Task 0), use the deterministic bridge instead:
  python3 "$CV/scripts/compound-v-memory.py" recall-check --files <glob> [<glob>…]

Authority doc: [`skills/compound-v/memory.md`](../skills/compound-v/memory.md).

Read more
Ships withsuperpowers-v

Compound V — a multi-model coding sidekick for Superpowers, running on Claude Code. You describe a feature. Claude sizes the request, plans it, splits it into non-overlapping pieces, and hands each piece to a worker in its own isolated worktree.

Get the whole plugin

Other commands on superpowers-v.