scalix-database

scalix-database is a skill for Claude Code from scalixworld/scalix-cloud-mcp. It costs 78 tokens per session (647 once invoked), scanned A, original, MIT.

A guide for creating and using ScalixNova, a serverless PostgreSQL database service on Scalix Cloud. It covers PostgreSQL versions, database branches, point-in-time recovery, and isolation levels.

In plain words
What is it for?
Use it to create ScalixNova databases, run SQL, select an isolation tier, use PostgreSQL extensions, and plan restores or branches.
Why use it?
It helps you choose supported database settings and understand how recovery, branching, scaling, and security options work.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument.

Part of the scalix plugin — 4 skills, 1 command, 2 MCP servers shipped together

Good fit Use it to create ScalixNova databases, run SQL, select an isolation tier, use PostgreSQL extensions, and plan restores or branches.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/scalixworld/scalix-cloud-mcp/scalix-database
Install

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.

Any agent
npx skills add scalixworld/scalix-cloud-mcp --skill scalix-database
Clone the repo
git clone --depth 1 https://github.com/scalixworld/scalix-cloud-mcp

Made for: Claude Code.

Or install scalix, the plugin that ships this one along with the rest of its 4 skills, 1 command, 2 MCP servers.

Wrote 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.

agentmods badge for scalix-database

README.md
[![agentmods](https://agentmods.dev/badge/skills/scalixworld/scalix-cloud-mcp/scalix-database/github.svg)](https://agentmods.dev/skills/scalixworld/scalix-cloud-mcp/scalix-database)
Your own site
<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.

agentmods 80×15 button for scalix-database

Your own site · 80×15
<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>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 647 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 12d ago against content hash f9c93b18c3b3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

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 \
skills/scalix-database/SKILL.md · 55 lines

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_version for the default; unsupported values return 400 with 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_dump or 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()"}'

Read the full file on GitHub · 55 lines

Changes

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.

  1. 12d ago First seen · 55 lines · 78 tokens per session scan A f9c93b18c3b3

Subscribe to this mod's changes

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.

Related

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.

awslabs/mcp · 46 tokens

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…

ericrisco/rsc-harness · 93 tokens

crestapps-core-postgresql

Skill for integrating PostgreSQL pgvector indexing data sources documents vector retrieval and memory in CrestApps.Core.

CrestApps/CrestApps.AgentSkills · 26 tokens

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.

awslabs/mcp · 44 tokens

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.

awslabs/mcp · 43 tokens

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.

awslabs/mcp · 43 tokens