{"id":48213301,"url":"https://github.com/devnullvoid/cloudflare-tui","last_synced_at":"2026-04-04T18:53:11.915Z","repository":{"id":342046822,"uuid":"1172291113","full_name":"devnullvoid/cloudflare-tui","owner":"devnullvoid","description":"A fast, terminal-based user interface for managing Cloudflare DNS records","archived":false,"fork":false,"pushed_at":"2026-03-04T13:37:42.000Z","size":75,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-04T20:58:32.851Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/devnullvoid.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":"FUNDING.yml","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},"funding":{"github":"devnullvoid","buy_me_a_coffee":"devnullvoid","ko_fi":"devnullvoid"}},"created_at":"2026-03-04T06:23:12.000Z","updated_at":"2026-03-04T14:52:52.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/devnullvoid/cloudflare-tui","commit_stats":null,"previous_names":["devnullvoid/cloudflare-tui"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/devnullvoid/cloudflare-tui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devnullvoid%2Fcloudflare-tui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devnullvoid%2Fcloudflare-tui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devnullvoid%2Fcloudflare-tui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devnullvoid%2Fcloudflare-tui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devnullvoid","download_url":"https://codeload.github.com/devnullvoid/cloudflare-tui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devnullvoid%2Fcloudflare-tui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31409470,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"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":[],"created_at":"2026-04-04T18:53:11.287Z","updated_at":"2026-04-04T18:53:11.908Z","avatar_url":"https://github.com/devnullvoid.png","language":"Go","funding_links":["https://github.com/sponsors/devnullvoid","https://buymeacoffee.com/devnullvoid","https://ko-fi.com/devnullvoid"],"categories":[],"sub_categories":[],"readme":"# cftui: Cloudflare TUI\n\n\u003e I was tired of logging in to the cloudflare dashboard every time I needed to edit DNS entries, using terraform was overkill. Avoid context switching away from the terminal. Thus: cftui came into being.\n\n`cftui` is a fast, terminal-based user interface for managing your Cloudflare DNS records. Built with Go and the [Bubble Tea](https://github.com/charmbracelet/bubbletea) framework.\n\n## Features\n\n- **Zone Management**: List, add, and delete zones. View nameservers and verification keys.\n- **DNS Management**: List, add, edit, and delete DNS records (A, CNAME, TXT, MX, SRV, CAA).\n- **Interactive Type Picker**: Searchable list for selecting DNS record types.\n- **Async Operations**: Non-blocking API calls ensure the UI stays responsive.\n- **Safe Operations**: Multi-stage validation and confirmation prompts.\n- **Themable**: 8 built-in color schemes.\n- **Headless Mode**: Scriptable CLI commands for automation.\n\n## Installation\n\n### From Releases\n\nDownload the latest pre-compiled binary for your platform from the [Releases](https://github.com/devnullvoid/cloudflare-tui/releases) page.\n\n### Go Install\n\n```bash\ngo install github.com/devnullvoid/cloudflare-tui/cmd/cftui@latest\n```\n\n### AUR (Arch Linux)\n\n```bash\nparu -S cftui-bin\n```\n\n## Usage\n\n1. Set your Cloudflare API token as an environment variable:\n   ```bash\n   export CLOUDFLARE_API_TOKEN=your_token_here\n   ```\n\n### API Permissions\n\nYour Cloudflare API Token needs the following permissions:\n\n- **DNS**: `Edit` (Required for all DNS operations)\n- **Zone**: `Read` (Required to list zones)\n- **Zone**: `Edit` (Optional: Only required to **add** or **delete** zones)\n\n### Interactive TUI Mode\n\nBy default, running `cftui` without arguments launches the interactive interface.\n\n```bash\n./cftui\n```\n\n**Keybindings (Zone List)**\n- **'a'**: Add a new zone.\n- **'d'**: Delete the selected zone (requires name confirmation).\n- **'r'**: Trigger zone activation check.\n- **'i'**: View detailed zone info (nameservers, etc.).\n\n### Headless CLI Mode\n\n**Commands**\n- `cftui zones create \u003cname\u003e`\n- `cftui zones delete \u003czone-name-or-id\u003e`\n- `cftui zones check \u003czone-name-or-id\u003e`\n- `cftui records list \u003czone-name-or-id\u003e`\n\n**Global Flags**\n- `--mock`: Use a local mock API for testing the UI without hitting Cloudflare.\n- `--theme`: Color theme. Options: `ansi`, `mocha`, `nord`, `dracula`, etc.\n\n## Shell Completion\n\n`cftui` supports shell completion for Bash, Zsh, Fish, and PowerShell.\n\n```bash\n# Zsh\nsource \u003c(./cftui completion zsh)\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevnullvoid%2Fcloudflare-tui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevnullvoid%2Fcloudflare-tui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevnullvoid%2Fcloudflare-tui/lists"}