cove-ai 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +661 -0
- package/README.md +38 -0
- package/dist/index.js +161 -160
- package/package.json +13 -8
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Cove
|
|
2
|
+
|
|
3
|
+
AI coding agent for your terminal.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
### Windows
|
|
8
|
+
```powershell
|
|
9
|
+
powershell -c "irm bun.sh/install.ps1 | iex"; bun add -g cove-ai; cove
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
### Mac / Linux
|
|
13
|
+
```bash
|
|
14
|
+
curl -fsSL https://bun.sh/install | bash && ~/.bun/bin/bun add -g cove-ai && ~/.bun/bin/cove
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
cove
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
On first run, you'll be prompted to enter your API key for one of the supported providers:
|
|
24
|
+
- OpenAI
|
|
25
|
+
- Anthropic
|
|
26
|
+
- Google Gemini
|
|
27
|
+
- GLM (Zhipu)
|
|
28
|
+
- DeepSeek
|
|
29
|
+
|
|
30
|
+
Your API key is saved locally to `~/.cove/.env`.
|
|
31
|
+
|
|
32
|
+
## Requirements
|
|
33
|
+
|
|
34
|
+
- [Bun](https://bun.sh) runtime (installed automatically by the one-liner above)
|
|
35
|
+
|
|
36
|
+
## License
|
|
37
|
+
|
|
38
|
+
AGPL-3.0 — free to use, modify, and distribute. If you build on Cove, your derivative must also be AGPL-3.0.
|