{"id":39151150,"url":"https://github.com/alexandrevilain/argo-cd-assistant","last_synced_at":"2026-01-17T21:40:07.882Z","repository":{"id":320719806,"uuid":"1083127262","full_name":"alexandrevilain/argo-cd-assistant","owner":"alexandrevilain","description":"An AI-powered assistant for Argo CD that analyzes, explains, and helps you debug your applications and resources right from the dashboard.","archived":false,"fork":false,"pushed_at":"2025-12-22T12:25:48.000Z","size":8527,"stargazers_count":6,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-23T07:41:20.233Z","etag":null,"topics":["ai","argocd","gitops","kubernetes","openai"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alexandrevilain.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-10-25T11:59:11.000Z","updated_at":"2025-12-21T18:58:05.000Z","dependencies_parsed_at":"2025-10-25T14:08:22.053Z","dependency_job_id":"319c3273-d3ce-4565-adb5-b098aa33f6c6","html_url":"https://github.com/alexandrevilain/argo-cd-assistant","commit_stats":null,"previous_names":["alexandrevilain/argo-cd-assistant"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/alexandrevilain/argo-cd-assistant","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexandrevilain%2Fargo-cd-assistant","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexandrevilain%2Fargo-cd-assistant/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexandrevilain%2Fargo-cd-assistant/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexandrevilain%2Fargo-cd-assistant/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alexandrevilain","download_url":"https://codeload.github.com/alexandrevilain/argo-cd-assistant/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexandrevilain%2Fargo-cd-assistant/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28518663,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T18:55:29.170Z","status":"ssl_error","status_checked_at":"2026-01-17T18:55:03.375Z","response_time":85,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","argocd","gitops","kubernetes","openai"],"created_at":"2026-01-17T21:40:07.776Z","updated_at":"2026-01-17T21:40:07.868Z","avatar_url":"https://github.com/alexandrevilain.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Argo CD Assistant\n\nAn AI-powered assistant for Argo CD that analyzes, explains, and helps you debug your applications and resources right from the dashboard.\n\n![Demo of ArgoCD assistant helping debug an application stuck in Progressing](assets/demo/demo.gif)\n\n## Features\n\n- 🤖 AI-powered chat interface integrated into the Argo CD UI\n- 🔍 Query and analyze your Argo CD applications and resources\n\n## Installation\n\n### Configure Argo CD\n\nEnable the proxy extension feature in Argo CD by adding the following entry to the `argocd-cmd-params-cm`:\n\n```yaml\nserver.enable.proxy.extension: 'true'\n```\n\nThen authorize the extension in the Argo CD API server and define permissions for the assistant account in the `argocd-rbac-cm`:\n\n```yaml\npolicy.csv: |\n  p, role:readonly, extensions, invoke, assistant, allow\n\n  p, role:assistant, applications, get, *, allow\n  p, role:assistant, applications, list, *, allow\n  p, role:assistant, applications, syncstatus, *, allow\n  p, role:assistant, applications, resource, *, allow\n  p, role:assistant, applications, logs, *, allow\n  p, role:assistant, applications, events, *, allow\n  p, role:assistant, accounts, get, assistant, allow\n\n  g, assistant, role:assistant\n```\n\nNext, configure the extension in the `argocd-cm` and create the assistant account:\n\n```yaml\naccounts.assistant: apiKey\nextension.config: |\n  extensions:\n    - name: assistant\n      backend:\n        connectionTimeout: 2s\n        keepAlive: 15s\n        idleConnectionTimeout: 60s\n        maxIdleConnections: 30\n        services:\n        - url: http://assistant.argocd:3000 # replace with your backend service URL\n```\n\nFinally, create an API token for the assistant account:\n\n```bash\nargocd account generate-token --account assistant\n```\n\n### Install the backend\n\n```bash\ngit clone https://github.com/alexandrevilain/argo-cd-assistant.git\ncd argo-cd-assistant\nkubectl create secret generic assistant \\\n  --from-literal=ARGOCD_API_TOKEN=assistant-api-token \\ # replace with the token generated above\n  --from-literal=OPENAI_API_KEY=your-api-key \\\n  --from-literal=OPENAI_BASE_URL=\"https://openrouter.ai/api/v1\" \\ # optional, default is https://api.openai.com/v1.\n  --from-literal=MODEL=\"anthropic/claude-haiku-4.5\" \\ # optional, default is gpt-5-mini\n  -n argocd\nkubectl apply -f deploy/manifests\n```\n\nNote: A Helm chart will be available soon.\n\n### Install the UI extension\n\nInstall the UI extension by mounting the React component in the Argo CD API server. You can automate this using the `argocd-extension-installer`. This approach runs an init container that downloads, extracts, and places the files in the correct location.\n\nThe YAML below shows an example Kustomize patch to install this UI extension:\n\n```yaml\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n  name: argocd-server\nspec:\n  template:\n    spec:\n      initContainers:\n        - name: extension-assistant\n          image: quay.io/argoprojlabs/argocd-extension-installer:v0.0.8\n          env:\n            - name: EXTENSION_URL\n              value: https://github.com/alexandrevilain/argo-cd-assistant/releases/download/v0.0.2/extension.tar\n          volumeMounts:\n            - name: extensions\n              mountPath: /tmp/extensions/\n          securityContext:\n            runAsUser: 1000\n            allowPrivilegeEscalation: false\n      containers:\n        - name: argocd-server\n          volumeMounts:\n            - name: extensions\n              mountPath: /tmp/extensions/\n      volumes:\n        - name: extensions\n          emptyDir: {}\n```\n\n## Development\n\nFor local development setup and contribution guidelines, see [`DEVELOPMENT.md`](DEVELOPMENT.md).\n\n## Contributing\n\nContributions are welcome. Please see [`DEVELOPMENT.md`](DEVELOPMENT.md) for development setup and guidelines.\n\n## Support\n\nFor issues and questions, please open an issue on the GitHub repository (https://github.com/alexandrevilain/argo-cd-assistant/issues).\n\n## License\n\nThis project is licensed under the Apache License 2.0 - see the [`LICENSE`](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexandrevilain%2Fargo-cd-assistant","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falexandrevilain%2Fargo-cd-assistant","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexandrevilain%2Fargo-cd-assistant/lists"}