Skip to content

recall

Recall a compact working context pack for an agent. recall is the read side of the Sibyl memory loop. Given a goal, it compiles the most relevant tasks, decisions, plans, and graph neighbors into a single pack an agent can drop into context.

Synopsis

bash
sibyl recall <goal> [options]

Arguments

ArgumentRequiredDescription
goalYesAgent goal or user task

Options

OptionShortDefaultDescription
--intent-ibuildAgent intent (see below)
--layerrecallContext depth: wake, recall, deep_search
--domain-d(none)Domain/category to bias retrieval
--project-p(auto)Project ID
--agent(none)Agent diary identity to include
--all-afalseUse all accessible projects
--limit-l12Maximum context items (1-50)
--relatedonInclude one-hop related graph context (--no-related)
--json-jfalseOutput full JSON
--rawfalseRecall verbatim raw memories
--diaryfalseRecall a private agent diary
--scopeprivateRaw memory scope
--scope-key(none)Project/team/shared scope key

Intent

The --intent flag biases what kind of memory the pack favors:

IntentBias
buildImplementation patterns and active tasks
planDecisions, plans, roadmap context
ideateIdeas, open questions, prior exploration
researchClaims, sources, documents
reviewRecent changes, prior review notes
debugError patterns, gotchas, related failures
decideDecisions, constraints, tradeoffs
learnGuides, procedures, durable knowledge
generalBalanced mix

Layers

--layer controls how deep the recall reaches:

LayerBehavior
wakeFast startup pack: active tasks and a few high-signal memories
recallDefault working pack scoped to the goal
deep_searchWider semantic sweep across the graph

Examples

Working Context Pack

bash
sibyl recall "wire up the password reset endpoint"

Debug Intent

bash
sibyl recall "auth token refresh fails intermittently" --intent debug
bash
sibyl recall "how synthesis verification works" --layer deep_search --limit 25

Recall Raw Memories

By default recall returns graph-extracted entities. Use --raw to pull verbatim raw memory sources captured with remember --raw:

bash
sibyl recall "deployment runbook" --raw --scope project

Recall an Agent Diary

bash
sibyl recall "what nova was working on" --diary --agent nova

JSON for Agent Injection

bash
sibyl recall "implement OAuth2" --json | jq '.items[].title'

Released under the Apache-2.0 License.