deploio-provision

deploio-provision is a skill for Claude Code from renuo/deploio-claude-plugin. It costs 174 tokens per session (5,580 once invoked), scanned C, original, MIT.

A skill for connecting Deploio apps to managed databases, caches, search services, and file storage. Deploio is a platform for running applications, while these backing services store or process the app's data.

In plain words
What is it for?
Use it to add PostgreSQL, MySQL, Redis-compatible storage, OpenSearch, or S3-compatible object storage to a Deploio app.
Why use it?
It removes the need to work out service setup and application connection details manually. It also coordinates creating the service, adding its connection settings, and checking the result.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: names the ExitPlanMode tool.

Part of the deploio plugin — 5 skills, 2 commands, 1 agent shipped together

Good fit Use it to add PostgreSQL, MySQL, Redis-compatible storage, OpenSearch, or S3-compatible object storage to a Deploio app.

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

Made for: Claude Code.

Or install deploio, the plugin that ships this one along with the rest of its 5 skills, 2 commands, 1 agent.

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 deploio-provision

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/renuo/deploio-claude-plugin/deploio-provision"><img src="https://agentmods.dev/badge/skills/renuo/deploio-claude-plugin/deploio-provision.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 174 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,580 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 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.00174 $0.05580
Opus 5 $0.00087 $0.02790
Sonnet 5 $0.00035 $0.01116
Haiku 4.5 $0.00017 $0.00558

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

Security

Grade C, and why

deploio-provision scanned grade C with 2 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 10d 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.

Harvests environment variableshighData exfiltration

Enumerating or grepping the environment for keys collects credentials unrelated to what the mod says it does.

Deploio does NOT auto-inject connection strings. After creation I'll extract the credentials and inject DATABASE_URL for you.

Makes network callslowCapability

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

curl -XGET "https://${FQDN}/_cluster/health" -sku "${USER}:${TOKEN}"
skills/deploio-provision/SKILL.md · 533 lines

How it starts

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

Deploio: Provisioning Backing Services

Your role is coordinator. You never run commands yourself — you spawn deploio-cli agents with mode: bypassPermissions. Confirm the plan before provisioning (service creation is not instant to undo), then execute create + inject + verify in sequence.

Communication style: Speak to the user in plain language — describe what you'll provision and what env vars will be set, never show raw nctl commands. Agents manage the CLI entirely on the user's behalf.


Phase 0: Identify what's needed

Autoinfer app and project before asking. Run:

git remote get-url origin   # https://github.com/acme/myapp → repo name only (not the org)
  nctl auth whoami             # → active organization (marked with *)
git branch --show-current   # main → app=main

Derive: app = <branch> (e.g. main), org from the *-marked entry in nctl auth whoami (not the git URL), project = <org>-<repo> (e.g. renuotest-myapp — never just <repo>; nctl errors).

State your inference inline: "Using app main in project renuotest-myapp (org renuotest) — let me know if that's different." Proceed with the inferred values. Only ask explicitly if there is no git remote, or if a subsequent nctl command fails because the organization doesn't exist.

From the conversation, also determine:

  • Service type — from the table below
  • Service name — default to <app-name>-<service-type> (e.g. myapp-db)
  • Tier — Economy (shared, lower cost, dev/staging) vs Business (dedicated, production)

Include the plan skeleton in the same message as your inference, so the user understands what will happen. For example, when adding PostgreSQL:

I see your app is main in project renuotest-myapp (org renuotest) — let me know if that's different. Here's what I'll set up:

  • A managed PostgreSQL Economy database (shared, good for non-production)
  • DATABASE_URL manually injected into your app's environment

Service type lookup:

Read the full file on GitHub · 533 lines

Files

What ships with it

1 file 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. 10d ago First seen · 533 lines · 0 tokens per session scan C aede1771a226

Subscribe to this mod's changes

deploio-provision is a skill published in the GitHub repository renuo/deploio-claude-plugin (3 stars, last pushed 2mo ago), licensed MIT. It adds 174 tokens to every session and 5,580 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it C with 2 findings (harvests environment variables, 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

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

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

ecto-patterns

Ecto patterns — schemas, changesets, queries, migrations, Multi, associations, preloads, upserts. Use when editing Repo calls, Ecto.Query, or schema fields. Skip for Ash.

oliver-kriska/claude-elixir-phoenix · 45 tokens

cloudflare-kv

Cloudflare Workers KV global key-value storage. Use for namespaces, caching, TTL, or encountering KVERROR, 429 rate limits, consistency issues.

secondsky/claude-skills · 35 tokens

cloudflare-hyperdrive

Cloudflare Hyperdrive for Workers-to-database connections with pooling and caching. Use for PostgreSQL/MySQL, Drizzle/Prisma, or encountering pool errors, TLS issues, connection refused.

secondsky/claude-skills · 45 tokens