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 skills/demondamon/agenticx/agenticx-deployernpx skills add DemonDamon/AgenticX --skill agenticx-deployergit clone --depth 1 https://github.com/DemonDamon/AgenticXWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/demondamon/agenticx/agenticx-deployer)<a href="https://agentmods.dev/skills/demondamon/agenticx/agenticx-deployer"><img src="https://agentmods.dev/badge/skills/demondamon/agenticx/agenticx-deployer.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00069 | $0.00911 |
| Opus 5 | $0.00034 | $0.00456 |
| Sonnet 5 | $0.00014 | $0.00182 |
| Haiku 4.5 | $0.00007 | $0.00091 |
Grade A, and why
agenticx-deployer scanned grade A with 0 findings 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 today.
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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
Copies of this mod
1 near-identical copy found in the catalogue:
- agenticx-deployer — 100% identical, 2 lines differ
How it starts
The opening of the file, as written. The whole thing — 158 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AgenticX Deployer
Guide for taking AgenticX agents from development to production.
Deployment Options
| Method | Best For | Command |
|---|---|---|
| API Server | Quick deployment, development | agx serve |
| Docker | Single-node, reproducible | agx deploy docker |
| Kubernetes | Multi-node, auto-scaling | agx deploy k8s |
| Volcengine | Cloud-native, managed | agx volcengine deploy |
API Server
Start Server
# Default (0.0.0.0:8000)
agx serve
# Custom port + host
agx serve --port 9000 --host 127.0.0.1
# Development with auto-reload
agx serve --port 8000 --reload
Requires: pip install "agenticx[server]"
Health Endpoints
| Endpoint | Purpose |
|---|---|
GET /health |
Comprehensive health check |
GET /health/live |
Liveness probe |
GET /health/ready |
Readiness probe |
POST /tasks/submit |
Submit a task |
Docker Deployment
Prepare & Build
# Prepare deployment package
agx deploy prepare --output ./deploy-package
# Build Docker image
agx deploy docker --tag my-agent:latest
# Run container
docker run -p 8000:8000 \
-e OPENAI_API_KEY="sk-..." \
my-agent:latest
Custom Dockerfile
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8000
CMD ["agx", "serve", "--port", "8000"]
Kubernetes Deployment
# Generate K8s manifests
agx deploy k8s --output ./k8s-manifests
# Apply to cluster
kubectl apply -f ./k8s-manifests/
Generated manifests include:
- Deployment with health probes
- Service (ClusterIP)
- ConfigMap for non-sensitive config
- Secret template for API keys
- HPA for auto-scaling
Volcengine AgentKit
Cloud-native deployment on Volcengine's managed platform.
Requires: pip install "agenticx[volcengine]"
Setup
# Initialize project
agx volcengine init
# Configure credentials
agx volcengine config \
--access-key YOUR_AK \
--secret-key YOUR_SK \
--region cn-beijing
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.
- today Changed a66a4eb09def
- 5d ago First seen · 158 lines · 69 tokens per session scan A b4bdf41a78fa
agenticx-deployer is a skill published in the GitHub repository DemonDamon/AgenticX (227 stars, last pushed today), licensed Apache-2.0. It adds 69 tokens to every session and 911 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
kubernetes
Kubernetes operations expert for kubectl, pods, deployments, and debugging.
kubernetes-specialist
Use when managing Kubernetes clusters, debugging Pods and workloads, designing Helm charts, reviewing manifests, or improving deployment, scaling, and observability practices.
kubernetes
Diagnose and fix Kubernetes pods, services, networking, storage, and rollout failures with kubectl. Safety-first, read-only by default.
kubernetes-best-practices
Provides production-ready Kubernetes manifest guidance including resource management, security, high availability, and configuration best practices. This skill should be used when working with Kubernetes YAML files, deployments, pods, services, or when users mention k8s, container orchestration, or cloud-native…
lumina-infra-deploy
Work on Lumina deployment and infrastructure assets. Use when editing terraform/, aws/, docker-compose.yml, DEPLOYMENT.md, ADVANCEDDEPLOYMENTS.md, agenticai/deployments/, or other files related to Docker, Terraform, AWS or Azure rollout behavior, environment wiring, and release automation.
odoo-docker-deployment
Production-ready Docker and docker-compose setup for Odoo with PostgreSQL, persistent volumes, environment-based configuration, and Nginx reverse proxy.