scylladb-alternator

scylladb-alternator is a skill for Claude Code from scylladb/agent-skills. It costs 127 tokens per session (1,072 once invoked), scanned A, original, Apache-2.0.

A guide to using ScyllaDB's Alternator, an API that is compatible with Amazon DynamoDB, a managed database service. It covers using common AWS SDKs to send requests to ScyllaDB.

In plain words
What is it for?
Configuring Alternator, connecting with tools such as boto3 or AWS SDKs, and handling write isolation or load balancing.
Why use it?
It helps move DynamoDB applications to ScyllaDB and explains which DynamoDB behaviors carry over.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the scylladb plugin — 6 skills shipped together

Good fit Configuring Alternator, connecting with tools such as boto3 or AWS SDKs, and handling write isolation or load balancing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/scylladb/agent-skills/scylladb-alternator
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 scylladb/agent-skills --skill scylladb-alternator
Clone the repo
git clone --depth 1 https://github.com/scylladb/agent-skills

Made for: Claude Code.

Or install scylladb, the plugin that ships this one along with the rest of its 6 skills.

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 scylladb-alternator

README.md
[![agentmods](https://agentmods.dev/badge/skills/scylladb/agent-skills/scylladb-alternator/github.svg)](https://agentmods.dev/skills/scylladb/agent-skills/scylladb-alternator)
Your own site
<a href="https://agentmods.dev/skills/scylladb/agent-skills/scylladb-alternator"><img src="https://agentmods.dev/badge/skills/scylladb/agent-skills/scylladb-alternator/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 scylladb-alternator

Your own site · 80×15
<a href="https://agentmods.dev/skills/scylladb/agent-skills/scylladb-alternator"><img src="https://agentmods.dev/badge/skills/scylladb/agent-skills/scylladb-alternator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 127 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,072 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00127 $0.01072
Opus 5 $0.00063 $0.00536
Sonnet 5 $0.00025 $0.00214
Haiku 4.5 $0.00013 $0.00107

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

Security

Grade A, and why

scylladb-alternator 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 11d 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.

skills/scylladb-alternator/SKILL.md · 72 lines

How it starts

The opening of the file, as written. The whole thing — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ScyllaDB Alternator (DynamoDB-Compatible API)

Alternator is ScyllaDB's DynamoDB-compatible API: JSON requests over HTTP/HTTPS, using the same wire protocol and (mostly) the same client SDKs as Amazon DynamoDB. The goal is that an application written for DynamoDB can run against ScyllaDB largely unmodified. It is not a separate database; Alternator tables are ordinary ScyllaDB tables underneath, each in its own keyspace, with the DynamoDB hash/sort key becoming the ScyllaDB partition/clustering key.

When to Use This Skill

  • The user is migrating an existing DynamoDB application to ScyllaDB
  • The user is using boto3, aws-sdk-java, or another AWS SDK client, with a custom endpoint_url pointed at a ScyllaDB cluster
  • The user asks about alternator_port, alternator_write_isolation, or DynamoDB-style table creation against ScyllaDB
  • The user needs to know what does or doesn't carry over from real DynamoDB behavior

For schema design guidance once data is in ScyllaDB (partition keys, clustering, anti-patterns), defer to the scylladb-data-modeling skill — Alternator tables are still subject to the same partition-key and hot-partition considerations underneath the DynamoDB-shaped API.

Enabling Alternator

Alternator is off by default. Two configuration options are required, and there is no default for the second one — starting ScyllaDB with alternator_port set but without alternator_write_isolation will fail with an explicit error:

alternator_port: 8000
alternator_write_isolation: only_rmw_uses_lwt   # or: always, forbid, unsafe

Equivalently, as command-line flags: --alternator-port=8000 --alternator-write-isolation=only_rmw_uses_lwt.

See references/write-isolation-policies.md for what each of the four policy values actually does and which to recommend.

For local testing (Docker):

docker run --name scylla -d -p 8000:8000 scylladb/scylla:latest \
  --alternator-port=8000 --alternator-write-isolation=always

By default this has no authentication enabled; any signed or unsigned request is honored. Do not leave a cluster this way outside of local testing — see references/connecting-and-load-balancing.md for real authentication and load-balancing setup.

Read the full file on GitHub · 72 lines

Files

What ships with it

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

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. 11d ago First seen · 72 lines · 127 tokens per session scan A 6d0e3678c425

Subscribe to this mod's changes

scylladb-alternator is a skill published in the GitHub repository scylladb/agent-skills (7 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 127 tokens to every session and 1,072 once invoked, about $0.0006 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.

Related

Other skills, from other repositories

cassandra

Apache Cassandra distributed NoSQL database reference. Covers CQL queries, data modeling with query-driven design, partition key strategies, consistency levels, compaction, nodetool administration, scaling, and multi-datacenter replication.

bytesagain/ai-skills · 47 tokens

alloydb-basics

Manages clusters, instances, and backups for AlloyDB for PostgreSQL, and integrates with AlloyDB Model Context Protocol (MCP) tools for automated database operations. Use when creating, configuring, or administering AlloyDB databases. Do NOT use for general PostgreSQL instances (e.g. Cloud SQL) or other GCP databases.

google/skills · 72 tokens

cloud-databases-onboarding

Guides users through discovering their database requirements, recommends a Google Cloud database based on a recommendation matrix, and assists in database creation. Use when a user asks 'What database service should I use?', 'Help me pick a database', or when a user wants to create a new database on Google Cloud.…

google/skills · 83 tokens

spanner-basics

Assists in provisioning instances and databases, designing performant schemas, and querying data in Spanner. Use when designing primary keys, writing SQL queries or client library code, or diagnosing performance issues.

google/skills · 43 tokens

obsidian-bases

Create and edit Obsidian Bases (.base files) with views, filters, formulas, and summaries. Use when working with .base files, creating database-like views of notes, or when the user mentions Bases, table views, card views, filters, or formulas in Obsidian.

kepano/obsidian-skills · 63 tokens

supabase

Use when doing ANY task involving Supabase. Triggers: Supabase products (Database, Auth, Edge Functions, Realtime, Storage, Vectors, Cron, Queues); client libraries and SSR integrations (supabase-js, @supabase/ssr) in Next.js, React, SvelteKit, Astro, Remix; auth issues (login, logout, sessions, JWT, cookies…

supabase/agent-skills · 185 tokens