Quick Start
This guide takes you from nothing to a running Sibyl with your first captured memory, in about five minutes.
Working on Sibyl itself? This guide is for using Sibyl. To set up the monorepo for
development, see Installation. :::
Step 1: Install Sibyl
The shell installer starts the local API + web stack and opens the setup UI:
curl -fsSL https://raw.githubusercontent.com/hyperb1iss/sibyl/main/install.sh | shAlready use Homebrew? Install the package, then start the local UI:
brew install hyperb1iss/tap/sibyl
sibyl upStep 2: Open Sibyl
| Service | URL |
|---|---|
| Web UI | http://localhost:3337 |
| API + MCP | http://localhost:3334 |
Step 3: Finish setup in the browser
The first time you open the web UI, a setup wizard runs. It walks you through three things:
- API keys — Sibyl needs an Anthropic key for entity extraction and an OpenAI or Gemini key for embeddings.
- Admin account — the first account, which holds owner privileges.
- Connect — how to start using Sibyl from the terminal or an agent.
Step 4: Connect the CLI
Confirm the CLI can reach your local server:
sibyl healthSibyl is now yours from any terminal.
Step 5: Run the memory loop
Sibyl's core is a loop: recall, act, remember, reflect. Try it.
Capture something worth keeping:
sibyl remember "Async gotcha" \
"Use asyncio.gather for concurrent awaits, not a sequential loop" \
--kind patternPull it back as working context:
sibyl recall "async concurrency" --intent buildOr search the whole graph by meaning:
sibyl search "running awaits at the same time"Semantic search finds that memory even though you searched with different words.
Step 6: Connect your AI agent
Sibyl earns its keep when your AI agent uses it too. Any agent can reach Sibyl through the sibyl CLI, and MCP-capable agents (Claude Code, Codex, opencode, OpenClaw, and others) can connect to the MCP endpoint.
Use the Connect page in the web UI for per-client MCP configuration and the agent prompt snippet, or see Agents & MCP.
Where to go next
- The Memory Loop — recall, act, remember, reflect
- Capturing Knowledge — what is worth saving
- Task Management — plan and track work
- Agents & MCP — connect any AI agent
Common commands
| Action | Command |
|---|---|
| Capture a memory | sibyl remember "Title" "What matters" |
| Recall context | sibyl recall "goal" --intent build |
| Search the graph | sibyl search "query" |
| Create a task | sibyl task create --title "..." |
| Complete a task | sibyl task complete <id> --learnings "..." |
| Link a repo | sibyl project link <id> |
| Check health | sibyl health |
