{"id":36963888,"url":"https://github.com/gptcode-cloud/cli","last_synced_at":"2026-03-07T20:01:36.001Z","repository":{"id":325692682,"uuid":"1102037751","full_name":"gptcode-cloud/cli","owner":"gptcode-cloud","description":"Fully configurable ML-powered AI assistant for terminal and Neovim. Embedded models, dependency graphs, multi-agent workflows — the works.","archived":false,"fork":false,"pushed_at":"2025-12-31T11:47:37.000Z","size":5671,"stargazers_count":3,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-03T07:09:55.016Z","etag":null,"topics":["ai","byok","cli","coding-assistant","copilot-alternative","cursor-alternative","golang","llm","neovim","open-source"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gptcode-cloud.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"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":null,"dco":null,"cla":null}},"created_at":"2025-11-22T17:47:53.000Z","updated_at":"2025-12-31T11:47:41.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/gptcode-cloud/cli","commit_stats":null,"previous_names":["jadercorrea/chuchu","gptcode-cloud/cli"],"tags_count":67,"template":false,"template_full_name":null,"purl":"pkg:github/gptcode-cloud/cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gptcode-cloud%2Fcli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gptcode-cloud%2Fcli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gptcode-cloud%2Fcli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gptcode-cloud%2Fcli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gptcode-cloud","download_url":"https://codeload.github.com/gptcode-cloud/cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gptcode-cloud%2Fcli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28397826,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"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","byok","cli","coding-assistant","copilot-alternative","cursor-alternative","golang","llm","neovim","open-source"],"created_at":"2026-01-13T19:09:14.874Z","updated_at":"2026-03-07T20:01:35.987Z","avatar_url":"https://github.com/gptcode-cloud.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GPTCode CLI\n\n\u003e Autonomous AI Coding Assistant — **$0-5/month** vs $20-30/month subscriptions\n\n## Quick Start (30 seconds)\n\n```bash\n# 1. Install\ncurl -sSL https://gptcode.dev/install.sh | bash\n\n# 2. Quick setup (recommended)\ngt setup -y\n\n# 3. Add your free API key\ngt key openrouter\n# (paste key from https://openrouter.ai/keys)\n\n# 4. Test it!\ngt run \"hello\"\n```\n\n## Alternative: Manual Setup\n\n```bash\n# Install\ncurl -sSL https://gptcode.dev/install.sh | bash\n\n# Or using go install\ngo install github.com/gptcode/cli/cmd/gptcode@latest\n\n# Guided setup\ngt setup\n# Choose \"1) Quick Start\" and paste your API key\n```\n\n## Usage\n\nUse `gptcode` or the short alias `gt`:\n\n```bash\n# Quick AI answers (no tool loop - fastest)\ngt go \"what is Go language\"\ngt go \"write hello world in Python\"\n\n# Autonomous mode - AI completes the task with tools\ngt do \"add user authentication\"\n\n# Interactive chat\ngt chat\n\n# Code review\ngt review\n\n# Research mode\ngt research \"how does the payment system work?\"\n```\n\n## Commands\n\n| Command | Description |\n|---------|-------------|\n| `gt go \"question\"` | Quick AI answer (no tools) - fastest |\n| `gt do \"task\"` | Autonomous task completion with tools |\n| `gt chat` | Interactive code conversation |\n| `gt run \"task\"` | Execute with follow-up |\n| `gt research \"question\"` | Document codebase/architecture |\n| `gt plan \"task\"` | Create implementation plan |\n| `gt implement plan.md` | Execute plan step-by-step |\n| `gt review` | Code review for bugs/security |\n| `gt tdd` | Test-driven development mode |\n| `gt feature \"desc\"` | Generate tests + implementation |\n\n## Tools Available\n\nWhen using autonomous modes (`gt do`, `gt run`, `gt chat`), these tools are available:\n\n| Tool | Description |\n|------|-------------|\n| `read_file` | Read file contents |\n| `list_files` | List files with pattern filter |\n| `search_code` | Regex search in code |\n| `find_relevant_files` | AI-powered file discovery |\n| `write_file` | Create/edit files |\n| `apply_patch` | Replace text blocks |\n| `run_command` | Execute shell commands |\n| `project_map` | Project structure tree |\n| `web_search` | Web lookup (requires EXA_API_KEY) |\n\n## Skills\n\nLanguage-specific guidelines injected into prompts:\n\n```bash\ngt skills list              # List available skills\ngt skills install ruby      # Install Ruby skill\ngt skills install-all       # Install all skills\ngt skills show go           # View skill content\n```\n\nAvailable: Go, Elixir, Ruby, Rails, Python, TypeScript, JavaScript, Rust\n\n## Configuration\n\n```bash\ngt setup                    # Initialize ~/.gptcode\ngt key groq                 # Set API key\ngt backend use groq         # Switch backend\ngt profile use groq.speed   # Switch profile\n```\n\n## Why GPTCode?\n\n- **Cost**: $0-5/month using Groq/OpenRouter free tiers\n- **Model Selection**: Intelligent routing to best model per task\n- **Skills**: Language-specific guidelines for idiomatic code\n- **E2E Encryption**: Your code never stored on our servers\n\n## Documentation\n\n- [Installation Guide](https://gptcode.dev/guides/installation)\n- [Configuration](https://gptcode.dev/guides/configuration)\n- [Skills Index](https://gptcode.dev/skills)\n- [API Reference](https://gptcode.dev/reference)\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgptcode-cloud%2Fcli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgptcode-cloud%2Fcli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgptcode-cloud%2Fcli/lists"}