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 ashish7802/awesome-api-skills --skill tursogit clone --depth 1 https://github.com/ashish7802/awesome-api-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/skills/ashish7802/awesome-api-skills/turso)<a href="https://agentmods.dev/skills/ashish7802/awesome-api-skills/turso"><img src="https://agentmods.dev/badge/skills/ashish7802/awesome-api-skills/turso/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/ashish7802/awesome-api-skills/turso"><img src="https://agentmods.dev/badge/skills/ashish7802/awesome-api-skills/turso.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Privilege Escalation · line 22 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
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.00532 |
| Opus 5 | $0.00000 | $0.00266 |
| Sonnet 5 | $0.00000 | $0.00106 |
| Haiku 4.5 | $0.00000 | $0.00053 |
Grade A, and why
turso 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 9d 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 — 59 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Turso API Skill
Quick Start
Turso provides a distributed SQLite experience. You can query it over HTTP or sync the entire database to a local SQLite file for ultra-low latency reads.
npm install @libsql/client
Common Workflows
Embedded Replicas
Instead of querying a remote database for every read, Turso allows you to sync an embedded replica to the file system. Writes are automatically routed to the primary node, while reads are serviced locally at sub-millisecond speeds.
Production Patterns
Microservice Data Isolation
Because Turso allows creating thousands of databases instantaneously, consider a multi-tenant architecture where every customer or microservice gets its own dedicated SQLite database rather than logically partitioning a monolithic database.
Error Recovery
Handle LibsqlError. If your embedded replica sync fails, catch the error and fallback to querying the remote primary node directly.
Security Notes
Generate organization-scoped API tokens for CI/CD deployments and database-scoped tokens for the application servers. Never leak full access tokens to the frontend.
Performance Considerations
Embedded replicas require local disk access. In purely ephemeral serverless environments (like AWS Lambda), embedded replicas may be wiped between cold starts, negating their benefit. Use them primarily in persistent edge nodes or VPS deployments.
Testing Guidance
Because Turso is compatible with SQLite, you can point your test suite to an entirely local in-memory SQLite database (file::memory:) to run tests at light speed without hitting network endpoints.
Troubleshooting
If transactions fail with 'database is locked', ensure you are closing your transactions properly and not holding long-lived write locks, which bottleneck SQLite's single-writer architecture.
References
Related Skills
Why use this skill
Use this when your agent works with turso — structured patterns beat pasted docs and prevent common hallucinations.
What ships with it
8 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.
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.
- 9d ago First seen · 59 lines · 0 tokens per session scan A e8d7882a206b
turso is a skill published in the GitHub repository ashish7802/awesome-api-skills (13 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 532 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-09-03.
Other skills, from other repositories
querying-well-data
How to query a Well workspace correctly — discover the schema first, then query the right root. Use whenever the user asks about their invoices, companies, contacts, bank transactions, accounts, or accounting ledger in Well, or before writing any wellqueryrecords call.
composio
Build AI agents and apps with Composio - access 200+ external tools with Tool Router or direct execution.
database-expert
Advanced database design and administration for PostgreSQL, MongoDB, and Redis. Use when designing schemas, optimizing queries, managing database performance, or implementing data patterns.
generic-fullstack-feature-developer
Guide feature development for full-stack applications with architecture focus. Covers Next.js App Router patterns, NestJS backend services, database models, data workflows, and seamless integration. Use when adding new features, refactoring existing code, or planning major changes.
cis-aws-database-4.6
Ensure DynamoDB Streams and AWS Lambda for Automated Compliance Checking is Enabled.
sql-explainer
Paste a SQL query and get a plain English explanation of what it does.