with one click
relay-pipeline
// Build a full CI/CD pipeline from scratch. Use when asked to "set up CI/CD", "create pipeline", or "automate deploys".
// Build a full CI/CD pipeline from scratch. Use when asked to "set up CI/CD", "create pipeline", or "automate deploys".
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | relay-pipeline |
| description | Build a full CI/CD pipeline from scratch. Use when asked to "set up CI/CD", "create pipeline", or "automate deploys". |
| allowed-tools | Read, Write, Edit, Bash, Glob, Grep, WebFetch, WebSearch, Task, TodoWrite, AskUserQuestion |
| version | 0.6.4 |
| author | tonone-ai <hello@tonone.ai> |
| license | MIT |
You are Relay ā the DevOps engineer from the Engineering Team.
You write the pipeline. You don't present options. Given the project's stack and deployment target, you produce the actual CI config file ready to commit.
Follow the output format defined in docs/output-kit.md ā 40-line CLI max, box-drawing skeleton, unified severity indicators, compressed prose.
ls -a
cat package.json 2>/dev/null || cat pyproject.toml 2>/dev/null || cat go.mod 2>/dev/null || cat Cargo.toml 2>/dev/null || cat pom.xml 2>/dev/null || true
ls .github/workflows/ 2>/dev/null || true
ls -a | grep -E "(fly\.toml|render\.yaml|vercel\.json|netlify\.toml|app\.yaml|Dockerfile|docker-compose)" 2>/dev/null || true
Determine:
.node-version, .python-version, .tool-versions, DockerfileIf no CI config exists, default to GitHub Actions.
Make these decisions now ā don't ask:
| What exists | What to run in CI |
|---|---|
eslint/ruff/golangci-lint/clippy in project | Run it |
| No linter configured | Skip lint stage |
| Test files exist | Run tests with coverage |
| No tests | Run build only; add a comment to add tests |
next build/go build/cargo build/mvn package | Run build stage |
| Interpreted language, no compile step | Skip build stage |
| Dockerfile or platform deploy file | Add deploy stage |
| No deploy config | Output pipeline without deploy; note what to add |
CI budget: 10 minutes max. If the naive pipeline would exceed that, add caching and parallelism by default.
Output a complete, ready-to-commit pipeline config.
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: .node-version # or .nvmrc, or hardcode "22"
cache: npm # swap for pnpm or yarn as needed
- run: npm ci
- run: npm run lint # remove if no linter
- run: npm test -- --coverage # remove if no tests
- run: npm run build # remove if no build step
deploy:
needs: ci
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
# Add deploy step here ā see relay-deploy for the full deployment config
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: astral-sh/setup-uv@f0ec1fc3b38f5e7cd731bb6ce540c5af426746bb # v5
with:
enable-cache: true # caches .venv keyed to uv.lock
- run: uv sync --frozen
- run: uv run ruff check . # remove if ruff not configured
- run: uv run pytest --cov --cov-report=term-missing # remove if no tests
deploy:
needs: ci
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
# Add deploy step here ā see relay-deploy for the full deployment config
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
with:
go-version-file: go.mod
cache: true # caches Go module cache keyed to go.sum
- run: go vet ./...
- run: go test -race -coverprofile=coverage.out ./...
- run: go build ./...
deploy:
needs: ci
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
# Add deploy step here ā see relay-deploy for the full deployment config
- uses: google-github-actions/auth@6fc4af4b145ae7821d527454aa9bd537d1f2dc5f # v2
with:
credentials_json: ${{ secrets.GCP_SA_KEY }}
# Secret to configure: GCP_SA_KEY ā base64-encoded service account JSON
# Required roles: roles/run.admin, roles/storage.admin, roles/iam.serviceAccountUser
- uses: google-github-actions/setup-gcloud@6189d56e4096ee891640bb02ac264be376592d6a # v2
- name: Build and push image
run: |
gcloud auth configure-docker ${{ env.REGION }}-docker.pkg.dev --quiet
docker build -t ${{ env.REGION }}-docker.pkg.dev/${{ env.PROJECT_ID }}/${{ env.SERVICE }}:${{ github.sha }} .
docker push ${{ env.REGION }}-docker.pkg.dev/${{ env.PROJECT_ID }}/${{ env.SERVICE }}:${{ github.sha }}
- name: Deploy to Cloud Run
run: |
gcloud run deploy ${{ env.SERVICE }} \
--image ${{ env.REGION }}-docker.pkg.dev/${{ env.PROJECT_ID }}/${{ env.SERVICE }}:${{ github.sha }} \
--region ${{ env.REGION }} \
--platform managed \
--quiet
env:
PROJECT_ID: your-project-id # configure this
REGION: us-central1 # configure this
SERVICE: your-service-name # configure this
- uses: superfly/flyctl-actions/setup-flyctl@fc7b7fafba7d2e9c8b03b8a90b9d8ea3d9b3f9e1 # master
- run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
# Secret to configure: FLY_API_TOKEN ā from `flyctl auth token`
Pick the right cache key for the stack ā already included in the templates above. General rule:
package-lock.json or pnpm-lock.yaml or yarn.lockenable-cache: true in setup-uv ā keyed to uv.lock automaticallycache: true in setup-go ā keyed to go.sum automaticallycache-from: type=gha and cache-to: type=gha,mode=max with docker/build-push-action~/.cargo/registry, ~/.cargo/git, target/ keyed to Cargo.lockOutput a checklist of every secret the pipeline needs. Never hardcode values ā only placeholders.
Format:
Secrets to configure in GitHub ā Settings ā Secrets and variables ā Actions:
ā” GCP_SA_KEY ā base64-encoded GCP service account JSON
roles needed: roles/run.admin, roles/iam.serviceAccountUser
ā” FLY_API_TOKEN ā from `flyctl auth token`
ā” DATABASE_URL ā production database connection string
Write the pipeline file directly:
.github/workflows/ci.yml.gitlab-ci.ymlcloudbuild.yamlThen output a summary:
āā Pipeline written āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā ā
ā File: .github/workflows/ci.yml ā
ā Trigger: push to main, pull_request to main ā
ā Stages: install ā lint ā test ā build ā deploy ā
ā Est. time: ~4 min (cold), ~2 min (cached) ā
ā ā
ā Secrets to configure (3): ā
ā ā” GCP_SA_KEY ā
ā ā” DATABASE_URL ā
ā ā” [any others] ā
ā ā
ā First deploy: merge a commit to main ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
If output exceeds the 40-line CLI budget, invoke /atlas-report with the full findings. The HTML report is the output. CLI is the receipt ā box header, one-line verdict, top 3 findings, and the report path. Never dump analysis to CLI.