You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Or download directly from [GitHub Releases](https://github.com/voocel/codebot/releases).
68
+
69
+
**With Go:**
70
+
71
+
```bash
72
+
go install github.com/voocel/codebot/cmd/codebot@latest
64
73
```
65
74
66
-
Or build from source:
75
+
**Build from source:**
67
76
68
77
```bash
69
78
git clone https://github.com/voocel/codebot.git
70
79
cd codebot && go build -o codebot ./cmd/codebot
71
80
```
72
81
82
+
## Quick Start
83
+
84
+
```bash
85
+
# Set API key and run
86
+
export ANTHROPIC_API_KEY=sk-ant-...
87
+
codebot
88
+
```
89
+
73
90
Supported environment variables: `ANTHROPIC_API_KEY`, `OPENAI_API_KEY`, `GEMINI_API_KEY`. For more options see [settings.example.jsonc](settings.example.jsonc).
74
91
75
92
## Usage
@@ -103,8 +120,8 @@ All fields are optional. See [settings.example.jsonc](settings.example.jsonc) fo
103
120
104
121
## Requirements
105
122
106
-
- Go 1.25+
107
123
- API key for at least one provider
124
+
- Go 1.25+ (only if installing via `go install` or building from source)
0 commit comments