add-backup-db

add-backup-db is a skill for Claude Code from flavien-ia/hypervibe-harness. It costs 129 tokens per session (6,109 once invoked), scanned A, original, Apache-2.0.

An automation that creates point-in-time snapshots of a Neon database, a hosted PostgreSQL database service, every two weeks and keeps a rolling history.

In plain words
What is it for?
Use it to register a project's Neon database with the shared background job that creates and retains regular database snapshots.
Why use it?
It provides recurring database copies so the project has restore points if data is lost or damaged.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_SKILL_DIR} variable. Also seen: mentions CLAUDE.md; mentions Claude Code; mentions Codex.

Part of the hypervibe plugin — 87 skills, 1 hook, 1 MCP server shipped together

Good fit Use it to register a project's Neon database with the shared background job that creates and retains regular database snapshots.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/flavien-ia/hypervibe-harness/add-backup-db
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 flavien-ia/hypervibe-harness --skill add-backup-db
Clone the repo
git clone --depth 1 https://github.com/flavien-ia/hypervibe-harness

Made for: Claude Code.

Or install hypervibe, the plugin that ships this one along with the rest of its 87 skills, 1 hook, 1 MCP server.

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 add-backup-db

README.md
[![agentmods](https://agentmods.dev/badge/skills/flavien-ia/hypervibe-harness/add-backup-db/github.svg)](https://agentmods.dev/skills/flavien-ia/hypervibe-harness/add-backup-db)
Your own site
<a href="https://agentmods.dev/skills/flavien-ia/hypervibe-harness/add-backup-db"><img src="https://agentmods.dev/badge/skills/flavien-ia/hypervibe-harness/add-backup-db/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 add-backup-db

Your own site · 80×15
<a href="https://agentmods.dev/skills/flavien-ia/hypervibe-harness/add-backup-db"><img src="https://agentmods.dev/badge/skills/flavien-ia/hypervibe-harness/add-backup-db.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 129 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,109 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 5 findings, up to medium

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 →

  • medium Rogue Agent · line 41
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
  • medium MCP Rug Pull · line 316
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 335
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 357
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 375
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
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.00129 $0.06109
Opus 5 $0.00064 $0.03054
Sonnet 5 $0.00026 $0.01222
Haiku 4.5 $0.00013 $0.00611

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

Security

Grade A, and why

add-backup-db 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 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -H "Authorization: Bearer $NTOK" "https://console.neon.tech/api/v2/projects?limit=400${NORG:+&org_id=$NORG}"
skills/add-backup-db/SKILL.md · 390 lines

How it starts

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

Invocation modes

  • Interactive mode (default): the user called /add-backup-db directly. You show the detailed checklist and each ↳ … ✅. You finish with the full summary (Step 8).

  • quiet mode: called silently by /add-db (or another caller) at the end of its flow. You display nothing other than a single final status line intended for the caller, which must be one of these exact values:

    • STATUS:ok:created - the shared worker got the snapshot job for the first time (this project is registered as its first target)
    • STATUS:ok:added - the snapshot job already existed, this project was appended as a new target
    • STATUS:ok:already-registered - the project was already registered, no-op
    • STATUS:skipped:no-neon-key - NEON_API_KEY not found (neither env nor rc nor vault) → we could not prompt in quiet mode
    • STATUS:skipped:cloudflare-missing - Cloudflare token missing or not authenticated
    • STATUS:skipped:no-db - the Neon DB is not wired into this project (db_ok=false)
    • STATUS:error:<short-reason> - any other error, with a short reason

    No checklist, no ↳ …, no prompts. No user-facing output. The caller uses the status to decide what to show in its global summary.

Detect the mode: if $ARGUMENTS contains --quiet (or if the invocation passes quiet=true), switch to quiet mode and apply the rules above at every step.

⚠️ Before any shared-worker script or wrangler command (do this FIRST)

eval "$(node "${CLAUDE_SKILL_DIR}/../../scripts/wrangler-env-init.mjs")"

This line loads CLOUDFLARE_API_TOKEN from the User scope (Windows registry / shell rc on Mac/Linux) if it is not already in process.env, and adds the pnpm bin to the PATH (for bash sessions where pnpm setup has not propagated yet). Without it, the deploy step fails with "command not found" on Mac (Spotlight), or may use a different Cloudflare account than the one the user expects.

Add Backup DB - Automated Neon database backups

Read the full file on GitHub · 390 lines

Files

What ships with it

2 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 · 390 lines · 129 tokens per session scan A 3d5c681ec2e6

Subscribe to this mod's changes

add-backup-db is a skill published in the GitHub repository flavien-ia/hypervibe-harness (37 stars, last pushed yesterday), licensed Apache-2.0. It adds 129 tokens to every session and 6,109 once invoked, about $0.0006 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-30.

Related

Other skills, from other repositories

cloud-sql-basics

This file generates or explains Cloud SQL resources. Use this file when the user asks to create a Cloud SQL instance or database for MySQL, PostgreSQL, or SQL Server. Cloud SQL manages third-party MySQL, PostgreSQL, and SQL Server instances as resources in Cloud SQL. For example, when Cloud SQL creates an open-source…

google/skills · 108 tokens

moai-platform-database-cloud

Cloud database platform specialist covering Neon (serverless PostgreSQL), Supabase (PostgreSQL 16 with real-time), and Firebase Firestore (NoSQL with offline sync). Use when choosing or setting up cloud databases.

modu-ai/moai-adk · 51 tokens

aws-rds

Manage Amazon RDS for fully managed relational databases. Provision MySQL, PostgreSQL, and Aurora instances with automated backups and patching. Configure read replicas for scaling, snapshots for recovery, and Aurora Serverless for variable workloads.

TerminalSkills/skills · 52 tokens

huawei-cloud-rds-smart-service

Huawei Cloud RDS (Relational Database Service) full-scenario intelligent service covering all database engines (MySQL, PostgreSQL, SQL Server, MariaDB, GaussDB for MySQL, TaurusDB). Provides six capability domains: (1) Basic intelligent Q&A for RDS product features, best practices, and specifications; (2) SQL…

huaweicloud/huaweicloud-skills · 330 tokens

postgres

Configure DigitalOcean Managed Postgres with bindable variables or schema isolation. Use when setting up databases, creating users, managing permissions, configuring multi-tenant schemas, or troubleshooting database connectivity on App Platform.

digitalocean-labs/do-app-platform-skills · 42 tokens

aws-rds

Provision and manage RDS databases. Configure backups, replication, and security. Use when deploying managed relational databases on AWS.

BagelHole/DevOps-Security-Agent-Skills · 28 tokens