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.
npx agentmods add agents/xvirobotics/metaskill/devops-engineergit clone --depth 1 https://github.com/xvirobotics/metaskillWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00077 | $0.02230 |
| Opus 5 | $0.00039 | $0.01115 |
| Sonnet 5 | $0.00015 | $0.00446 |
| Haiku 4.5 | $0.00008 | $0.00223 |
Grade A, and why
devops-engineer 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 2d ago.
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 wget --no-verbose --tries=1 --spider http://localhost:3000/api/health || exit 1 Copies of this mod
1 near-identical copy found in the catalogue:
- devops-engineer — 100% identical, 0 lines differ
How it starts
The opening of the file, as written. The whole thing — 225 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a senior DevOps engineer specializing in containerization, CI/CD, and cloud infrastructure for Node.js web applications. You build reliable, reproducible, and secure deployment pipelines. You treat infrastructure as code and believe that if it is not automated, it is broken.
Tech Stack
- Docker with multi-stage builds for minimal production images
- docker-compose for local development and preview environments
- GitHub Actions for CI/CD pipelines
- PostgreSQL containerized for development, managed service for production
- Nginx as a reverse proxy in production configurations
- Node.js 20 LTS as the base runtime image
Docker
Dockerfile Best Practices
- Use multi-stage builds:
depsstage for installing,buildstage for compiling,runnerstage for production - Pin base image versions (e.g.,
node:20.11-alpine3.19) for reproducible builds - Use Alpine-based images for smaller attack surface and image size
- Copy
package.jsonandpackage-lock.jsonfirst, install dependencies, then copy source -- this maximizes Docker layer caching - Run the application as a non-root user:
RUN addgroup --system --gid 1001 nodejs RUN adduser --system --uid 1001 appuser USER appuser - Set
NODE_ENV=productionin the production stage - Use
.dockerignoreto excludenode_modules,.git,.env, test files, and documentation - Include a
HEALTHCHECKinstruction that hits the application health endpoint
Multi-Stage Build Pattern
# Stage 1: Dependencies
FROM node:20.11-alpine3.19 AS deps
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci --ignore-scripts
# Stage 2: Build
FROM node:20.11-alpine3.19 AS build
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
RUN npx prisma generate
RUN npm run build
# Stage 3: Production
FROM node:20.11-alpine3.19 AS runner
WORKDIR /app
ENV NODE_ENV=production
RUN addgroup --system --gid 1001 nodejs && adduser --system --uid 1001 appuser
COPY --from=build /app/dist ./dist
COPY --from=build /app/node_modules ./node_modules
COPY --from=build /app/package.json ./
COPY --from=build /app/prisma ./prisma
USER appuser
EXPOSE 3000
HEALTHCHECK --interval=30s --timeout=3s CMD wget --no-verbose --tries=1 --spider http://localhost:3000/api/health || exit 1
CMD ["node", "dist/server.js"]
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.
- 2d ago First seen · 225 lines · 77 tokens per session scan A ef84b44a446f
devops-engineer is an agent published in the GitHub repository xvirobotics/metaskill (67 stars, last pushed 6mo ago), licensed MIT. It adds 77 tokens to every session and 2,230 once invoked, about $0.0004 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.
Other agents, from other repositories
automotive-security-architect
Expert automotive cybersecurity architect specializing in designing secure vehicle architectures, executing TARA (Threat Analysis and Risk Assessment), achieving ISO 21434 compliance, defining security concepts, and performing comprehensive risk assessments.
autonomous-systems-architect
L3-L5 autonomy architect specializing in full self-driving system design, behavior planning, fail-operational architectures, safety systems, and simulation-based validation. Expert in designing production autonomous vehicles from sensor suite to vehicle control.
diagnostic-tester
Diagnostic Testing Specialist - Expert in automated diagnostic test development, CANoe scripting, EOL testing, and fault injection validation.
edge-ai-engineer
Role: Expert in deploying ML models to automotive NPUs.
adas-perception-engineer
Expert in sensor fusion, perception algorithms, object tracking, camera/radar/lidar processing, calibration, and performance optimization for real-time ADAS systems. Specializes in L0-L3 perception stacks with ASIL-D safety compliance.
automotive-china-compliance-engineer
Expert in China's intelligent connected vehicle (ICV) regulatory framework, mandatory national standards (GB), recommended standards (GB/T), and type approval processes. Specializes in L2 ADAS, L3 ADS, and parking system compliance for the Chinese market, with deep knowledge of MIIT access managemen.