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/opencue/cuecards/agenticx-deployernpx skills add opencue/cuecards --skill agenticx-deployergit clone --depth 1 https://github.com/opencue/cuecardsWrote 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/opencue/cuecards/agenticx-deployer)<a href="https://agentmods.dev/skills/opencue/cuecards/agenticx-deployer"><img src="https://agentmods.dev/badge/skills/opencue/cuecards/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 4d 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.
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.
This is a copy
100% identical to agenticx-deployer — 2 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
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.
- 4d ago First seen · 158 lines · 69 tokens per session scan A f84722710a91
agenticx-deployer is a skill published in the GitHub repository opencue/cuecards (5 stars, last pushed yesterday), licensed MIT. 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. It is 100% identical to agenticx-deployer, differing in 2 lines, and is treated as a copy.
Other skills, from other repositories
platform-build
Platform Developer: Stage 4 build task. Docker Compose setup, infra config, PR summary authoring, and Stage 4 gate writing for the platform workstream.
kubernetes
Kubernetes operations expert for kubectl, pods, deployments, and debugging.
agenticx-deployer
Guide for deploying AgenticX agents to production including Docker containerization, Kubernetes orchestration, Volcengine AgentKit cloud deployment, and API server setup. Use when the user wants to deploy agents, containerize applications, set up Kubernetes, configure cloud deployment, or run the AgenticX API server…
gcp-essentials
Use when running a small product on core Google Cloud via the gcloud CLI: a project, Cloud Run deploys, a locked-down Cloud Storage bucket, managed Cloud SQL, and least-privilege IAM wiring them together. NOT AWS (that is aws-essentials), NOT the CI pipeline that ships the image (that is deployment), NOT Postgres…
kubernetes
Diagnose and fix Kubernetes pods, services, networking, storage, and rollout failures with kubectl. Safety-first, read-only by default.
ring:creating-helm-charts
Creating Helm charts to Lerian conventions via ring:helm: standardized chart structure, full env-var coverage from .env.example, security defaults (runAsNonRoot, readOnlyRootFilesystem), ClusterIP-only services, and health probes; validates helm lint and template render. Use when creating, modifying, or reviewing a…