├── .github ├── release-drafter.yml └── workflows │ ├── build.yml │ └── update-homebrew.yml ├── .gitignore ├── Formula └── aigit.rb ├── LICENSE ├── Makefile ├── README.md ├── README_CN.md ├── docs └── homebrew-setup.md ├── go.mod ├── go.sum ├── llm ├── config.go └── model.go ├── main.go └── scripts └── update-homebrew.sh /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentsdance/aigit/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentsdance/aigit/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/update-homebrew.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentsdance/aigit/HEAD/.github/workflows/update-homebrew.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentsdance/aigit/HEAD/.gitignore -------------------------------------------------------------------------------- /Formula/aigit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentsdance/aigit/HEAD/Formula/aigit.rb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentsdance/aigit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentsdance/aigit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentsdance/aigit/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentsdance/aigit/HEAD/README_CN.md -------------------------------------------------------------------------------- /docs/homebrew-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentsdance/aigit/HEAD/docs/homebrew-setup.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentsdance/aigit/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentsdance/aigit/HEAD/go.sum -------------------------------------------------------------------------------- /llm/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentsdance/aigit/HEAD/llm/config.go -------------------------------------------------------------------------------- /llm/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentsdance/aigit/HEAD/llm/model.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentsdance/aigit/HEAD/main.go -------------------------------------------------------------------------------- /scripts/update-homebrew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentsdance/aigit/HEAD/scripts/update-homebrew.sh --------------------------------------------------------------------------------