/ccmem-list
List all active memories, with optional filtering.
Usage
code
/ccmem-list [options]
Options
- •
--project— Only show memories scoped to current project - •
--global— Only show global memories - •
--confidence <N>— Minimum confidence threshold (e.g., 0.5) - •
--type <type>— Filter by type (preference, pattern, workflow, correction) - •
--tag <tag>— Filter by tag - •
--limit <N>— Limit number of results - •
-vor--verbose— Show descriptions
Execution Steps
- •Build the filter arguments from options
- •Run
ccmem listwith filters - •Parse output into a table format
- •Display:
Summary view (default):
code
ID | Title | Conf | Type | Scope --------------------------------------|--------------------------|------|------------|-------- 2026-01-29T10-30-00-prefer-pnpm | Prefer pnpm over npm | 0.85 | preference | global 2026-01-30T14-00-00-test-before-commit| Test before committing | 0.70 | workflow | project
Verbose view (-v): Includes description snippet for each memory.
Examples
code
/ccmem-list → Shows all active memories /ccmem-list --project → Shows only current project's memories /ccmem-list --confidence 0.8 → Shows high-confidence memories only /ccmem-list --type workflow -v → Shows workflow memories with descriptions
CLI Command
bash
ccmem list [--project] [--global] [--confidence N] [--type TYPE] [--tag TAG] [--limit N]