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 m3taz-ahmed/ai-globals --skill gitops-lordgit clone --depth 1 https://github.com/m3taz-ahmed/ai-globalsWrote 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/m3taz-ahmed/ai-globals/gitops-lord)<a href="https://agentmods.dev/skills/m3taz-ahmed/ai-globals/gitops-lord"><img src="https://agentmods.dev/badge/skills/m3taz-ahmed/ai-globals/gitops-lord/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/m3taz-ahmed/ai-globals/gitops-lord"><img src="https://agentmods.dev/badge/skills/m3taz-ahmed/ai-globals/gitops-lord.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.00041 | $0.01163 |
| Opus 5 | $0.00020 | $0.00581 |
| Sonnet 5 | $0.00008 | $0.00233 |
| Haiku 4.5 | $0.00004 | $0.00116 |
Grade A, and why
gitops-lord 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 3d 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.
How it starts
The opening of the file, as written. The whole thing — 71 lines — stays where its author put it; the contents beside it link to each section on GitHub.
GitOps Lord
[OBJ] Implement GitOps continuous delivery for Kubernetes using ArgoCD 3.5, Helm 4, and progressive delivery patterns.
Problem
Manual kubectl apply causes drift, lacks audit trail, and prevents rollback. GitOps makes Git the single source of truth — every deployment is a commit, every change is reviewable, every rollback is git revert. ArgoCD 3.5 (Aug 2026) adds impersonation, Source Hydrator, and ApplicationSet preview apps.
Rules
- [REQ] Git is the single source of truth. All manifests (Helm charts, Kustomize, raw YAML) live in Git. No
kubectl applyoutside of emergency break-glass procedures. - [REQ] Use ArgoCD 3.5+
ApplicationSetfor multi-environment deployments. Matrix generators (git × cluster) auto-generate apps per environment. Avoid manualApplicationcreation. - [REQ] Use Helm 4 charts (v3 is maintenance mode).
helm templatein CI for validation,helm install --dry-runbefore deploy. Neverhelm installwithout--atomic --timeout 5m. - [REQ] Use Kustomize for environment overlays.
base/+overlays/dev|staging|prod/. Patch images, replicas, env vars per environment. Avoid duplicating manifests. - [REQ] Enable
selfHeal: trueon production apps. Manualkubectl editcauses drift — ArgoCD auto-reverts to Git state. - [REQ] Enable
prune: trueto remove resources deleted from Git. Without prune, deleted manifests leave orphaned resources. - [REQ] Use ArgoCD impersonation (beta) for RBAC. Service accounts per team, least-privilege
AppProjectrestrictions (repos, clusters, namespaces). - [REQ] Use Source Hydrator (beta) for dry-source integrity verification. Validates manifests before sync, prevents malicious PRs from deploying.
- [REQ] Use Argo Rollouts for progressive delivery. Canary (5% → 25% → 50% → 100%) or Blue-Green. Auto-rollback on SLO violation (error rate, latency).
- [REQ] Use
syncPolicy.automatedfor non-prod, manual sync for prod. Prod requires explicitargocd app syncafter PR merge + review. - [REQ] Use
argocd app diffbefore sync to review changes. Useargocd app sync --dry-runto validate. - [REQ] Secrets management. Use Sealed Secrets, External Secrets Operator, or SOPS — never commit plaintext secrets to Git. External Secrets syncs from Vault/AWS Secrets Manager.
- [REQ] Multi-cluster via ArgoCD. Register clusters with
argocd cluster add. Usedestinationsin ApplicationSet for cluster routing. Single ArgoCD instance manages multiple clusters. - [REQ] Use
AppProjectfor isolation. Each team gets anAppProjectwith restrictedsourceRepos,destinations(namespaces), andclusterResourceWhitelist. - [PROHIBIT] Never disable
selfHealin production — manual edits cause drift. - [PROHIBIT] Never use
--forcesync without understanding — deletes and recreates resources (downtime). - [PROHIBIT] Never store secrets in Git plaintext — use Sealed Secrets or External Secrets Operator.
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.
- 3d ago First seen · 71 lines · 41 tokens per session scan A 9ff7b74dd140
gitops-lord is a skill published in the GitHub repository m3taz-ahmed/ai-globals (5 stars, last pushed yesterday), licensed MIT. It adds 41 tokens to every session and 1,163 once invoked, about $0.0002 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-09-09.
Other skills, from other repositories
baby-sit
Monitor a GitHub pull request until CI is green, diagnose failures, and rerun only evidence-backed flaky GitHub Actions jobs.
chinese-git-workflow
A reference for configuring Git with Chinese code-hosting services such as Gitee, Coding.net, GitLab China, and CNB, including SSH, HTTPS, credentials, CI, and repository mirroring.
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-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.
pr-watch
Local PR watcher. Monitors CI status, automatically fixes failing checks by reading failure logs and applying targeted fixes, then optionally merges when all checks pass. Local CLI analog to Claude Code's cloud auto-fix feature.
start-temps-cluster
Start (or restart) a local multi-node Temps cluster using Docker-in-Docker — one control plane + 3 worker nodes, each a privileged DinD container running its own dockerd + temps agent, wired with the real multi-host overlay (VXLAN, computecidr allocation) via tools/dev-cluster/ in whichever checkout/worktree you run…