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 scalixworld/scalix-cloud-mcp --skill scalix-databasegit clone --depth 1 https://github.com/scalixworld/scalix-cloud-mcpWrote 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/scalixworld/scalix-cloud-mcp/scalix-database)<a href="https://agentmods.dev/skills/scalixworld/scalix-cloud-mcp/scalix-database"><img src="https://agentmods.dev/badge/skills/scalixworld/scalix-cloud-mcp/scalix-database/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/scalixworld/scalix-cloud-mcp/scalix-database"><img src="https://agentmods.dev/badge/skills/scalixworld/scalix-cloud-mcp/scalix-database.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.00078 | $0.00647 |
| Opus 5 | $0.00039 | $0.00324 |
| Sonnet 5 | $0.00016 | $0.00129 |
| Haiku 4.5 | $0.00008 | $0.00065 |
Grade A, and why
scalix-database 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 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -X POST https://api.scalix.world/v1/databases \ How it starts
The opening of the file, as written. The whole thing — 55 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ScalixNova — serverless PostgreSQL on Scalix Cloud
ScalixNova separates compute from storage: database branching, point-in-time recovery, scale-to-zero, zero-downtime scaling. Wire-compatible with PostgreSQL — existing drivers and tools work unchanged.
Create a database
curl -X POST https://api.scalix.world/v1/databases \
-H "Authorization: Bearer $SCALIX_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "name": "prod", "pg_version": "18" }'
Rules that matter when advising users:
- PostgreSQL majors 16 (default), 17, and 18 are supported. Omit
pg_versionfor the default; unsupported values return400with the supported set. - The major version is fixed for the life of the database. Branches and point-in-time restores stay on the same major. There are no in-place major upgrades yet — moving majors means a new database plus
pg_dumpor logical replication. - pgvector, pg_trgm, uuid-ossp, and the contrib set are pre-installed on every supported version.
Isolation tiers
| Tier | What it is | When to recommend |
|---|---|---|
| Shared (default) | Own PostgreSQL role (NOSUPERUSER), own database, SCRAM auth, SQL firewall, TLS, on shared compute |
Most workloads |
| Dedicated | Hardware-isolated microVM (dedicated kernel, isolated CPU/memory/network); currently PostgreSQL 16 only | Regulated or noisy-neighbour-sensitive workloads — on the roadmap, users should contact the team for early access |
A "sandbox" is not a database tier — on Scalix, sandboxes are compute microVMs for running code. Databases are Shared or Dedicated only.
Run SQL
scalix-cloud db query "SELECT NOW()"
scalix-cloud db query "SELECT * FROM users WHERE id = $1" --params '[42]'
scalix-cloud db tables
scalix-cloud db schema table users
Or over REST:
curl -X POST https://api.scalix.world/api/v1/sql \
-H "Authorization: Bearer $SCALIX_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "SELECT NOW()"}'
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 · 55 lines · 78 tokens per session scan A f9c93b18c3b3
scalix-database is a skill published in the GitHub repository scalixworld/scalix-cloud-mcp (2 stars, last pushed 10d ago), licensed MIT. It adds 78 tokens to every session and 647 once invoked, about $0.0004 per session on Opus 5. 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 skills, from other repositories
amazon aurora dsql
Deprecated compatibility redirect for Aurora DSQL guidance. Use when a request concerns DSQL, Aurora DSQL, distributed SQL, DSQL schemas, migrations, queries, authentication, performance, or application development.
neon
Use when you have picked Neon (serverless Postgres) and need to connect correctly from a serverless or edge runtime, wire database branching into dev, preview and CI, or stop being burned by scale-to-zero cold starts and pooler limits — including choosing HTTP versus WebSocket connections and pooled versus direct…
crestapps-core-postgresql
Skill for integrating PostgreSQL pgvector indexing data sources documents vector retrieval and memory in CrestApps.Core.
aws dsql
Deprecated compatibility redirect for Aurora DSQL guidance. Use when a request concerns DSQL, Aurora DSQL, distributed SQL, DSQL schemas, migrations, queries, authentication, performance, or application development.
distributed postgres
Deprecated compatibility redirect for Aurora DSQL guidance. Use when a request concerns DSQL, Aurora DSQL, distributed SQL, DSQL schemas, migrations, queries, authentication, performance, or application development.
distributed sql
Deprecated compatibility redirect for Aurora DSQL guidance. Use when a request concerns DSQL, Aurora DSQL, distributed SQL, DSQL schemas, migrations, queries, authentication, performance, or application development.