{"id":43912357,"url":"https://github.com/dulait/grit","last_synced_at":"2026-02-06T21:00:41.251Z","repository":{"id":336747092,"uuid":"1137754771","full_name":"dulait/grit","owner":"dulait","description":"Grit is a simple, fast, and extensible CLI tool written in Go for managing GitHub issues across multiple projects","archived":false,"fork":false,"pushed_at":"2026-02-06T02:09:49.000Z","size":89,"stargazers_count":2,"open_issues_count":20,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-06T09:27:22.697Z","etag":null,"topics":["cli","github","go","golang","issues","llm"],"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/dulait.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":null,"dco":null,"cla":null}},"created_at":"2026-01-19T19:43:17.000Z","updated_at":"2026-02-06T02:09:29.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/dulait/grit","commit_stats":null,"previous_names":["dulait/grit"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/dulait/grit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dulait%2Fgrit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dulait%2Fgrit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dulait%2Fgrit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dulait%2Fgrit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dulait","download_url":"https://codeload.github.com/dulait/grit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dulait%2Fgrit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29175821,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T20:14:21.878Z","status":"ssl_error","status_checked_at":"2026-02-06T20:14:21.443Z","response_time":59,"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":["cli","github","go","golang","issues","llm"],"created_at":"2026-02-06T21:00:38.522Z","updated_at":"2026-02-06T21:00:41.248Z","avatar_url":"https://github.com/dulait.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Grit\n\nA CLI and TUI tool for LLM-assisted GitHub issue management.\n\n[![Go](https://img.shields.io/badge/Go-1.25+-00ADD8?logo=go\u0026logoColor=white)](https://go.dev)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)\n[![Release](https://img.shields.io/github/v/release/dulait/grit)](https://github.com/dulait/grit/releases/latest)\n\n## Features\n\n- **Dual interface** — full CLI for scripting and an interactive TUI for day-to-day work\n- **LLM-assisted issue creation** — describe a problem in plain English; grit generates a structured issue\n- **Multiple LLM providers** — Anthropic (Claude), Groq, Ollama (local), or no AI at all\n- **Complete issue management** — create, list, view, edit, close, assign, comment, link, and search\n- **Sub-issues** — create child issues linked to a parent\n- **Issue linking** — relate issues with typed relationships (blocks, duplicates, parent/child, etc.)\n- **Search** — find issues with GitHub's search API, filtered by state and label\n- **Self-update** — run `grit update` to fetch the latest release from GitHub\n- **Cross-platform** — Linux, macOS, and Windows on amd64 and arm64\n\n\u003c!-- TODO: Add a terminal recording / screenshot of the TUI here --\u003e\n\n## Installation\n\n### Using Go\n\nRequires Go 1.25 or later.\n\n```bash\ngo install github.com/dulait/grit/cmd/grit@latest\n```\n\n### From GitHub Releases\n\nDownload the binary for your platform from the [releases page](https://github.com/dulait/grit/releases).\n\n**Linux / macOS:**\n\n```bash\ncurl -LO https://github.com/dulait/grit/releases/latest/download/grit_VERSION_OS_ARCH.tar.gz\ntar -xzf grit_VERSION_OS_ARCH.tar.gz\nsudo mv grit /usr/local/bin/\n```\n\n**Windows:**\n\n1. Download the `.zip` file from the releases page\n2. Extract `grit.exe`\n3. Move it to a directory in your `PATH`\n\n### Self-update\n\nIf you already have grit installed from a release binary:\n\n```bash\ngrit update\n```\n\n### Verify\n\n```bash\ngrit version\n```\n\n## Quick Start\n\n```bash\n# 1. Initialize grit in your project\ngrit init\n\n# 2. Authenticate with GitHub\ngrit auth login\n\n# 3. Create an issue with AI assistance\ngrit issue create \"describe your issue here\"\n\n# 4. Launch the interactive TUI\ngrit\n```\n\n## Documentation\n\n| Guide | Description |\n|-------|-------------|\n| [Getting Started](docs/getting-started.md) | Installation, setup, and your first issue |\n| [CLI Reference](docs/cli-reference.md) | Every command, flag, and argument |\n| [TUI Guide](docs/tui-guide.md) | Interactive mode walkthrough and keybindings |\n| [Configuration](docs/configuration.md) | Config file format and LLM provider setup |\n| [Updating](docs/updating.md) | Keeping grit up to date |\n| [Contributing](CONTRIBUTING.md) | Development setup and contribution guidelines |\n\n## License\n\nMIT License — see [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdulait%2Fgrit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdulait%2Fgrit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdulait%2Fgrit/lists"}