restore

restore is a command for Claude Code, Codex from benbjohnson/litestream-skills. It costs 0 tokens per session (1,146 once invoked), scanned A, original, Apache-2.0.

A command for rebuilding a SQLite database from Litestream backup files, either at the latest state or at a chosen time or transaction.

In plain words
What is it for?
Use it to restore from a replica URL or configured database, select a timestamp or transaction ID, and write the recovered database to a chosen path.
Why use it?
It helps recover a database after data loss and lets you choose a precise recovery point.

Command for Claude CodeCodex

Written for Codex and Claude Code: installed under .codex/, but also a Claude Code command (commands/*.md).

Good fit Use it to restore from a replica URL or configured database, select…

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/benbjohnson/litestream-skills/restore
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/benbjohnson/litestream-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for restore

README.md
[![agentmods](https://agentmods.dev/badge/commands/benbjohnson/litestream-skills/restore.svg)](https://agentmods.dev/commands/benbjohnson/litestream-skills/restore)
Your own site
<a href="https://agentmods.dev/commands/benbjohnson/litestream-skills/restore"><img src="https://agentmods.dev/badge/commands/benbjohnson/litestream-skills/restore.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,146 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.01146
Opus 5 $0.00000 $0.00573
Sonnet 5 $0.00000 $0.00229
Haiku 4.5 $0.00000 $0.00115

Measured 7d ago against content hash de52554c6379, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

restore scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.codex/skills/litestream/commands/restore.md · 189 lines

How it starts

The opening of the file, as written. The whole thing — 189 lines — stays where its author put it; the contents beside it link to each section on GitHub.

restore Command

Restore a SQLite database from a backup.

Synopsis

# Restore from replica URL
litestream restore -o OUTPUT_PATH REPLICA_URL

# Restore from configured database
litestream restore [-config PATH] [-o OUTPUT_PATH] DB_PATH

Description

The restore command recovers a SQLite database from LTX backup files. It can:

  • Restore to the latest available state
  • Restore to a specific point in time
  • Restore to a specific transaction ID
  • Skip restoration if database already exists

Flags

Flag Description
-o PATH Output path for restored database (required with URL)
-config PATH Configuration file path
-no-expand-env Disable environment variable expansion
-timestamp TIME Restore to specific timestamp (RFC3339 format)
-txid TXID Restore to specific transaction ID
-parallelism N Number of parallel downloads (default: runtime.NumCPU)
-if-db-not-exists Skip if output file already exists
-if-replica-exists Skip if no backup files found

Examples

Basic Restore

# From replica URL
litestream restore -o /data/app.db s3://bucket/app-backup

# From configured database
litestream restore /data/app.db

Point-in-Time Recovery

Restore to a specific timestamp:

litestream restore -timestamp 2024-01-15T10:30:00Z -o /data/app.db s3://bucket/backup

Timestamp must be in RFC3339 format (ISO 8601 with timezone).

Restore to Transaction ID

litestream restore -txid 1000 -o /data/app.db s3://bucket/backup

Conditional Restore

# Only restore if database doesn't exist
litestream restore -if-db-not-exists -o /data/app.db s3://bucket/backup

# Skip silently if no backups available
litestream restore -if-replica-exists -o /data/app.db s3://bucket/backup

Parallel Downloads

Speed up large restores:

litestream restore -parallelism 8 -o /data/app.db s3://bucket/backup

Restore Process

Read the full file on GitHub · 189 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 189 lines · 0 tokens per session scan A de52554c6379

Subscribe to this mod's changes

restore is a command published in the GitHub repository benbjohnson/litestream-skills (5 stars, last pushed 7mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,146 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.