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 skills add julianobarbosa/claude-code-skills --skill argocdgit clone --depth 1 https://github.com/julianobarbosa/claude-code-skillsWrote 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/julianobarbosa/claude-code-skills/argocd)<a href="https://agentmods.dev/skills/julianobarbosa/claude-code-skills/argocd"><img src="https://agentmods.dev/badge/skills/julianobarbosa/claude-code-skills/argocd/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/julianobarbosa/claude-code-skills/argocd"><img src="https://agentmods.dev/badge/skills/julianobarbosa/claude-code-skills/argocd.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00000 | $0.03823 |
| Opus 5 | $0.00000 | $0.01912 |
| Sonnet 5 | $0.00000 | $0.00765 |
| Haiku 4.5 | $0.00000 | $0.00382 |
Grade C, and why
argocd scanned grade C with 2 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 9d 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.
Reaches for credential fileshighPrivilege escalation
SSH keys, cloud credentials, git-credentials, .npmrc, /etc/shadow: reading these is how a config file becomes a credential leak.
argocd repo add [email protected]:org/repo.git --ssh-private-key-path ~/.ssh/id_rsa Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
description: Complete ArgoCD CLI and REST API skill for GitOps automation. Use when working with ArgoCD for: (1) Managing Applications - create, sync, delete, rollback, get status, wait for health, view logs, (2) Applica How it starts
The opening of the file, as written. The whole thing — 541 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ArgoCD Skill
Complete ArgoCD operations via REST API and CLI with bearer token authentication.
Authentication Setup
Generate and use bearer tokens for all operations:
# Generate token (requires existing login)
argocd login $ARGOCD_SERVER --username admin --password $ARGOCD_PASSWORD
ARGOCD_TOKEN=$(argocd account generate-token)
# Or generate for service account
ARGOCD_TOKEN=$(argocd account generate-token --account cibot --expires-in 7d)
# Export for subsequent commands
export ARGOCD_SERVER="argocd.example.com"
export ARGOCD_AUTH_TOKEN="$ARGOCD_TOKEN"
Service account setup (in argocd-cm ConfigMap):
data:
accounts.cibot: apiKey,login
accounts.cibot.enabled: "true"
REST API Pattern
All API calls use this pattern:
curl -s -H "Authorization: Bearer $ARGOCD_AUTH_TOKEN" \
-H "Content-Type: application/json" \
"https://$ARGOCD_SERVER/api/v1/{endpoint}"
Use the helper script at scripts/argocd-api.sh for common operations.
Quick Reference
Applications
# List all applications
argocd app list -o json
# Create application
argocd app create myapp \
--repo https://github.com/org/repo.git \
--path manifests \
--dest-server https://kubernetes.default.svc \
--dest-namespace default \
--sync-policy automated \
--auto-prune \
--self-heal
# Sync with options
argocd app sync myapp --prune --force --timeout 300
# Sync specific resources only
argocd app sync myapp --resource apps:Deployment:nginx
# Dry run
argocd app sync myapp --dry-run
# Wait for health
argocd app wait myapp --health --sync --timeout 300
# Get status
argocd app get myapp -o json | jq '{health: .status.health.status, sync: .status.sync.status}'
# Rollback
argocd app history myapp
argocd app rollback myapp 2
# Delete (cascade deletes resources)
argocd app delete myapp --cascade -y
# Terminate running operation
argocd app terminate-op myapp
ApplicationSets
# Create/update ApplicationSet
argocd appset create appset.yaml --upsert
# List
argocd appset list
# Get details
argocd appset get myappset -o yaml
# Delete
argocd appset delete myappset -y
What ships with it
19 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/api-reference.md 17 KB
- references/cli-reference.md 30 KB
- References/command-tools/ArgoCdCli.ts 12 KB runs code
- References/command-workflows/AppManage.md 4.7 KB
- References/command-workflows/AppSetManage.md 6.3 KB
- References/command-workflows/ClusterManage.md 5.6 KB
- References/command-workflows/Login.md 2.5 KB
- References/command-workflows/ProjectManage.md 8.1 KB
- References/command-workflows/RepoManage.md 6.1 KB
- References/command-workflows/Troubleshoot.md 8.0 KB
- References/review-tools/.gitkeep 61 B
- References/review-workflows/DiffManifests.md 1.9 KB
- References/review-workflows/ReviewApplication.md 1.4 KB
- References/review-workflows/ReviewResources.md 4.3 KB
- References/review-workflows/RollbackApp.md 3.5 KB
- References/review-workflows/TroubleshootSync.md 3.4 KB
- References/review.md 8.4 KB
- references/troubleshooting.md 8.9 KB
- scripts/argocd-api.sh 14 KB runs code
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.
- 9d ago First seen · 541 lines · 0 tokens per session scan C e84332a3ce02
argocd is a skill published in the GitHub repository julianobarbosa/claude-code-skills (10 stars, last pushed 14d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 3,823 tokens. A static security scan graded it C with 2 findings (reaches for credential files, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
atmos-hooks
Atmos hooks: lifecycle events, hook kinds, command/store/git/security hooks, step/steps hooks, when: conditions, scoping and overrides, toolchain integration, --skip-hooks, and Atmos Pro/local output.
atmos-modernization
Atmos Modernization: migrate deprecated or legacy Atmos patterns to current names, Native CI, Atmos Pro drift detection, dependencies.components, nametemplate, and declared secrets.
atmos-pro
Atmos Pro setup and workflows: settings.pro, GitHub OIDC, affected and inventory uploads, stack locks, pro commit, workflow dispatch, merge queues, and drift detection.
atmos-sbom
Atmos SBOM provenance: CycloneDX and SPDX generation from vendor and Terraform evidence, coverage diagnostics, NTIA validation, and native CI workflow-artifact publication.
atmos-version
Atmos Version Tracker: version tracks, lock files, managed external dependency versions, atmos version track commands, !version, file managers, update policy, pinning, and CI verification.
atmos-cache
Atmos caching: CI cache configuration and commands, GitHub Actions cache integration, Terraform registry cache mirror/list/prune/stats/trust, and cache modernization guidance.