Sara — task memory for AI agents
Sara is what plan mode would be if it kept its memory. She's built primarily
as a tool for an LLM agent, not the human at the keyboard: instead of a plan
that disappears when the conversation ends, an agent can persist it in Sara
and pick up where it left off in the next session. She knows which Git
project the agent is standing in, ranks work with a transparent urgency
model, tracks time, and links tasks to branches. She's LLM-agnostic — any
agent can drive her through a plain local CLI, and a human can still poke
around by hand.
Task data lives in a single SQLite database in your home directory — nothing is ever written into your repositories.
Table of contents
- Highlights
- What Sara remembers
- Memory system
- Installation
- Quick start
- Core concepts
- The task list
- The detail view (
sara info) - MCP server (
sara mcp) - Working with tasks
- The urgency model
- Configuration
- Inline Taskwarrior-style tokens
- Due dates
- Shell completions
- File locations
- Command reference
- Uninstall
Highlights
- Persistent memory — tasks, steps, notes, decisions, and history all live in a local SQLite database and survive across chat sessions and machine reboots.
- Knowledge memory —
sara learn/sara recalllet agents save and retrieve free-form findings (decisions, gotchas, context) that outlive any single task. - Project-aware —
saraauto-detects the current project (a Git repo, or any folder you runsara initin) and scopessara listto it by default. - Transparent urgency — a Taskwarrior-style scoring model decides ordering;
sara infoshows the exact breakdown. - Interactive TUI — a ratatui review form for adding/editing, and a rich detail view for everything else.
- Dependencies — block tasks on each other, with cycle detection and an at-a-glance
DEPScolumn. - Time tracking —
sara start/sara stopaccumulate active time, with optional estimates. - Git integration — tie a task to a branch and snapshot the files it touched.
- Full history — every change (field edits, deps, files, checklist, links, comments, timer) is recorded.
- Single SQLite file — easy to back up, and nothing is written into your repos.
What Sara remembers
The core promise: an agent that uses Sara can always pick up exactly where it left off, even after the conversation ends, the shell closes, or the machine reboots.
Sara has two scopes of memory — project-wide and file-level — sitting on top of a full change history and a cross-task search index.
Project-wide memory (sara init)
Running sara init in a repo records the project's goal, stack,
conventions, and setup/test/lint commands. Any agent (or human) that
opens that project later can read this profile — it's the "what is this project
and how do I work in it" context that would otherwise live only in a system
prompt.
Use sara init (without flags) to reopen the profile and edit it. The profile
travels with the project name, so every agent that touches the same repo reads
the same shared context.
File-level memory (sara attach)
Individual tasks can carry code anchors — durable pointers into the codebase — so an agent resuming work knows exactly where to look:
Each anchor records the file path, an optional symbol or line range, a reason (why it matters to the task), and a source fragment (a snapshot of the code at attach time). This means the agent can later ask "what files does this task touch?" and get a precise, annotated answer — not a guess.
Task memory
Every task is a durable record with description, priority, due date, tags, estimate, recurrence, status, and a full set of attached context:
| Attachment | What it holds |
|---|---|
| Steps | The ordered sub-tasks to execute; each step can carry its own intent, verify command, and result |
| Acceptance criteria | The conditions that must be true before done |
| Annotations / comments | Free-form notes, decisions, findings, open questions |
| Links | URLs (GitHub PRs/issues get auto-labelled) |
| File attachments | Code anchors — file path, symbol, lines, source fragment |
| Assignment | The originating prompt / what to build |
| Rationale | Why this task exists |
| Branch tie | The git branch this task lives on |
None of this requires the agent to be running. Open the task later — in any session, on any client — and the full context is there.
Change history
Every mutation to a task is recorded: field edits, timer events, dependency
changes, step completions, comment additions, file attachments, and branch ties.
Additions show +, removals show −, and value changes show old → new.
The history panel is visible in sara info and included in --md/--plain
output via --history. Nothing is ever silently overwritten.
Cross-task search (sara recall)
When the agent needs to know "have I seen this before?" or "what did I decide
about X?", recall searches descriptions, annotations, steps, and links across
every task — making the database a queryable long-term memory, not just a todo list.
Memory system (sara learn / sara recall / sara memories)
Sara has a persistent knowledge store that is separate from tasks. While tasks track what to do, memories capture what you've learned — decisions, gotchas, architectural context, and session findings that future agents (and future you) can surface in seconds.
Every memory carries tags for quick lookup, optional file associations so a memory surfaces whenever an agent touches a related path, and a strength score that rises automatically when the memory is frequently recalled.
Learning (sara learn)
Save a finding as a memory after finishing meaningful work:
# tie to the file you just edited
# auto-attach all files changed since last commit
# correct a stale memory atomically
Rules of thumb:
- One idea per memory — don't dump an entire conversation. A paragraph that stands alone is the target.
- Tags are the primary lookup key — always include at least one.
- Use
--file(repeatable) to bind a memory to the file it describes; recall will surface it whenever an agent revisits that file. --auto-filesreadsgit diff --name-only HEADand attaches every changed file automatically — ideal at the end of a work session.- Memories over 4 000 chars (configurable via
SARA_MEMORY_CHAR_LIMIT) or containing secret-like patterns are rejected by default; pass--forceonly when the content is legitimately safe.
Recalling (sara recall)
Before starting any new feature or investigation, always recall:
recall searches both memories and tasks in one pass — memory hits are
prefixed [item_memory]. If a memory was superseded by a newer one, recall
shows a [superseded by: mN] warning so you don't act on stale knowledge.
Semantic recall (--semantic). By default recall is lexical (FTS5), so a
paraphrase with no shared keyword is missed. sara recall --semantic also ranks
memories by embedding cosine using a small model bundled into the binary — no
daemon, no network, no runtime download — so conceptually-similar memories
surface (marked *). It's off by default; enable it permanently in
config.toml:
[]
= true # default false
= 0.30 # minimum cosine to surface a semantic hit
= 5 # max semantic hits merged per recall
Run sara reindex-embeddings once after enabling it to embed existing memories
(new memories are indexed automatically on sara learn while semantic is on).
Overlap warnings: when sara learn detects an existing memory with the same
tag or file association, it prints an overlap warning. Always resolve it before
moving on — run sara dream <label> to read the old memory in full, then
either sara relearn <label> to correct it in place, sara learn --supersedes <label> to mark it superseded, or sara learn --force if the two memories
genuinely cover different concerns.
Browsing & managing memories
Strength labels:
- Strong — frequently recalled; the most trusted memories.
- Linked — tied to tasks or files; reliable context.
- Weak — saved but rarely used; candidates for pruning after 90 days.
Provisional memories: sara done automatically synthesises a memory from
the completed task's steps, results, and annotations. These are marked
[provisional] in sara memories. Read each one with sara dream <label>,
then either promote it (sara promote <label>), correct it (sara relearn <label> "fixed text"), or discard it (sara forget <label> -y). Don't let
provisionals accumulate — they dilute recall precision.
Installation
The fastest paths use prebuilt packages and need no Rust toolchain. Prefer one of these; the from-source build further down is for development.
Quick install (Linux & macOS)
|
Downloads the right binary from the latest
GitHub Release into
~/.local/bin (override with SARA_INSTALL_DIR).
crates.io
Published as sara-tasks (sara and sara-cli were taken); the installed
binary is still sara.
Debian / Ubuntu (apt)
One-off .deb from a release:
Or add the apt repository so sudo apt install sara and future upgrades work:
|
Build from source
1 — Prerequisites
Rust (if not already installed):
|
# Restart your shell, or:
2 — Build & install
This compiles the binary and places it at ~/.cargo/bin/sara. Make sure
~/.cargo/bin is on your PATH (the Rust installer usually handles this):
Quick start
# Initialize the current folder as a Sara project.
# A git repo becomes its own project (named after the repo root); any other
# folder is initialized in place (named after the folder).
# Add a task (opens the interactive review form)
# Add quickly, no form, with an inline priority token
# See what to work on (current project, ranked by urgency)
# Inspect / edit a task interactively
# Start the clock, do the work, stop it
# Complete it
Core concepts
Projects. Every task belongs to a project. Inside a Git repo, sara uses
the repo as the project (run sara init once to record its goal/stack). In any
other folder, sara init registers that folder as the project, named after the
directory. The configurable default_project (inbox) is only used as a
last-resort fallback when a folder has no usable name.
IDs vs UUIDs. Each task has a small, recycled display ID (the 1, 2,
3 you type) and a stable UUID that never changes. Most commands accept
either the ID or a UUID prefix. When a task is completed, pending IDs are
repacked to stay small — so today's 4 may be tomorrow's 3.
Urgency. Tasks are ordered by a computed urgency score (see The urgency model). It rewards priority, due dates, active timers, tags, and tasks that block others — and penalizes blocked tasks.
The task list
sara list prints the pending tasks for the current project, highest urgency
first.
Each row has a small marker gutter, columns, and a dependency column:
⛓ 1 H web-app 2026-07-01 28.0 blocks 1 task Design the auth flow
Gutter markers (left edge):
| Marker | Meaning |
|---|---|
● |
Timer is running (task is active) |
♺ |
Recurring task |
⊘ |
Blocked — waiting on an unfinished task |
⛓ |
Blocking — other tasks depend on this one |
Columns: ID, PRI (H/M/L, color-coded), PROJECT, DUE (red overdue,
yellow soon), URG (urgency score), DEPS, and DESCRIPTION. A PR or ↗
badge appears before the description when the task has a linked pull request or
URL.
The DEPS column spells out the relationship the gutter hints at:
blocked by 3 (red) or blocks 2 tasks (gray).
Tip: set
NO_COLOR=1to disable colors (e.g. for piping or screenshots).
The detail view (sara info)
sara info <id> opens a full-screen, interactive view of a single task: all
fields, dependencies, attached files, links, comments, a checklist, the urgency
breakdown, a git panel, a project activity heatmap, and a live history log.
It's also where you edit a task inline.
Keys
| Key | Action |
|---|---|
↑ / ↓ (or k / j) |
Move between fields and items |
Enter / e |
Edit the selected field, or open the selected file/link |
← / → |
Cycle priority (when Priority is selected) |
Space |
Toggle the selected checklist item |
a |
Add a new checklist step (Enter saves, Esc cancels) |
⇧↑ / ⇧↓ (or K / J) |
Reorder the selected checklist step within its kind |
PgUp / PgDn |
Scroll |
Esc |
Cancel an edit |
q / Esc |
Close the view |
Editable fields: Description, Project, Priority, Due, Tags, Estimate, Recur, and Depends on.
To change dependencies, select Depends on, press Enter, and type the task
IDs it should wait on (space- or comma-separated), e.g. 7 9. sara reconciles
the set — adding and removing edges — and rejects self-references and cycles
with an inline error. The change is reflected immediately in the "Blocked by"
section and the History panel.
Non-interactive & agent-friendly output
sara info detects whether stdout is a terminal: in a TTY it opens the
interactive view; when piped it prints a readable plain-text digest instead.
You can force a specific format regardless of TTY:
| Flag | Output |
|---|---|
--md |
Markdown digest — LLM-native: ## headings and - [ ]/- [x] checkboxes for steps & acceptance. Ideal for agent context or a PR body. |
--plain |
The readable plain-text digest, forced (no TUI). |
--json |
The full structured guide (every field) for scripts. |
--history |
Include the full History log in --plain/--md (collapsed to a one-line summary by default to keep output lean). |
|
The Markdown digest is the recommended way to feed a task to an AI agent: it's stable, omits the unbounded History log by default, and needs no reshaping.
MCP server (sara mcp)
sara mcp runs a Model Context Protocol
server over stdio, exposing sara's agent loop as typed tools. Any MCP client
(Claude Code / Claude Desktop, OpenAI Codex, GitHub Copilot, Cursor, …) can then
drive sara with structured JSON in and out — no flag-ordering, UUID-juggling, or
TUI pitfalls. It's a thin adapter over the same code the CLI uses, so there is a
single source of truth.
The server exposes twenty-six tools — the non-interactive agent loop end to end, from reading and planning a task through to completing it:
| Tool | Purpose |
|---|---|
list |
Pending tasks for a project (or all) |
info |
Full task guide: steps, acceptance, notes, links, freshness, feedback |
add |
Create a task (never opens the review form) |
next |
The execution cursor — first not-done step |
steps |
Ordered steps (optionally up to step N) |
step_done |
Mark a step done, recording result + commit |
verify |
Read-only: the verification commands + acceptance criteria (does not run them) |
recall |
Cross-task keyword search + memory lookup |
memories |
Browse all saved memories (with strength labels) |
forget |
Archive a memory by label |
promote |
Accept a provisional auto-memory as permanent |
link_memory |
Create a typed edge between two memories (supersedes, similar_to, derived_from, used_in) |
unlink_memory |
Remove a typed edge between two memories |
prune_memories |
Dry-run or apply archival of low-value memories |
annotate |
Add a comment / finding / decision |
plan_import |
Bulk-ingest a task graph from an inline JSON plan |
plan_show |
Dependency-ordered briefing (the task plus everything it is blocked by) |
check |
Add a checklist step or acceptance criterion (with optional intent / verify command) |
step_undone |
Reopen a completed step / acceptance criterion |
step_remove |
Delete step N (remaining items renumber) |
dep |
Manage dependencies — action = on / off / list |
link |
Attach a URL (e.g. a PR) to a task |
attach |
Attach a file or code anchor (reason, symbol, lines, source); a URL becomes a link |
assignment |
Set the task's assignment (the originating prompt / what to build) |
rationale |
Set the task's rationale (why it exists) |
modify |
Set task fields non-interactively (never opens the review form; at least one field required) |
validate |
Stamp the guide as validated against the project's current git HEAD |
feedback |
List a task's open human feedback |
resolve |
Resolve a feedback item by its id |
start / stop |
Time tracking (stop snapshots a tied branch's changed files) |
done |
Complete a task (errors if blocked unless force; spawns the next recurrence) |
Interactive-only surfaces (the bare add/modify review form, board,
activity, projects) stay CLI-only by design — the server never opens a TUI or
blocks on stdin. So do a few niche/destructive/setup commands (init, move,
delete, reset, undo, sync, export/import).
Project awareness: the CLI derives "the project" from the current git folder,
but a long-running server has no per-call working directory. So every tool
takes an optional project_path — set it to the absolute path of the target
repo and the tool operates on that project. Omit it to use the directory the
server was launched in.
Client configuration
The server is launched as a subprocess over stdio — every client needs the same
two ingredients: command: sara, args: ["mcp"]. If sara isn't on the
client's PATH, point command at the absolute path (e.g. ~/.cargo/bin/sara).
Quickest — Claude Code (--scope user makes sara available in every project):
# repo-local instead: claude mcp add --scope project --transport stdio sara -- sara mcp
For any other client, drop in the same command + args:
Claude Desktop (claude_desktop_config.json):
OpenAI Codex (~/.codex/config.toml):
[]
= "sara"
= ["mcp"]
GitHub Copilot / VS Code (.vscode/mcp.json):
On stdio transport, stdout is the JSON-RPC channel: run
sara mcpdirectly (no wrapper that writes to stdout). Diagnostics go to stderr.
Instructing your agent to use it
Once connected, the tools show up in the client automatically, and the server
sends usage instructions on initialize — the project_path model, UUID
targeting, and the execution loop through to the PR/completion discipline. Clients
like Claude Code surface those to the model, so often no extra prompting is needed.
For stronger, always-on steering, add a short rule to your agent's own persistent
instructions (Claude Code's CLAUDE.md, an AGENTS.md, Cursor rules, …):
Use the sara MCP tools for task management (prefer them over the
saraCLI). Passproject_path— the absolute path of the repo you're working in — on every call. Target tasks by their 8-char UUID prefix, not the recycled display id. Mirror multi-step work into sara: tick steps withstep_doneas you finish them,linkthe PR when you open it, and calldoneonly once that PR has merged.
Keep it short — the tool descriptions and the server's instructions carry the
mechanics; your rule just says prefer sara, pass project_path, follow the loop.
Working with tasks
Adding tasks
By default sara add opens an interactive review form so you can confirm the
fields before saving. --yes saves immediately without the form. See
inline tokens for the project: / +tag /
pri: shorthand.
Creation output echoes the new task's UUID prefix, so scripts/agents never need
a follow-up lookup: Created task 5 [Sara] (3f458474): write tests.
Attach notes, links, checklist steps, and a dependency inline at creation
instead of separate follow-up commands (all repeatable except --depends-on,
which chains onto an existing task by uuid prefix):
# …or set fields non-interactively (no TUI):
Dependencies
A dependency means "this task is blocked until that task is done." Blocked tasks sink in urgency; blocking tasks rise.
You can also edit dependencies interactively in the Depends on field of
sara info (see above). Dependencies are shown in sara list via the ⊘/⛓
gutter markers and the DEPS column. Cycles are prevented automatically.
Time tracking
Set an estimate (in the Estimate field of sara info) to see a progress
percentage against time spent. If a task is tied to a git branch, sara stop
snapshots the files changed on that branch.
Recurring tasks
Supported intervals: daily, weekly, monthly, yearly, or Nd / Nw /
Nm (e.g. 3d, 2w, 1m). Recurring tasks show a ♺ marker in the list.
Checklists
Break a task into sub-steps without creating separate tasks:
Add --kind acceptance to any sara step … command to act on the task's
acceptance criteria instead of its steps. Toggle items with Space in sara info.
The first sara step done (or sara verify --run/--tick-on-pass) on an idle
task auto-starts its timer, so its active state reflects reality without a
separate sara start. Add --json to sara step done|undone|remove for a
structured record (the activated field reports whether that call started the task).
--tick-on-pass collapses "run the check", "read the output", and "tick the
box" into one call: each step/acceptance criterion that carries a stored verify
command is executed and marked done only when it exits 0, with the pass/fail
recorded as that item's execution result.
Notes, comments & links
Linked PRs/URLs surface as a badge in sara list and are openable from sara info.
Git branch linkage
Note:
addbranchtakes the task ID, not a branch name — the branch is read from the repo you're standing in. The task's project must have beensara init'd inside that repo. Runsara stopafterwards to snapshot the changed files.
Sharing tasks
Export a task — together with its full dependency closure (the task plus every task it transitively depends on) — to a single copy-pasteable blob, then import it into another user's Sara on a different machine.
|
What travels: the description, project, status, priority, due date, tags, estimate, recurrence, comments, checklist/steps, links and attached file paths — plus the dependency edges between the exported tasks. On import every task gets a fresh uuid and display id (so importing into a DB that already has the task never collides), dependency edges are remapped within the bundle, the timer is reset and urgency is recomputed. History and time-tracking do not travel.
A bundle carries each task's project name, not the project profile (its
goal, stack, conventions and setup/test/lint commands). Importing a task whose
project doesn't exist locally is fine — it's created under that name and shows up
in sara list/-p and tab-completion straight away; only the profile metadata
is absent. Run sara init in that project's folder to attach a profile, or use
-p/--project on import to drop everything into an existing local project
instead of the bundle's original name.
The blob tolerates being line-wrapped by email or chat clients, so a pasted
sara-task-v1:… token still imports even if it picked up newlines.
History & undo
Every mutating action is recorded and shown in the History panel of sara info:
field edits (description, project, priority, due, tags, estimate, recur, status),
timer start/stop, dependencies, attached files, checklist items, links, comments,
and branch ties. Additions show +, removals show −, and value changes show
old → new.
The urgency model
Urgency is a sum of weighted components, recomputed whenever a task changes.
sara info displays the exact breakdown, e.g.
28.0 (pri 6.0 + due 12.0 + blocking 8.0 + age 2.0).
| Component | Default | Applies when… |
|---|---|---|
priority_h |
6.0 |
Priority is High |
priority_m |
3.9 |
Priority is Medium |
priority_l |
1.8 |
Priority is Low |
due |
12.0 |
Scaled by closeness (overdue = full, 7+ days out = 0) |
blocking |
8.0 |
The task blocks at least one other task |
blocked |
-5.0 |
The task is blocked (penalty) |
active |
4.0 |
A timer is currently running |
has_tags |
1.0 |
The task has any tags |
project |
1.0 |
The task is not in the fallback project (inbox) |
age |
2.0 |
Scaled by age, capped at age_max days |
age_max |
365.0 |
Age in days at which the age bonus maxes out |
All coefficients are configurable under [urgency] in the config file.
Configuration
A config file is created with sensible defaults on first run.
| OS | Path |
|---|---|
| macOS | ~/Library/Application Support/sara/config.toml |
| Linux | ~/.config/sara/config.toml |
Full example:
= "inbox" # last-resort fallback name when a folder has no usable name
= "uk" # "uk" or "us" — affects "next friday" parsing
[] # all optional; defaults shown
= 6.0
= 3.9
= 1.8
= 12.0
= 8.0
= -5.0
= 4.0
= 1.0
= 1.0
= 2.0
= 365.0
Print the resolved config and database paths:
Inline Taskwarrior-style tokens
Leading and trailing tokens on sara add are parsed as attributes:
Tokens in the middle of a description stay as literal text. Explicit flags are always unambiguous and win over inline tokens:
| Token | Meaning |
|---|---|
project:x |
Set the project |
+tag |
Add a tag |
pri:H |
Set priority (H/M/L) |
Due dates
Natural-language dates work in the Due field of the review form and anywhere a
date is accepted:
| Input | Meaning |
|---|---|
2026-07-01 |
ISO date |
today |
Today |
tomorrow |
Tomorrow |
friday |
This coming Friday |
next friday |
Friday next week |
+3d |
3 days from now |
+2w |
2 weeks from now |
The date_dialect config setting (uk vs us) affects ambiguous phrasing.
Shell completions
Sara ships dynamic completions: once registered, <TAB> completes real
pending task ids — annotated with their descriptions — for commands like
sara done / info / start, and known project names for --project / -p.
Register by having your shell evaluate COMPLETE=<shell> sara at startup
(no fpath/compinit setup needed). Re-run on upgrade so the generated shell
glue stays in sync with the binary:
# Bash — ~/.bashrc
# Zsh — ~/.zshrc
# Fish
# Elvish
Restart your shell (or source the file) afterwards. To disable, set
COMPLETE= or COMPLETE=0.
Prefer a static completion script (command/flag structure only — no dynamic task-id/project values)?
sara completions <shell>still emits one, e.g.sara completions zsh > ~/.zsh/completions/_sara.
File locations
| What | macOS | Linux |
|---|---|---|
| Database | ~/Library/Application Support/sara/tasks.db |
~/.local/share/sara/tasks.db |
| Config | ~/Library/Application Support/sara/config.toml |
~/.config/sara/config.toml |
Run sara paths to see the exact locations on your machine.
Command reference
| Command | Description |
|---|---|
sara init |
Initialize/update the current folder as a project (--goal, --stack, --conventions, --notes, -y) |
sara add <desc> [tokens] |
Add a task (--yes, -p, --priority, -t, --every, --annotation, --link, --check, --depends-on) |
sara list |
List tasks (-a all, -p/--project <name>) |
sara modify <id> |
Edit via the review form, or set fields non-interactively (--description, --priority, --due/--clear-due, --tag/--clear-tags) |
sara info <id> |
Open the interactive detail view (--md/--plain/--json, --history) |
sara done <id> |
Complete a task (--force if blocked) |
sara delete <id> |
Soft-delete a task (-y to skip confirmation) |
sara start <id> / sara stop <id> |
Start / stop the timer |
sara dep <id> on|off|list / sara dep chain <id>... |
Manage dependencies, or wire a linear chain in one command |
sara check <id> <text> |
Add a checklist item |
sara step done|undone|remove <id> <n> |
Tick / reopen / delete step n (--kind acceptance, --json) |
sara annotate <id> <text> |
Add a comment (alias comment); sara denotate <n> removes |
sara link <id> <url> |
Add a link; sara unlink <n> removes |
sara attach <id> <path> |
Attach a file path (alias pr) |
sara addbranch <id> |
Tie the current git branch to a task (--clear) |
sara export <id> |
Export a task + its deps to a portable blob (-o <file>) |
sara import [src] |
Import a task blob (file, arg, or stdin; -p <project>) |
sara recall [query] |
Full-text search across tasks and memories; no args → recent memories (-a all projects, --tag, --file, --top N) |
sara learn [FLAGS] "<text>" |
Save a knowledge memory (--tag, -p, --file, --auto-files, --task, --supersedes, --force; flags before text) |
sara memories |
Browse all saved memories newest-first with Strong / Linked / Weak labels |
sara tags |
List all memory tags with counts |
sara dream [label] |
Inspect a single memory's full body + bond graph (or whole-brain constellation without a label) |
sara forget <label> |
Archive a memory (e.g. sara forget m3 -y) |
sara relearn <label> [FLAGS] ["text"] |
Edit a memory in place — --tag/--file replace the whole set; keeps label + links |
sara promote <label> |
Accept a provisional auto-memory as permanent |
sara link-memory <from> <rel> <to> |
Create a typed edge between memories (supersedes, similar_to, derived_from, used_in) |
sara unlink-memory <from> <rel> <to> |
Remove a typed edge between memories |
sara prune-memories |
Preview (--dry-run, default) or archive (--apply) low-value memories |
sara activity |
GitHub-style activity heatmap (--project, -a) |
sara mcp |
Run a stdio MCP server exposing the agent loop as tools (details) |
sara undo |
Revert the most recent command |
sara reset |
Delete a project's tasks and profile (-p, -y) |
sara paths |
Print config and data paths |
sara completions <shell> |
Generate shell completions |
Run sara help or sara <command> --help for full options.
Uninstall
Remove data and config:
# macOS
# Linux