argocd
Installation
SKILL.md
Argo CD
Manage Argo CD applications, sync operations, and clusters via the REST API.
Environment Variables
ARGOCD_SERVER- Argo CD server URL (e.g.https://argocd.example.com)ARGOCD_TOKEN- Bearer token (generate viaargocd account generate-tokenor API)
List applications
curl -sk -H "Authorization: Bearer $ARGOCD_TOKEN" \
"$ARGOCD_SERVER/api/v1/applications" | jq '.items[] | {name: .metadata.name, status: .status.sync.status, health: .status.health.status, repo: .spec.source.repoURL}'