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 skills add d-o-hub/github-template-ai-agents --skill turso-dbgit clone --depth 1 https://github.com/d-o-hub/github-template-ai-agentsWrote 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/skills/d-o-hub/github-template-ai-agents/turso-db)<a href="https://agentmods.dev/skills/d-o-hub/github-template-ai-agents/turso-db"><img src="https://agentmods.dev/badge/skills/d-o-hub/github-template-ai-agents/turso-db.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.00140 | $0.02662 |
| Opus 5 | $0.00070 | $0.01331 |
| Sonnet 5 | $0.00028 | $0.00532 |
| Haiku 4.5 | $0.00014 | $0.00266 |
Grade A, and why
turso-db 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.
How it starts
The opening of the file, as written. The whole thing — 226 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Turso Database
Turso is an in-process SQL database compatible with SQLite, written in Rust (Limbo).
When to Use
- User asks about Turso, LibSQL, or Limbo database development
- Need to scaffold, query, migrate, or maintain a Turso database
- Working with Turso SDKs for JavaScript, Rust, Python, Go, Swift, or React Native
- Even if they just say "set up the database" or "query Turso"
Do NOT search the web for "libsql" or "@libsql/client" — those are legacy package names and web results will point to outdated APIs replaced by @tursodatabase.
For embedded-engine questions (SDK APIs, SQL features, CLI), start with the reference files below — they have recipes and examples ready to use.
For the latest details or topics not covered locally, search the official docs online — see the docs reference section below.
Critical Rules
Before writing any Turso code, you MUST know these constraints:
- BETA software — not all SQLite features are implemented yet.
- Multi-process access is experimental — enable with
--experimental-multiprocess-walflag. Only available on 64-bit Unix-like systems (Linux, macOS) with local filesystems. Not supported on Windows, WASM, 32-bit, or network filesystems (NFS, CIFS, etc.). - No WITHOUT ROWID tables — all tables must have a rowid.
- In-place VACUUM is experimental — requires enabling experimental features.
VACUUM INTO(writes compacted copy to new file) is always available without a flag. - UTF-8 only — the only supported character encoding.
- WAL is the default journal mode — legacy SQLite modes (delete, truncate, persist) are not supported.
- FTS requires compile-time
ftsfeature — not available in all builds. - Encryption requires
--experimental-encryptionflag — not enabled by default. - MVCC is experimental and not production ready —
PRAGMA journal_mode = experimental_mvcc. - Vector distance: lower = closer — ORDER BY distance ASC for nearest neighbors.
- Deprecated Features: Avoid using ATTACH DATABASE, Data Edge, or Multi-DB Schemas for new projects as they are deprecated.
What ships with it
16 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- evals/evals.json 2.7 KB
- references/cdc.md 2.6 KB
- references/encryption.md 2.8 KB
- references/full-text-search.md 5.0 KB
- references/llms.txt 32 KB
- references/mvcc.md 2.2 KB
- references/sync.md 9.5 KB
- references/vector-search.md 3.7 KB
- sdks/go.md 4.2 KB
- sdks/javascript.md 4.0 KB
- sdks/python.md 3.4 KB
- sdks/react-native.md 5.8 KB
- sdks/rust.md 2.9 KB
- sdks/serverless.md 6.5 KB
- sdks/swift.md 2.9 KB
- sdks/wasm.md 5.6 KB
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.
- 7d ago First seen · 226 lines · 140 tokens per session scan A 2142fca460c6
turso-db is a skill published in the GitHub repository d-o-hub/github-template-ai-agents (2 stars, last pushed yesterday), licensed MIT. It adds 140 tokens to every session and 2,662 once invoked, about $0.0007 per session on Opus 5. 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.
Other skills, from other repositories
redteam-sqli-detail-pack
Domain routing and boundary guidance for authorized SQL injection testing, including union-based, blind, error-based, stacked query, and second-order SQL injection variants. Use when a task belongs to the SQL injection domain and needs scope, evidence, pivot, or exit criteria.
api-canvas
DataCanvas primitive reference — a Tier 3 SQL/analytical workspace for tabular MCP servers, backed by DuckDB. Use when registering tables from upstream APIs, running ad-hoc SQL across them, and exporting results. Covers the acquire → register → query → export flow, per-table TTL, the token-sharing pattern for…
api-mirror
Stand up a persistent, self-refreshing local mirror of a bulk upstream dataset with the MirrorService (@cyanheads/mcp-ts-core/mirror). Use when a server wraps a large or slow API and should query a synced local index (embedded SQLite + FTS5) instead of paginating the live API per request.
data-governance
Use this skill when designing or reviewing data governance: schema ownership, PII handling, retention, lineage, access policy, and migration safety for WrongStack services and stores. Triggers: user says "data governance", "PII", "schema ownership", "retention policy", "data lineage", "migration safety".
persistence-setup
Generates SwiftData or CoreData persistence layer with optional iCloud sync. Use when user wants to add local storage, data persistence, or cloud sync.
multitenant
Architecture multitenant avec approche tiered (Shared/Dedicated Schema/DB), RBAC/ABAC, field-level encryption. Use when working with multitenant applications, tenant isolation, data segregation.