list

list is a command for Claude Code from tony/claude-code-riper-5. It costs 5 tokens per session (470 once invoked), scanned B, original, MIT.

A command that lists saved notes from every branch of a software project. It expects those notes in one shared memory folder at the repository root.

In plain words
What is it for?
Reviewing shared development notes, finding past decisions, and checking memories across branches in a repository or monorepo, which is a repository containing multiple related packages.
Why use it?
It helps you find project context recorded on other branches without checking each branch manually.

Command for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/tony/claude-code-riper-5/list
Clone the repo
git clone --depth 1 https://github.com/tony/claude-code-riper-5

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for list

README.md
[![agentmods](https://agentmods.dev/badge/commands/tony/claude-code-riper-5/list.svg)](https://agentmods.dev/commands/tony/claude-code-riper-5/list)
Your own site
<a href="https://agentmods.dev/commands/tony/claude-code-riper-5/list"><img src="https://agentmods.dev/badge/commands/tony/claude-code-riper-5/list.svg" alt="Measured on agentmods" height="20"></a>
Per session 5 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 470 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00005 $0.00470
Opus 5 $0.00003 $0.00235
Sonnet 5 $0.00001 $0.00094
Haiku 4.5 $0.00001 $0.00047

Measured 4d ago against content hash a3dfe3e81bed, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

list scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

- Memory-bank MUST be at repository root: Use `git rev-parse --show-toplevel` to find root, then `[ROOT]/.claude/memory-bank/`
.claude/commands/memory/list.md · 46 lines

What it actually says

Memory Bank Overview

⚠️ Memory Bank Location Requirements

CRITICAL PATH POLICY:

  • Memory-bank MUST be at repository root: Use git rev-parse --show-toplevel to find root, then [ROOT]/.claude/memory-bank/
  • NEVER create package-level memory-banks: packages/*/.claude/memory-bank/
  • In monorepos: ONE memory-bank at root serves entire project

Correct vs Incorrect Paths for Memory Listing

Correct: [ROOT]/.claude/memory-bank/main/ (where ROOT = git rev-parse --show-toplevel) ❌ Wrong: [ROOT]/packages/react/.claude/memory-bank/main/Wrong: packages/react/.claude/memory-bank/main/

Current Branch Memories

Branch: !git branch --show-current

!ls -la $(git rev-parse --show-toplevel)/.claude/memory-bank/$(git branch --show-current)/ 2>/dev/null || echo "No memories for current branch"

All Branch Memories

!find $(git rev-parse --show-toplevel)/.claude/memory-bank -type f -name "*.md" 2>/dev/null | head -20 || echo "No memories found"

Memory Organization

[ROOT]/.claude/memory-bank/  (where ROOT = `git rev-parse --show-toplevel`)
├── main/
│   ├── 20250108-session.md
│   └── plans/
│       └── main-20250108-feature.md
├── feature-branch/
│   ├── 20250107-session.md
│   └── reviews/
│       └── feature-branch-20250107-review.md
└── experiment-riper5/
    └── 20250108-session.md

Usage Tips

  • Memories are organized by branch to prevent conflicts
  • Use /memory:save to store important context
  • Use /memory:recall to retrieve specific memories
  • Plans and reviews are automatically stored by RIPER modes
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 46 lines · 5 tokens per session scan B a3dfe3e81bed

Subscribe to this mod's changes

list is a command published in the GitHub repository tony/claude-code-riper-5 (93 stars, last pushed 18d ago), licensed MIT. It adds 5 tokens to every session and 470 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.