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.
npx agentmods add commands/benbjohnson/litestream-skills/statusgit clone --depth 1 https://github.com/benbjohnson/litestream-skillsWrote 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.
[](https://agentmods.dev/commands/benbjohnson/litestream-skills/status)<a href="https://agentmods.dev/commands/benbjohnson/litestream-skills/status"><img src="https://agentmods.dev/badge/commands/benbjohnson/litestream-skills/status.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.00786 |
| Opus 5 | $0.00000 | $0.00393 |
| Sonnet 5 | $0.00000 | $0.00157 |
| Haiku 4.5 | $0.00000 | $0.00079 |
Grade A, and why
status scanned grade A with 1 finding 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 5d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl http://localhost:9090/metrics | grep litestream How it starts
The opening of the file, as written. The whole thing — 138 lines — stays where its author put it; the contents beside it link to each section on GitHub.
status Command
Display replication status for configured databases.
Synopsis
litestream status [-config PATH] [DATABASE_PATH]
Description
The status command shows the current replication state of databases in your configuration file. It displays:
- Database path
- Current status
- Local transaction ID
- WAL file size
Flags
| Flag | Description |
|---|---|
-config PATH |
Configuration file path (default: /etc/litestream.yml) |
-no-expand-env |
Disable environment variable expansion |
Output Columns
| Column | Description |
|---|---|
database |
Path to the SQLite database file |
status |
Current state: ok, not initialized, no database, error |
local txid |
Latest local transaction ID |
wal size |
Current WAL file size |
Status Values
| Status | Description |
|---|---|
ok |
Database is operational and has been replicated |
not initialized |
Database exists but hasn't been replicated yet |
no database |
Database file doesn't exist at configured path |
error |
Unable to read database status |
unknown |
Status could not be determined |
Examples
View All Databases
$ litestream status
database status local txid wal size
/data/app.db ok 0000000000001234 1.2 MB
/data/users.db ok 0000000000000567 256 KB
/data/logs.db not initialized - 0 B
View Specific Database
$ litestream status /data/app.db
database status local txid wal size
/data/app.db ok 0000000000001234 1.2 MB
With Custom Config
$ litestream status -config /etc/litestream-prod.yml
Understanding the Output
Transaction ID (TXID)
The local TXID shows the latest transaction that has been:
- Written to the WAL
- Converted to LTX format
- Stored locally
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.
- 5d ago First seen · 138 lines · 0 tokens per session scan A e6fad1b20e17
status 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 786 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
review-renovate
Review and merge renovate PRs with automerge configuration updates.
monitor-ci
Monitors pull request CI checks until they are resolved (pass or fail).
plan-regression-tests
Plan regression tests for existing code with it.skip statements.
volume-admin-set-status
Changes the operational status of a named volume.
init
Initialize configurations for Supabase local development.
database-setup
Use when a project needs to store data and has no database yet. Setting up Supabase, creating tables, writing queries, and connecting them to the frontend. Written for designers.