A Claude Code plugin for deploying and managing apps on Deploio — Nine Internet Solutions' PaaS platform. Instead of memorising nctl commands, just describe what you want in plain language.
"Deploy my Rails app to Deploio"
"My app is throwing 503s — what's wrong?"
"Add a PostgreSQL database and wire it up"
"Set up GitHub Actions to deploy on every push"
-
Install
nctl— the Deploio CLI (full install guide):brew install ninech/tap/nctl # macOS # Linux: download from https://github.com/ninech/nctl/releases/latest
-
Authenticate:
nctl auth login # opens browser OAuth nctl auth set-project <project> # select your Deploio project
-
Verify:
nctl auth whoami
Step 1 — Add this marketplace to Claude Code:
/plugin marketplace add renuo/deploio-claude-plugin
Step 2 — Install the plugin:
/plugin install deploio@deploio
Step 3 — Done. Claude will now recognise deployment requests and use the plugin automatically.
/plugin marketplace update
This pulls the latest version of every marketplace plugin you have installed.
Claude picks the right skill automatically based on what you ask. You don't need to invoke them explicitly.
| Skill | Triggers when you say... |
|---|---|
| deploio-deploy | "deploy my app", "host on Deploio", "first deploy", "set up a new Deploio app" |
| deploio-manage | "scale to 3 replicas", "add env var", "tail logs", "open rails console", "rollback", "add worker" |
| deploio-debug | "app is crashing", "getting 500 errors", "deploy failing", "build error", "OOM", "why is my app broken" |
| deploio-provision | "add postgres", "need Redis", "provision a database", "set up object storage", "add Sidekiq" |
| deploio-ci-cd | "auto-deploy on push", "GitHub Actions for Deploio", "CI/CD pipeline", "preview environments" |
deploio-deploy — First-time deployment from a git repository to a live HTTPS URL. Detects your framework (Rails, Node.js, Python, PHP, Go, Docker), sets the right defaults (env vars, deploy job, health probe, instance size), confirms the plan with you, then deploys.
deploio-manage — Day-to-day operations on a running app: env var changes, scaling, redeployments, log tailing, Rails console, exec, rollbacks, worker jobs, scheduled jobs, custom domains, health probes.
deploio-debug — Autonomous diagnosis: pulls app status, release history, build logs, and runtime stats in parallel, identifies the root cause, and proposes a fix. Covers build failures, boot crashes, runtime errors, OOM kills, and worker issues.
deploio-provision — Provisions managed backing services and wires them to your app: PostgreSQL (Economy and Business tiers), MySQL, Redis-compatible KVS, OpenSearch, and S3-compatible object storage. Extracts credentials and injects env vars automatically.
deploio-ci-cd — Creates a service account, writes the CI workflow file, and guides you through adding secrets. Supports GitHub Actions, GitLab CI, CircleCI, and Bitbucket Pipelines. Includes multi-environment (staging/production) and per-PR preview environment templates.
| Framework | Auto-detected via | Defaults set automatically |
|---|---|---|
| Rails | Gemfile containing rails |
RAILS_ENV, SECRET_KEY_BASE, rake db:prepare deploy job, mini instance size |
| Node.js | package.json |
NODE_ENV=production |
| Django | manage.py + requirements.txt |
DJANGO_SECRET_KEY, ALLOWED_HOSTS=* |
| Flask / FastAPI | app.py / main.py + requirements.txt |
SECRET_KEY |
| PHP / Laravel | composer.json |
APP_ENV=production, APP_KEY |
| Go | go.mod |
listens on $PORT |
| Docker | Dockerfile |
reads port from EXPOSE |
The plugin follows a coordinator pattern — Claude never runs nctl commands directly in your shell. Instead it spawns background agents with mode: bypassPermissions that execute the CLI on your behalf. This means:
- Claude describes what it will do before doing it
- You confirm before anything is created or changed
- Destructive operations always require explicit confirmation
- You can interrupt at any point
- Claude Code CLI
nctlv1.14.0 or newer- A Deploio account (deploio.com)
- Your app in a git repository (GitHub, GitLab, Bitbucket, or self-hosted)
- Deploio documentation
- Nine documentation
- nctl CLI — installation & reference
- nctl releases
- Deploio platform
Skills live in skills/, agents in agents/. See CLAUDE.md for the repository architecture.