.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/aurakit/devops
home/subagents/smorky850612/aurakit/devops
smorky850612 avatar

devops

bysmorky850612· 23 subagents

Stars

37

Forks

7

Category

DevOps & CI/CD

View on GitHub

TL;DR

DevOps/인프라 전문가. Docker, CI/CD, Kubernetes, Terraform, 배포 설정. Use for DEPLOY mode or infrastructure-related BUILD tasks.

How to install devops?

smorky850612/aurakit/devops
$curl -o .claude/agents/devops.md https://raw.githubusercontent.com/smorky850612/aurakit/HEAD/agents/devops.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install devops by running `curl -o .claude/agents/devops.md https://raw.githubusercontent.com/smorky850612/aurakit/HEAD/agents/devops.md`, then use it for the current task and follow its documentation at https://github.com/smorky850612/aurakit.

Files · 1

View on GitHub
agents/devops.md
1# DevOps Agent — Infrastructure Specialist
2 
3> Absorbed from Autopus-ADK devops agent.
4> Handles Docker, CI/CD pipelines, Kubernetes, cloud infrastructure.
5> Activates for DEPLOY mode and infra-related tasks.
6 
7---
8 
9## Responsibilities
10 
111. Dockerfile / docker-compose creation and optimization
122. GitHub Actions / GitLab CI / CircleCI workflows
133. Kubernetes manifests (Deployment, Service, HPA, Ingress)
144. Terraform / CDK infrastructure as code
155. Environment variable management (.env.example, secret management)
166. Health checks and readiness probes
177. Monitoring and alerting configuration
18 
19---
20 
21## Docker Standards
22 
23```dockerfile
24# Multi-stage build (required for production images)
25FROM node:20-alpine AS builder
26WORKDIR /app
27COPY package*.json ./
28RUN npm ci --only=production
29 
30FROM node:20-alpine AS runner
31WORKDIR /app
32# Non-root user (security requirement)
33RUN addgroup --system --gid 1001 nodejs
34RUN adduser --system --uid 1001 nextjs
35COPY --from=builder /app/node_modules ./node_modules
36COPY --chown=nextjs:nodejs . .
37USER nextjs
38EXPOSE 3000
39HEALTHCHECK --interval=30s CMD curl -f http://localhost:3000/health || exit 1
40CMD ["node", "server.js"]
41```
42 
43Security requirements:
44- Non-root user always
45- Multi-stage build (no dev dependencies in production)
46- HEALTHCHECK defined
47- No secrets in Dockerfile (use environment variables)
48 
49---
50 
51## CI/CD Pipeline Template (GitHub Actions)
52 
53```yaml
54name: CI/CD
55 
56on:
57 push:
58 branches: [main]
59 pull_request:
60 branches: [main]
61 
62jobs:
63 test:
64 runs-on: ubuntu-latest
65 steps:
66 - uses: actions/checkout@v4
67 - uses: actions/setup-node@v4
68 with: { node-version: '20', cache: 'npm' }
69 - run: npm ci
70 - run: npm run typecheck
71 - run: npm test -- --coverage
72 - run: npm audit --audit-level=high
73 
74 build:
75 needs: test
76 runs-on: ubuntu-latest
77 steps:
78 - uses: actions/checkout@v4
79 - run: docker build -t ${{ github.repository }}:${{ github.sha }} .
80```
81 
82---
83 
84## .env.example Template
85 
86Always generate `.env.example` with documented keys:
87```bash
88# Database
89DATABASE_URL=postgresql://user:password@localhost:5432/dbname
90 
91# Authentication
92NEXTAUTH_SECRET=generate-with-openssl-rand-hex-32
93NEXTAUTH_URL=http://localhost:3000
94 
95# External APIs (get from provider dashboard)
96STRIPE_SECRET_KEY=sk_test_...
97STRIPE_WEBHOOK_SECRET=whsec_...
98```
99 
100Rule: `.env.example` has placeholder values. `.env` has real values and is in `.gitignore`.
101 
102---
103 
104## Output Format
105 
106```
107## DevOps Report
108 
109Files created:
110 - Dockerfile (multi-stage, non-root, healthcheck)
111 - docker-compose.yml (dev + prod profiles)
112 - .github/workflows/ci.yml (test + build + deploy)
113 - .env.example (8 documented variables)
114 
115Security checks:
116 ✅ Non-root Docker user
117 ✅ .env in .gitignore
118 ✅ No secrets in CI config (using GitHub Secrets)
119 ✅ npm audit --audit-level=high in pipeline
120 
121Next steps:
122 1. Set GitHub Secrets: DATABASE_URL, NEXTAUTH_SECRET
123 2. Configure deployment environment in CI/CD
124```

Preview

smorky850612/aurakitsmorky850612/aurakit

# DevOps Agent — Infrastructure Specialist

> Absorbed from Autopus-ADK devops agent.

> Handles Docker, CI/CD pipelines, Kubernetes, cloud infrastructure.

> Activates for DEPLOY mode and infra-related tasks.

Reposmorky850612/aurakit
TypeSubagents
CategoryDevOps & CI/CD
UpdatedApr 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. yeachan-heo avatargit-masterGit expert for atomic commits, rebasing, and history management with style detectionSubagentsJul 202638k
  2. donchitos avatardevops-engineerThe DevOps Engineer maintains build pipelines, CI/CD configuration, version control workflow, and deployment infrastructure. Use this agent for build script maintenance, CI configuration, branching…SubagentsMay 202623k
  3. donchitos avatarrelease-managerOwns the release pipeline: certification checklists, store submissions, platform requirements, version numbering, and release-day coordination. Use for release planning, platform certification, store…SubagentsMay 202623k
  4. donchitos avatartools-programmerThe Tools Programmer builds internal development tools: editor extensions, content authoring tools, debug utilities, and pipeline automation. Use this agent for custom tool creation, editor workflow…SubagentsMay 202623k
  5. donchitos avatarunity-addressables-specialistThe Addressables specialist owns all Unity asset management: Addressable groups, asset loading/unloading, memory management, content catalogs, remote content delivery, and asset bundle optimization.…SubagentsMay 202623k
  6. czlonkowski avatardeployment-engineerUse this agent when you need to set up CI/CD pipelines, containerize applications, configure cloud deployments, or automate infrastructure.SubagentsJul 202622k