Sibyl CLI
Command-line interface for Sibyl. A REST API client with Rich terminal output, designed for humans,
external assistants, and scripts. The package is published as sibyl-dev; the executable is
sibyl.
Quick Reference
# Install
curl -fsSL https://raw.githubusercontent.com/hyperb1iss/sibyl/main/install.sh | sh -s -- --remote
# Develop this package
moon run cli:install-dev
# Configure
sibyl init --remote https://sibyl.example.com
sibyl auth login
# Link to project (scopes all commands)
sibyl project link <project_id>
The Memory Loop
sibyl context "goal" # Agent-ready context before work
sibyl remember "title" "content" --kind decision # Capture durable memory
sibyl reflect "raw notes" --persist # Distill notes into candidates
sibyl capture "content" # Fast verbatim capture
sibyl correct <raw_memory_id> # Inspect or correct source memory
sibyl session bundle # Wake up with active context
Task Workflow
sibyl task list --status todo,doing # List tasks
sibyl task start <id> # Start a task
sibyl task complete <id> --learnings "..." # Complete with learnings
All Commands
Memory loop
| Command | Purpose |
|---|---|
context |
Recall agent-ready working context |
brief |
One-shot lean context brief for a subagent |
remember |
Store raw-first durable knowledge |
correct |
Inspect or correct source memory |
reflect |
Distill raw notes into reviewable memory candidates |
cite |
Record citation or misleading-usage feedback for memories |
capture |
Fast verbatim capture from arguments or stdin |
note |
Add a task note or capture a free note memory |
session |
Package wake-up context for a session or agent |
Work tracking
| Command | Purpose |
|---|---|
task |
Task lifecycle (list, show, create, start, block, unblock, review, complete, archive, update, note, notes) |
epic |
Deprecated sugar over the task tree; prefer task create --epic <id> |
project |
Projects and directory linking (list, show, create, progress, link, relink, unlink, links) |
entity |
Generic entity CRUD and bi-temporal history |
explore |
Graph navigation (related, traverse, dependencies, path) |
stats |
Knowledge graph statistics |
Sources & synthesis
| Command | Purpose |
|---|---|
crawl |
Documentation sources, crawling, document browsing, graph linking |
ingest |
Import local source archives (Claude Code transcripts) into memory |
docs |
Import and list document collections |
synthesis |
Source-grounded synthesis (plan, draft, verify, remember) |
archive |
Browse archived raw quick captures |
Memory governance
| Command | Purpose |
|---|---|
admin memory audit |
Inspect memory audit receipts |
admin memory inspect |
Inspect a memory source and its audit trail |
admin memory import-status |
Inspect source import receipts |
admin memory promote |
Preview or auto-review reflection candidate promotion |
admin memory share |
Preview or apply promotion-backed memory sharing |
admin memory space |
Memory-space inspection and agent-recall preview |
admin memory review |
Reflection review queue automation (drain, dream, status) |
System
| Command | Purpose |
|---|---|
show |
Resolve any entity or raw memory by ID |
health |
Check API connectivity and health |
doctor |
Diagnose CLI/server/auth/agent setup |
auth |
Login, logout, tokens, API keys |
org |
Organization switching and member management |
team |
Teams, membership, and team project access |
config context |
Multi-server context bundles |
config |
CLI configuration |
serve / stop |
Start or stop the local embedded daemon |
docker |
Manage a self-hosted Docker deployment |
local |
Legacy local Docker stack commands |
pending-writes |
Inspect and replay locally buffered writes |
logs |
Tail server logs (requires OWNER role) |
debug |
Debug tools for development (requires OWNER role) |
dev |
Devcontainer shell and lifecycle commands |
skill |
Print or install the canonical Sibyl skill |
update |
Update Sibyl components |
version |
Show CLI version information |
Output Formats
sibyl task list # Table output (default)
sibyl task list --json # JSON for scripts
sibyl task list --csv # Spreadsheets
Source Ingestion
sibyl crawl list
sibyl crawl add "https://nextjs.org/docs" --include "docs/**"
sibyl crawl ingest <source_id>
sibyl crawl documents list --source <source_id>
--include is the preferred spelling for crawl filters. --pattern still works for backward
compatibility.
Capturing Memory
sibyl context "ship the SurrealDB-native memory path" --intent build
sibyl capture "Redis TTL mismatch caused the stale auth token bug"
sibyl remember "Token TTL decision" \
"Keep refresh token TTL longer than access token TTL." --kind decision --domain auth
sibyl remember "Worker routing decision" \
"Verifier agents run after non-trivial patches." --kind decision --task task_abc
echo "Raw planning notes..." | sibyl reflect --title "Planning session" --persist --review --task task_abc
sibyl archive list
sibyl archive show <capture_id>
In a linked project, sibyl remember also links to the single active doing task when exactly one
exists. Use --task for explicit links or --no-active-task to capture project memory without a
task edge. Persisted sibyl reflect output follows the same task-linking rules for its raw session
source and extracted candidates.
sibyl reflect accepts either an argument or stdin. With --persist --review, Sibyl stores the raw
notes and extracted candidates in the review queue with source IDs, confidence, extraction metadata,
and suggested memory scope. Without --review, persisted reflection follows the server's active
write mode. Add --no-source when the raw transcript is too noisy or sensitive but the extracted
candidates should still be saved.
Context System
A context is a named bundle of {server_url, org, default_project} with its own stored
credentials, so you can keep separate Sibyl instances (e.g. a personal server and a local work
server) cleanly isolated: memories only ever go to the server of the context in effect.
# Define two servers as contexts (auth login creates + activates one in one step)
sibyl auth login https://sibyl.hyperbliss.tech -c personal
sibyl auth login http://localhost:3334 -c work
# Switch the global default
sibyl config context use work
# Override for a single command
sibyl --context work task list
SIBYL_CONTEXT=work sibyl task list
Routing by directory
You don't have to switch contexts by hand. Pin a directory to a context and every command run there routes to that context's server automatically:
# Pin a whole tree to a context (new repos under it route correctly before linking)
cd ~/work && sibyl config context link work
# Linking a project pins the project AND the context it lives on, together
cd ~/dev/sibyl && sibyl project link project_sibyl # records the active context too
sibyl config context --quick # shows the effective context and directory pin
sibyl project links # lists every directory pin (project and/or context)
This is what keeps work memory out of your personal instance: a work repo is pinned to the work
context, so sibyl remember there writes only to the work server. The only way to reach another
instance from a pinned directory is to ask for it explicitly with --context or SIBYL_CONTEXT.
Resolution priority: --context flag → SIBYL_CONTEXT env → directory pin → active context →
legacy server.url. Pins are stored in ~/.sibyl/config.toml and are git-worktree aware (a
worktree inherits its main repo's pin).
Development
moon run cli:lint # Ruff check
moon run cli:typecheck # ty
moon run cli:test # Tests
SilkCircuit Colors
Terminal output uses the SilkCircuit palette:
#e135ffElectric Purple: headers#80ffeaNeon Cyan: interactions#ff6ac1Coral: data and IDs#f1fa8cElectric Yellow: warnings and timestamps#50fa7bSuccess Green#ff6363Error Red
Dependencies
Depends on sibyl-core for shared models.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sibyl_dev-1.1.5.tar.gz.
File metadata
- Download URL: sibyl_dev-1.1.5.tar.gz
- Upload date:
- Size: 228.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd9d60a9ae8c57bd2e2c32769b6feb896c74bc05fb4686de651f90fc766fd0b5
|
|
| MD5 |
7f60b32f3d5651b21eb034411bb23787
|
|
| BLAKE2b-256 |
cbfde7c6e6cbe58a4839ffae0c1506244b0b2541373c175f21208f8d583af7f2
|
Provenance
The following attestation bundles were made for sibyl_dev-1.1.5.tar.gz:
Publisher:
publish.yml on hyperb1iss/sibyl
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sibyl_dev-1.1.5.tar.gz -
Subject digest:
fd9d60a9ae8c57bd2e2c32769b6feb896c74bc05fb4686de651f90fc766fd0b5 - Sigstore transparency entry: 2255148565
- Sigstore integration time:
-
Permalink:
hyperb1iss/sibyl@4b4362780e0a246007a1c395b1f28c81362f7f14 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/hyperb1iss
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@4b4362780e0a246007a1c395b1f28c81362f7f14 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file sibyl_dev-1.1.5-py3-none-any.whl.
File metadata
- Download URL: sibyl_dev-1.1.5-py3-none-any.whl
- Upload date:
- Size: 203.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d91cdf5996eb4decd1ef89a862fff0f8023574d218c36b9dfee3ac8c6b2a24ad
|
|
| MD5 |
89b117454dd18c34a77dc8a5eae0845e
|
|
| BLAKE2b-256 |
22d62108dbcec492bde8d53e840f1fad63a87b0386c4d0b46a0c7e0a4a252402
|
Provenance
The following attestation bundles were made for sibyl_dev-1.1.5-py3-none-any.whl:
Publisher:
publish.yml on hyperb1iss/sibyl
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sibyl_dev-1.1.5-py3-none-any.whl -
Subject digest:
d91cdf5996eb4decd1ef89a862fff0f8023574d218c36b9dfee3ac8c6b2a24ad - Sigstore transparency entry: 2255148616
- Sigstore integration time:
-
Permalink:
hyperb1iss/sibyl@4b4362780e0a246007a1c395b1f28c81362f7f14 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/hyperb1iss
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@4b4362780e0a246007a1c395b1f28c81362f7f14 -
Trigger Event:
workflow_dispatch
-
Statement type: