{"id":40210259,"url":"https://github.com/kmesiab/ai-code-critic","last_synced_at":"2026-01-19T21:05:27.104Z","repository":{"id":209721350,"uuid":"724769129","full_name":"kmesiab/ai-code-critic","owner":"kmesiab","description":"AI Code Critic: An efficient desktop app leveraging ChatGPT for automated, language-agnostic code reviews. Streamlines code analysis with AI insights, enhancing code quality and developer productivity.","archived":false,"fork":false,"pushed_at":"2024-01-19T22:14:16.000Z","size":1016,"stargazers_count":8,"open_issues_count":6,"forks_count":6,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-04-18T18:13:39.595Z","etag":null,"topics":["codereview","fyne","go","golang","openai","openai-api","tools"],"latest_commit_sha":null,"homepage":"","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/kmesiab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2023-11-28T18:56:12.000Z","updated_at":"2024-03-23T14:40:10.000Z","dependencies_parsed_at":"2023-12-22T02:59:06.332Z","dependency_job_id":"e1103baf-fae3-4e8e-9b07-60b959f0ffc9","html_url":"https://github.com/kmesiab/ai-code-critic","commit_stats":null,"previous_names":["kmesiab/ai-code-critic"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/kmesiab/ai-code-critic","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kmesiab%2Fai-code-critic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kmesiab%2Fai-code-critic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kmesiab%2Fai-code-critic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kmesiab%2Fai-code-critic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kmesiab","download_url":"https://codeload.github.com/kmesiab/ai-code-critic/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kmesiab%2Fai-code-critic/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28585398,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T20:45:59.482Z","status":"ssl_error","status_checked_at":"2026-01-19T20:45:41.500Z","response_time":67,"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":["codereview","fyne","go","golang","openai","openai-api","tools"],"created_at":"2026-01-19T21:05:25.746Z","updated_at":"2026-01-19T21:05:27.096Z","avatar_url":"https://github.com/kmesiab.png","language":"Go","readme":"# AI-Code-Critic 🚀\n\n![Golang](https://img.shields.io/badge/Go-00add8.svg?labelColor=171e21\u0026style=for-the-badge\u0026logo=go)\n\n![Build](https://github.com/kmesiab/ai-code-critic/actions/workflows/go-build.yml/badge.svg)\n![Build](https://github.com/kmesiab/ai-code-critic/actions/workflows/go-lint.yml/badge.svg)\n![Build](https://github.com/kmesiab/ai-code-critic/actions/workflows/go-test.yml/badge.svg)\n[![Go Report Card](https://goreportcard.com/badge/github.com/kmesiab/ai-code-critic)](https://goreportcard.com/report/github.com/kmesiab/ai-code-critic)\n\n## Overview 🌟\n\nAI-Code-Critic is a desktop application designed to automate code reviews\nacross various programming languages, utilizing OpenAI's ChatGPT API.\nIt offers intelligent insights and suggestions to improve code quality\nand developer efficiency.\n\n## Features 🛠️\n\n- **Language-Agnostic Analysis**: Compatible with multiple programming\nlanguages.\n- **AI-Powered Insights**: Employs ChatGPT for in-depth code analysis.\n- **User-Friendly Interface**: Simple and intuitive GUI for effortless\nusage, built with Fyne.\n\n## Installation 🔧\n\nTo install AI-Code-Critic, you need to have Go installed on your machine.\nFollow these steps:\n\n```bash\ngo install github.com/kmesiab/ai-code-critic@latest\n```\n\nSet your OpenAI API Key\n\n```bash\necho \"export OPENAI_API_KEY=sk-[SECRET]\" \u003e .env \u0026\u0026 source .env\n```\n\nSet your Ignore Files.  These are file types that will be excluded from\ncode reviews.  They should be a comma-separated list of file extensions.\n\nex:\n\n```bash\necho \"export IGNORE_FILES=.mod,.sum\" \u003e .env \u0026\u0026 source .env\n````\n\nTo run the program:\n\n```bash\n./ai-code-critic\n```\n\n## Usage 💡\n\n![Screenshot](https://github.com/kmesiab/ai-code-critic/assets/161768/8002cce3-5e62-41ae-8982-9a4257aa8207)\n\n1. Click the \"+\" button and enter the url to a GitHub pull request.\n2. Wait patiently while things happen.\n3. The diff will be loaded in the right pane.\n4. The report will appear shortly after in the left pane.\n\n## Development and Testing 🧪\n\n### Building the Project 🏗️\n\n```bash\nmake build\n```\n\n### Running Tests ✔️\n\n```bash\nmake test\nmake test-verbose\nmake test-race\n```\n\n### Installing Tools 🛠️\n\n```bash\nmake install-tools\n```\n\n### Linting 🧹\n\n```bash\nmake lint\nmake lint-markdown\n```\n\n## Contributing 🤝\n\n### Forking and Sending a Pull Request\n\n1. **Fork the Repository**: Click the 'Fork' button at the top right of this\npage.\n2. **Clone Your Fork**:\n\n   ```bash\n   git clone https://github.com/kmesiab/ai-code-critic\n   cd ai-code-critic\n   ```\n\n3. **Create a New Branch**:\n\n   ```bash\n   git checkout -b your-branch-name\n   ```\n\n4. **Make Your Changes**: Implement your changes or fix issues.\n5. **Commit and Push**:\n\n   ```bash\n   git commit -m \"Add your commit message\"\n   git push origin your-branch-name\n   ```\n\n6. **Create a Pull Request**: Go to your fork on GitHub and click the\n'Compare \u0026 pull request' button.\n\n## Github Guidelines\n\nPlease ensure your code adheres to the project's\n[standards and guidelines](https://github.com/kmesiab/ai-code-critic/discussions/24).\n\n### Quick Tips\n\nRun `make lint` before committing to ensure your code is properly formatted.\n\n1. **Always rebase, never merge commit**\n2. Always use a description commit message\n3. Separate your title from your description\n4. Keep commit messages under 50 characters\n5. Start your branch with `feat|bugfix|docs|style|refactor|perf|test`\n6. Squash your commits into logical units of work\n\n## License 📝\n\nInformation regarding the licensing of AI-Code-Critic will be included here.\n\n---\n\n*Note: This project is under active development. Additional features\nand documentation will be updated in due course.* 🌈\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkmesiab%2Fai-code-critic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkmesiab%2Fai-code-critic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkmesiab%2Fai-code-critic/lists"}