{"id":51100769,"url":"https://github.com/unknwon/kargo-tui","last_synced_at":"2026-06-24T10:30:40.453Z","repository":{"id":356968314,"uuid":"1227639093","full_name":"unknwon/kargo-tui","owner":"unknwon","description":"The missing Kargo console for sane operators at scale","archived":false,"fork":false,"pushed_at":"2026-06-15T20:15:23.000Z","size":1098,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-15T22:07:53.825Z","etag":null,"topics":["bubbletea","go","kargo","tui"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/unknwon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"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":"2026-05-03T00:41:41.000Z","updated_at":"2026-06-15T20:15:16.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/unknwon/kargo-tui","commit_stats":null,"previous_names":["unknwon/kargo-tui"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/unknwon/kargo-tui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unknwon%2Fkargo-tui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unknwon%2Fkargo-tui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unknwon%2Fkargo-tui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unknwon%2Fkargo-tui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/unknwon","download_url":"https://codeload.github.com/unknwon/kargo-tui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unknwon%2Fkargo-tui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34726591,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-24T02:00:07.484Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["bubbletea","go","kargo","tui"],"created_at":"2026-06-24T10:30:39.572Z","updated_at":"2026-06-24T10:30:40.449Z","avatar_url":"https://github.com/unknwon.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"![kargo-tui](assets/banner.png)\n\nKargo is nice, Kargo is cute, Kargo's UI works like crap,  Kargo's CLI won't even start. Don't ask me to reproduce, don't ask me to report. I got no energy talking to void.\n\nHere it is, the missing Kargo console for operating with hundreds of stages. Entirely vibe-coded, use at your own risk. Themed by [Pierre themes](https://diffs.com/theme).\n\n## Demo\n\n![kargo-tui demo graph](https://github.com/user-attachments/assets/5d3d313f-5d61-4785-8557-f9c8a1143ae2)\n\n\u003cdetails\u003e\u003csummary\u003eDemo video\u003c/summary\u003e\n  \nhttps://github.com/user-attachments/assets/2be76079-b716-45ca-a4ab-a6c02d897359\n\n\u003c/details\u003e\n\n## Installation\n\n```zsh\ngo install unknwon.dev/kargo-tui/cmd/kargo-tui@latest\n```\n\nOr download [archives built from the latest `main`](https://github.com/unknwon/kargo-tui/releases/tag/latest-commit-build).\n\n## Authentication\n\n`kargo-tui` authenticates against a Kargo API server using the same OIDC SSO (PKCE auth-code) flow as `kargo login --sso`. Credentials are saved as named \"contexts\" in the kargo-tui config file.\n\n### First-run prompt\n\nIf no context is configured, launching `kargo-tui` prints `Kargo API URL:` and reads the URL from stdin, then opens your browser to complete SSO. The resulting context is saved and set as current, so subsequent launches are non-interactive.\n\nYou can also add a new context from inside the TUI via the context switcher, which runs the same SSO flow.\n\n### Logging in manually\n\nTo log in (or add another context) without going through the first-run prompt:\n\n```zsh\nkargo-tui auth login \u003curl\u003e\n```\n\nUseful flags:\n\n- `--name \u003cctx-name\u003e` — local name for this context (default: derived from the URL host)\n- `-p, --project \u003cproject\u003e` — default project for this context\n- `--callback-port \u003cport\u003e` — port for the OIDC callback listener (`0` picks a free port)\n- `--insecure-skip-tls-verify` — skip TLS verification against the Kargo server\n- `--no-make-current` — don't switch the active context to the one being created\n\nExample:\n\n```zsh\nkargo-tui auth login https://kargo.example.com --name prod -p my-project\n```\n\n### Managing contexts\n\n```zsh\nkargo-tui contexts list           # show all configured contexts (* marks current)\nkargo-tui contexts use \u003cname\u003e     # switch active context\nkargo-tui auth logout \u003cname\u003e      # remove a stored context\nkargo-tui --context \u003cname\u003e        # one-off override for a single launch\n```\n\n## Local development\n\nThis project uses [moon](https://moonrepo.dev/) as its task runner. Install it with Homebrew:\n\n```zsh\nbrew install moon\n```\n\nCommon tasks:\n\n```zsh\nmoon run :install       # Build and install the kargo-tui binary to $GOBIN.\nmoon run :lint          # Tidy Go modules and run golangci-lint.\nmoon run :test          # Run the test suite.\nmoon run :build         # Compile all packages.\nmoon run :mock-server   # Run the local mock Kargo API server (see Demo above).\n```\n\nAfter `moon run :install`, launch the TUI directly with `kargo-tui`.\n\n## License\n\nThis project is under the MIT License. See the [LICENSE](LICENSE) file for the full license text.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funknwon%2Fkargo-tui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funknwon%2Fkargo-tui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funknwon%2Fkargo-tui/lists"}