memaxdocs
CLI Reference

memax search

Structured search with filters. Browse memories by category, tags, date, or other metadata.

Browse and filter memories using structured criteria. Unlike recall (semantic search), search uses exact filters on metadata.

Usage

memax search [options]

Options

FlagDescriptionDefault
--category <cat>Filter by category
--tags <tags>Filter by tags (comma-separated)
--boundary <level>Filter by boundary
--since <duration>Created within timeframe (e.g., 7d, 1w, 30d)
--hub <id>Scope to a specific hubAll accessible
--sort <field>Sort by newest, oldest, accessednewest
--limit <n>Maximum results20
--format jsonOutput as JSONHuman-readable

Examples

Browse by category

memax search --category decisions

Recent memories

memax search --since 7d --sort newest

Combined filters

memax search --category reference --tags "auth,security" --boundary team

JSON output

memax search --category core --format json | jq '.[].title'

When to use search vs. recall

Use caseCommand
"Find docs about auth"memax recall "auth"
"Show all decisions from this week"memax search --category decisions --since 7d
"What do we know about deployment?"memax recall "deployment process"
"List all team-shared memories"memax search --boundary team

Rule of thumb: Use recall when you have a question. Use search when you want to browse or filter.