Skip to content

tribal recall

Returns the most relevant memories matching your query using vector-based semantic search.

Terminal window
tribal recall [OPTIONS] [QUERY]
ArgumentDescription
QUERYSearch query (or pipe via stdin)
OptionDescriptionDefault
--limit, -nMaximum number of results10
--json, -jOutput results as JSON
--list, -lList all memories (no search query needed, no API cost)
--all, -aSearch across ALL repos/assistants in the account
--category, -cFilter by category (comma-separated). Values: fix, convention, architecture, context, decision, tip, workflow
Terminal window
# Basic search
tribal recall "numpy compatibility"
# JSON output for agents
tribal recall "redis connection errors" --json
# Limit results
tribal recall "database migration" --limit 5
# Browse all memories (free — no RAG cost)
tribal recall --list
# Cross-repo search
tribal recall --all "auth token"
# Filter by category
tribal recall --category fix "redis crash"
# Multiple categories
tribal recall -c fix,convention "coding standards"
# Find stored workflows
tribal recall --category workflow "deploy process"
# Pipe query via stdin
echo "webpack build failing" | tribal recall --json
Terminal window
tribal recall "your query"

Searches by meaning, not keywords. A query like "Python package version issues" will match a memory about "numpy 1.26 breaks on Python 3.13".

Terminal window
tribal recall --list

Returns all memories for the current assistant without performing a search. No API/RAG cost.

Terminal window
tribal recall --all "your query"

Searches across every assistant in your Backboard account — not just the current project. Useful when knowledge might exist in another repo. Results include the source project name so you can see where each memory originated.

Terminal window
tribal recall --category fix "your query"
tribal recall -c fix,convention "your query"

Restricts results to specific memory categories. TribalMind automatically categorizes memories when they are stored. Available categories:

CategoryDescription
fixBug fixes and workarounds
conventionCoding standards and team conventions
architectureSystem design and module relationships
contextBackground context and project history
decisionDecisions and their rationale
tipTips, shortcuts, and productivity hints
workflowMulti-step processes and repeatable procedures

Pass multiple categories as a comma-separated list: --category fix,tip.