Skip to content

renuo/deploio-claude-plugin

Repository files navigation

Deploio — Claude Code Plugin

Version License: MIT

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"

Prerequisites

  1. Install nctl — the Deploio CLI (full install guide):

    brew install ninech/tap/nctl        # macOS
    # Linux: download from https://github.com/ninech/nctl/releases/latest
  2. Authenticate:

    nctl auth login                     # opens browser OAuth
    nctl auth set-project <project>     # select your Deploio project
  3. Verify:

    nctl auth whoami

Installation

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.


Upgrading

/plugin marketplace update

This pulls the latest version of every marketplace plugin you have installed.


Skills

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"

What each skill does

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.


Supported frameworks

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

How it works

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

Requirements

  • Claude Code CLI
  • nctl v1.14.0 or newer
  • A Deploio account (deploio.com)
  • Your app in a git repository (GitHub, GitLab, Bitbucket, or self-hosted)

Links

Contributing

Skills live in skills/, agents in agents/. See CLAUDE.md for the repository architecture.

About

Claude Code plugin for deploying and managing apps on Deploio (nine.ch PaaS) — deploy, debug, scale, provision databases, and set up CI/CD using natural language

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Packages

 
 
 

Contributors