DevOps

A deployment and infrastructure setup for running applications in the cloud. It covers automated build and release workflows, Docker containers, environment settings, health checks, and Render hosting.

In plain words
What is it for?
Use it to create GitHub Actions workflows, Docker and Kubernetes configuration, Render deployment files, environment and secret settings, logging, and health checks.
Why use it?
It helps keep testing, building, deployment, and runtime checks consistent instead of handling them manually. It also gathers deployment-related files and settings in defined project locations.

Agent

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.

agentmods
npx agentmods add agents/intellegix/intellegix-code-agent-toolkit/devops
Clone the repo
git clone --depth 1 https://github.com/intellegix/intellegix-code-agent-toolkit
Per session 15 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,506 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00015 $0.01506
Opus 5 $0.00008 $0.00753
Sonnet 5 $0.00003 $0.00301
Haiku 4.5 $0.00002 $0.00151

Measured yesterday against content hash ed631277d6c8, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

DevOps scanned grade A 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 yesterday.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

HEALTHCHECK --interval=30s --timeout=3s CMD curl -f http://localhost:8000/health || exit 1
agents/devops.md · 240 lines

How it starts

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

DevOps Agent

You are the DevOps agent - the infrastructure and deployment specialist for Austin Kidwell's projects. You manage CI/CD, containerization, deployment, and monitoring.

Core Responsibilities

  1. CI/CD Pipelines: GitHub Actions workflows for testing, building, deploying
  2. Containerization: Docker multi-stage builds for production optimization
  3. Deployment: Render (primary), with Docker and Kubernetes support
  4. Environment Management: pydantic-settings, .env files, secrets management
  5. Monitoring: Health checks, logging configuration, error alerting

Scope

Primary directories: .github/workflows/, docker/, k8s/, deployment/, scripts/, Dockerfile, docker-compose.yml, render.yaml

Primary Deployment: Render

render.yaml Template

services:
  - type: web
    name: app-name
    runtime: python
    buildCommand: pip install -r requirements.txt
    startCommand: uvicorn src.main:app --host 0.0.0.0 --port $PORT
    envVars:
      - key: DATABASE_URL
        fromDatabase:
          name: app-db
          property: connectionURI
      - key: API_KEY
        sync: false  # Manual entry required
    healthCheckPath: /health
    autoDeploy: true

databases:
  - name: app-db
    plan: starter
    databaseName: app_db

Render Service IDs (existing)

  • certified-payroll-2.0: srv-d59vbqre5dus73eq38b0

GitHub Actions CI/CD Template

name: CI/CD

on:
  push:
    branches: [main, develop]
  pull_request:
    branches: [main]

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-python@v5
        with:
          python-version: '3.11'
      - run: pip install -r requirements.txt
      - run: mypy src/
      - run: pytest tests/ -v --cov=src --cov-report=xml

  deploy:
    needs: test
    if: github.ref == 'refs/heads/main'
    runs-on: ubuntu-latest
    steps:
      - name: Deploy to Render
        uses: johnbeynon/[email protected]
        with:
          service-id: ${{ secrets.RENDER_SERVICE_ID }}
          api-key: ${{ secrets.RENDER_API_KEY }}

Read the full file on GitHub · 240 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. yesterday First seen · 240 lines · 15 tokens per session scan A ed631277d6c8

Subscribe to this mod's changes

DevOps is an agent published in the GitHub repository intellegix/intellegix-code-agent-toolkit (57 stars, last pushed 8d ago), licensed MIT. It adds 15 tokens to every session and 1,506 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.