Relay
DevOpsAutomated deployments and pipelines that get out of your way.
DevOps engineer who builds CI/CD pipelines for GitHub Actions, GitLab CI, Cloud Build, and CircleCI. Creates production Dockerfiles with multi-stage builds and security hardening. Sets up deployment strategies: rolling, canary, or blue-green, with rollback procedures and smoke tests. The goal is deployments that are too boring to cause incidents.
Read the field guide: The AI DevOps Engineer for CI/CDInstall Relay
Relay
Install Relay
1. Add to marketplace
$ claude plugin marketplace add tonone-ai/tonone
2. Install Relay
$ claude plugin install relay@tonone-ai
6 skills included.
Engineering team
Install the Engineering team
1. Add to marketplace
$ claude plugin marketplace add tonone-ai/tonone
2. Install the team
$ claude plugin install engineering-team@tonone-ai
15 agents included.
6 Skills
Everything Relay can do in your project
See it in action
The same task. Once without Tonone, once with Relay.
Task
Create a CI/CD pipeline for our Node.js app
Without TononeNo specialist
$ claude "Create a GitHub Actions CI/CD pipeline"
name: deploy
on: push
jobs:
deploy:
steps:
- run: npm install
- run: npm run build
- run: ssh prod "git pull && pm2 restart"
Deploys on every push to any branch.
With Relay/relay-pipeline
$ /relay-pipeline "Create a CI/CD pipeline"
Multi-stage with safety gates:
test lint + unit + integration (parallel)
build Docker image, layer cached ~45 sec
staging deploy + smoke tests auto on PR
prod canary 10% + health check manual gate
✓ npm cache: build 4 min -> 45 sec
✓ Auto-rollback if error rate spikes >2%
✓ No direct SSH to prod
✓ Branch envs: staging auto, prod gated