deploio-ci-cd

deploio-ci-cd is a skill for Claude Code from renuo/deploio-claude-plugin. It costs 155 tokens per session (4,203 once invoked), scanned B, original, MIT.

A setup process for continuous delivery to Deploio, where code changes can automatically trigger deployments. CI/CD means automated checks and releases from a code repository.

In plain words
What is it for?
It is for creating a deployment workflow, installing the Deploio command-line tool in CI, using repository secrets for login, and deploying on each push.
Why use it?
It removes the need to deploy manually after every push and provides a defined way for the pipeline to authenticate with Deploio.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: names the ExitPlanMode tool; positional $N argument.

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

Good fit It is for creating a deployment workflow, installing the Deploio command-line tool in CI, using repository secrets for login, and deploying on each push.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/renuo/deploio-claude-plugin/deploio-ci-cd
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-ci-cd
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-ci-cd

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/renuo/deploio-claude-plugin/deploio-ci-cd"><img src="https://agentmods.dev/badge/skills/renuo/deploio-claude-plugin/deploio-ci-cd.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 155 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,203 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 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.00155 $0.04203
Opus 5 $0.00077 $0.02101
Sonnet 5 $0.00031 $0.00841
Haiku 4.5 $0.00015 $0.00420

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

Security

Grade B, and why

deploio-ci-cd scanned grade B 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 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

| sudo tee /etc/apt/sources.list.d/repo.nine.ch.list
skills/deploio-ci-cd/SKILL.md · 415 lines

How it starts

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

Deploio: CI/CD Setup

Your role is coordinator. You never run commands yourself — you spawn deploio-cli agents with mode: bypassPermissions for nctl execution, and use the Write tool (or spawn a file-writer agent) to create workflow files. Gather what's needed, confirm the plan, then set everything up in one pass.

Communication style: Speak to the user in plain language — describe what will be set up, never show raw nctl commands in your responses. Agents manage the CLI entirely on the user's behalf.


Phase 0: Pre-flight — gather context

Before asking questions, briefly preview what you'll build so the user knows what to expect:

I'll set up automated Deploio deployments. The workflow will:

  • Install nctl in CI
  • Authenticate using three repo secrets you'll add: NCTL_API_CLIENT_ID, NCTL_API_CLIENT_SECRET, NCTL_ORGANIZATION
  • Deploy your app on every push

Autoinfer project and app from git context:

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 (single env) or hints at multi-env

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: "I'll configure CI/CD for app main in project renuotest-myapp (org renuotest) — let me know if that's different." Only ask if there is no git remote or if a subsequent nctl command fails because the organization doesn't exist.

Then ask for whatever else is missing:

Field Ask if not known
CI platform GitHub Actions (default), GitLab CI, CircleCI, Bitbucket Pipelines, other
App name(s) the app(s) that should be auto-deployed (default: inferred from repo)
Environments single (main → production) or multi (develop → staging, main → production)
Service account name default: <ci-platform>-deploy (e.g. github-actions-deploy)

Read the full file on GitHub · 415 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. 10d ago First seen · 415 lines · 0 tokens per session scan B 0006d4facd2d

Subscribe to this mod's changes

deploio-ci-cd is a skill published in the GitHub repository renuo/deploio-claude-plugin (3 stars, last pushed 2mo ago), licensed MIT. It adds 155 tokens to every session and 4,203 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). 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

docker-devops

Create optimized Docker configurations, docker-compose setups, Kubernetes manifests, and CI/CD pipelines. Use when containerizing applications, setting up deployment infrastructure, or automating builds. Triggers on: Docker, Dockerfile, container, docker-compose, Kubernetes, k8s, CI/CD, GitHub Actions, deployment.

parisgroup-ai/imersao-ia-setup · 66 tokens

setup-pipeline

Sets up a Power Platform Pipeline for automated Power Pages deployments. Power Platform Pipelines is Microsoft's native CI/CD tool built into the Power Platform — no external infrastructure required. Use when asked to: "set up ci/cd", "create pipeline", "setup pipeline", "set up power platform pipelines", "create…

microsoft/power-platform-skills · 118 tokens

configure-env-variables

Configures environment variables for Power Pages site settings to support ALM across environments. Creates environment variable definitions in Dataverse, guides the user through linking site settings to those variables via the Power Pages Management app, adds the variables to the solution, and generates a…

microsoft/power-platform-skills · 119 tokens

add-azuredevops

Adds Azure DevOps connector to a Power Apps code app. Use when querying work items, creating bugs, managing pipelines, or making ADO API calls.

microsoft/power-platform-skills · 37 tokens

pr-watch

Local PR watcher. Monitors CI status, automatically fixes failing checks by reading failure logs and applying targeted fixes, then optionally merges when all checks pass. Local CLI analog to Claude Code's cloud auto-fix feature.

SethGammon/Citadel · 46 tokens

push-ci

Push to remote and monitor CI. Validates branch safety, executes git push WITH explicit user approval, then monitors CI run status via gh CLI. Use when: user says 'push', 'push and watch CI', 'ship it', 'push-ci'. Not for: committing (use /smart-commit), creating PRs (use /create-pr), merging (use /merge-prep).

sd0xdev/sd0x-harness · 82 tokens