{"id":29298808,"url":"https://github.com/volodya-lombrozo/aidy","last_synced_at":"2026-05-07T13:16:51.382Z","repository":{"id":299528740,"uuid":"951278705","full_name":"volodya-lombrozo/aidy","owner":"volodya-lombrozo","description":"AI-assisted CLI for GitHub workflows — generate commits, issues, PRs, and releases with one command","archived":false,"fork":false,"pushed_at":"2025-07-04T13:45:01.000Z","size":386,"stargazers_count":2,"open_issues_count":15,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-04T13:47:50.686Z","etag":null,"topics":["ai","ai-tool","git","github-cli","go"],"latest_commit_sha":null,"homepage":"https://pkg.go.dev/github.com/volodya-lombrozo/aidy","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/volodya-lombrozo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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}},"created_at":"2025-03-19T12:39:28.000Z","updated_at":"2025-07-04T12:38:48.000Z","dependencies_parsed_at":"2025-06-17T02:35:23.425Z","dependency_job_id":"983b978c-4d60-4477-b068-f281ffaa5351","html_url":"https://github.com/volodya-lombrozo/aidy","commit_stats":null,"previous_names":["volodya-lombrozo/aidy"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/volodya-lombrozo/aidy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/volodya-lombrozo%2Faidy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/volodya-lombrozo%2Faidy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/volodya-lombrozo%2Faidy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/volodya-lombrozo%2Faidy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/volodya-lombrozo","download_url":"https://codeload.github.com/volodya-lombrozo/aidy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/volodya-lombrozo%2Faidy/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263953570,"owners_count":23535139,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","ai-tool","git","github-cli","go"],"created_at":"2025-07-06T18:39:16.012Z","updated_at":"2026-05-07T13:16:51.377Z","avatar_url":"https://github.com/volodya-lombrozo.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Aidy\n\n[![codecov](https://codecov.io/gh/volodya-lombrozo/aidy/branch/main/graph/badge.svg)](https://codecov.io/gh/volodya-lombrozo/aidy)\n\nAidy is a command-line tool designed to enhance your [GitHub flow](https://docs.github.com/en/get-started/using-github/github-flow) with AI-powered assistance.\nIt helps generate commit messages, issues, pull requests, releases, and more.\n\n## Installation\n\n### Releases\n\nDownload the latest stable version from the [releases page](https://github.com/volodya-lombrozo/aidy/releases). Pre-built binaries are available for MacOS, Windows, and Linux.\n\n### Using Go\n\nIf you have Go 1.24.1 or later installed, you can run:\n\n```bash\ngo install github.com/volodya-lombrozo/aidy@latest\n```\n\nTo install a specific version, use:\n\n```bash\ngo install github.com/volodya-lombrozo/aidy@v0.1.0\n```\n\n### From Sources \n\nYou need to have Go 1.24.1 or later installed on your system.\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/volodya-lombrozo/aidy.git\n   cd aidy\n   ```\n\n2. Build the binary:\n\n   ```bash\n   go build -o aidy\n   ```\n\n3. (Optional) Install the binary to your `$GOPATH/bin`:\n\n   ```bash\n   go install\n   ```\n\n## Configuration\n\nCreate a configuration file in your home directory `~/.aidy.conf.yml` with the following minimal content:\n\n```yaml\ndefault-model: deepseek\n\napi-keys:\n  github: \u003cgithub-key\u003e\n  deepseek: \u003cdeepseek-key\u003e\n\nmodels:\n  deepseek:\n    provider: deepseek\n    model-id: deepseek-chat\n```\n\nFor OpenAI:\n\n```yaml\ndefault-model: 4o\n\napi-keys:\n  github: \u003cgithub-key\u003e\n  openai: \u003copenai-key\u003e\n\nmodels:\n  4o:\n    provider: openai\n    model-id: gpt-4o \n```\n\nFor Anthropic:\n\n```yaml\ndefault-model: claude-sonnet\n\napi-keys:\n  github: \u003cgithub-key\u003e\n  anthropic: \u003canthropic-key\u003e\n\nmodels:\n  claude-sonnet:\n    provider: anthropic\n    model-id: claude-sonnet-4-6\n```\n\nSupported providers: `deepseek`, `openai`, and `anthropic`. Verify the configuration with:\n\n```bash\naidy conf\n```\n\n### Commit\n\nMake a commit with a human-readable message:\n\n```bash\naidy commit\n```\n\nThis command will stage all current changes in your Git repository, generate a readable message based on the changes made, and create a commit.\nExample output:\n\n```\nCommit created with message: 'docs(#209): Update README with installation and configuration details'\n```\n\nor if you a using JIRA-sytle branches:\n\n```\nCommit created with message: 'docs(PROJ-209): Update README with installation and configuration details'\n```\n\nShorter version is `aidy ci`.\n\n### Pull Request\n\nYou can create a pull request for the implemented feature using:\n\n```bash\naidy pull-request\n```\n\nor the shorter version:\n\n```bash\naidy pr\n```\n\nThis command will generate a meaningful title and body for your pull request and provide the corresponding `gh` command:\n\n```\ngh pr create\n  --title \"docs(#209): Update README to reflect current features and installation\"\n  --body \"This PR updates the `README.md` to better reflect the current functionality of `aidy`, including installation options, configuration details, and usage examples.\n\nCloses #209\"\n```\n\nYou can then run this command to create the pull request. For that, you will need the [GitHub CLI](https://cli.github.com)\n\n### Issue\n\nYou can also create an issue quickly using:\n\n```bash\naidy issue \"update the documentation regarding all recent changes\"\n```\n\nor the short form:\n\n```bash\naidy i \"update the documentation regarding all recent changes\"\n```\n\nThis command generates a title and body for the issue, suggests appropriate labels, and prints a `gh` command:\n\n```\ngh issue create\n  --title \"Update documentation to reflect recent changes\"\n  --body \"The `README.md` and other documentation files need updating to reflect recent changes in the codebase, including new features, API modifications, and deprecated functionality.\"\n  --label \"documentation,enhancement\"\n  --repo volodya-lombrozo/aidy\n```\n\n### Release\n\n`aidy` also helps generate releases. It creates a new tag with release notes (AI-generated) and bumps the version number according to the [SemVer](https://semver.org/) specification.\n\nPatch release:\n\n```bash\naidy release patch\n```\n\nUpdates version from `0.1.0` to `0.1.1`.\n\nMinor release:\n\n```bash\naidy release minor\n```\n\nUpdates version from `0.1.0` to `0.2.0`.\n\nMajor release:\n\n```bash\naidy release major\n```\n\nUpdates version from `0.1.0` to `1.0.0`.\n\n\u003e **Note:** This command only creates a tag with release notes. To push it to the remote repository, run:\n\n```bash\ngit push --tags\n```\n\nTo see all available commands, run:\n\n```bash\naidy help\n```\n\n## License\n\nThis project is licensed under the [MIT](LICENSE.txt) License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvolodya-lombrozo%2Faidy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvolodya-lombrozo%2Faidy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvolodya-lombrozo%2Faidy/lists"}