CLI Context Hub
Supercharge your agentic workflows
Quick Install
curl -sSfL https://granary.dev/install.sh | shCopied
Built for the agentic loop
Plan, execute, coordinate, and handoff — granary provides the infrastructure for multi-agent collaboration.
Session-centric
Explicit tracking of what's in context for each agent run. No more lost context between sessions.
LLM-first I/O
Every command supports --json and --format prompt for machine consumption. Built for agents, not just humans.
Local-first
All state stored locally in SQLite. No network dependency, no data leaving your machine.
Concurrency-tolerant
Task claiming with leases enables multiple agents to work safely in parallel without conflicts.
Installation
Get up and running in seconds.
macOS / Linux
curl -sSfL https://granary.dev/install.sh | shCopied
Windows (PowerShell)
irm https://granary.dev/install.ps1 | iexCopied
From Source
cargo install --git https://github.com/speakeasy-api/granary.gitCopied
Requires Rust 1.80+. Install Rust via rustup
Quick Start
Get your first project up in 30 seconds.
# Initialize a workspace
granary init
# Kick off the agent in the background, watch progress in the foreground
claude -p "use granary to plan: Migrate endpoints to v2" &
granary summary --watch