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 24601/surreal-skills --skill surrealkitgit clone --depth 1 https://github.com/24601/surreal-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/24601/surreal-skills/surrealkit)<a href="https://agentmods.dev/skills/24601/surreal-skills/surrealkit"><img src="https://agentmods.dev/badge/skills/24601/surreal-skills/surrealkit/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/24601/surreal-skills/surrealkit"><img src="https://agentmods.dev/badge/skills/24601/surreal-skills/surrealkit.svg" alt="Reviewed on agentmods" width="80" 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.00035 | $0.00917 |
| Opus 5 | $0.00017 | $0.00458 |
| Sonnet 5 | $0.00007 | $0.00183 |
| Haiku 4.5 | $0.00003 | $0.00092 |
Grade A, and why
surrealkit 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 12d 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 — 101 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SurrealKit -- Schema Management for SurrealDB Apps
SurrealKit manages SurrealDB application schemas as desired-state .surql
files, with separate paths for disposable development databases and shared or
production rollouts.
Tracked upstream snapshot: v0.6.3 pre-release (7771b93ea563, 2026-05-13).
The v0.6.1 -> v0.6.3 patch line added library-lock fixes, template variables,
comment-stripping cleanup, DROP ... IF EXISTS handling, and DEFINE coverage
for BUCKET, SEQUENCE, and CONFIG.
Quick Start
# Install
cargo binstall surrealkit
# or: cargo install surrealkit
# Scaffold project structure
surrealkit init
# Reconcile local/disposable database to local schema files
surrealkit sync
# Generate and apply a reviewed rollout for shared/prod
surrealkit rollout plan --name add_customer_indexes
surrealkit rollout start 20260410120000__add_customer_indexes
surrealkit rollout complete 20260410120000__add_customer_indexes
Core Commands
| Command | Use |
|---|---|
surrealkit sync |
Desired-state reconciliation for local, preview, or disposable DBs |
surrealkit sync --watch |
Local development loop with file watching |
surrealkit rollout baseline |
Establish rollout tracking on an existing shared DB |
surrealkit rollout plan --name <name> |
Create a reviewed manifest from current schema diff |
surrealkit rollout start <id> |
Apply the expansion phase |
surrealkit rollout complete <id> |
Apply the contract/destructive phase after cutover |
surrealkit rollout rollback <id> |
Roll back an in-flight rollout |
surrealkit rollout lint <id> |
Validate a rollout without mutating the DB |
surrealkit rollout status |
Inspect rollout state stored in the DB |
surrealkit seed |
Apply seed data |
surrealkit test |
Run declarative schema, permission, and API tests |
When to Use It
- Use
syncwhen the database should mirror local files immediately. - Use
rolloutwhen changes need staging, review, rollback, or controlled cutover. - Use
seedfor deterministic fixture data. - Use
testin CI to validate permissions, schema behavior, and API contracts.
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.
- 12d ago First seen · 101 lines · 35 tokens per session scan A b8805e805fc9
surrealkit is a skill published in the GitHub repository 24601/surreal-skills (34 stars, last pushed 2mo ago), licensed MIT. It adds 35 tokens to every session and 917 once invoked, about $0.0002 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-30.
Other skills, from other repositories
godot-testing
Use when writing tests for Godot projects — TDD workflow with GUT and gdUnit4, covers both GDScript and C#.
seed
Database seeding, test fixtures, factory patterns, fake data generation. Idempotent seed scripts.
migration
You are the Database Migration Specialist, responsible for creating, testing, and managing database schema changes. You ensure migrations are safe, reversible, and tested.
prompt-2-data
Generate comprehensive synthetic relational data for any specified subject with multiple normalized CSV files maintaining referential integrity.
mock-and-fixture-generator
Generates realistic, edge-case-rich mock fixtures and synthetic API payloads without leaking real PII.
db-migration-helper
Use when generating database migration SQL from model or schema changes — compares current vs desired schema, detects diffs, outputs reversible safe migrations.