beast-agent 0.16.0 → 0.16.1
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/.env.example +1 -0
- package/README.md +25 -9
- package/config.example.yaml +15 -2
- package/package.json +1 -1
package/.env.example
CHANGED
package/README.md
CHANGED
|
@@ -27,8 +27,6 @@ Beast Agent is a personal AI agent that runs on your machine and connects to **a
|
|
|
27
27
|
|
|
28
28
|
## 📦 Download & Install — 2 commands, ready
|
|
29
29
|
|
|
30
|
-
### Option 1 · npm (recommended)
|
|
31
|
-
|
|
32
30
|
```bash
|
|
33
31
|
npm install -g beast-agent
|
|
34
32
|
```
|
|
@@ -41,15 +39,33 @@ beast-agent
|
|
|
41
39
|
|
|
42
40
|
That's it — the app window opens. On first launch Beast also creates a **desktop shortcut** and registers itself to **start with Windows** (lives in the tray). Later updates: close the app and run `beast-agent update`.
|
|
43
41
|
|
|
44
|
-
|
|
42
|
+
## ⚙️ Configuration
|
|
45
43
|
|
|
46
|
-
|
|
44
|
+
### Recommended: OpenCode Zen (free tier, no credit card)
|
|
47
45
|
|
|
48
|
-
|
|
46
|
+
Get a key at [opencode.ai/auth](https://opencode.ai/auth), then copy `config.example.yaml` → `config.yaml`:
|
|
49
47
|
|
|
50
|
-
|
|
48
|
+
```yaml
|
|
49
|
+
defaultSelection: opencode::glm-5.2
|
|
50
|
+
providers:
|
|
51
|
+
- id: opencode
|
|
52
|
+
name: OpenCode Zen
|
|
53
|
+
baseUrl: https://opencode.ai/zen/v1
|
|
54
|
+
apiKey: <your-key>
|
|
55
|
+
models:
|
|
56
|
+
- glm-5.2
|
|
57
|
+
- kimi-k2.7-code
|
|
58
|
+
- deepseek-v4-flash-free
|
|
59
|
+
- big-pickle
|
|
60
|
+
- minimax-m3
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
> Free models include `deepseek-v4-flash-free`, `big-pickle`, `mimo-v2.5-free`, `nemotron-3-ultra-free`. If you have an **OpenCode Go** subscription, use the same config with `baseUrl: https://opencode.ai/zen/go/v1`.
|
|
64
|
+
|
|
65
|
+
### Any other OpenAI-compatible provider
|
|
66
|
+
|
|
67
|
+
OpenRouter, Zhipu, Ollama, OpenAI — anything that speaks `/v1/chat/completions` works:
|
|
51
68
|
|
|
52
|
-
1. Copy `config.example.yaml` → `config.yaml` and add your providers:
|
|
53
69
|
```yaml
|
|
54
70
|
defaultSelection: openrouter::anthropic/claude-3.5-sonnet
|
|
55
71
|
providers:
|
|
@@ -61,8 +77,8 @@ providers:
|
|
|
61
77
|
- anthropic/claude-3.5-sonnet
|
|
62
78
|
- gpt-4o
|
|
63
79
|
```
|
|
64
|
-
|
|
65
|
-
|
|
80
|
+
|
|
81
|
+
API keys can also go into `.env` (copy `.env.example` → `.env`). On first launch, Settings → Provider pulls your models automatically.
|
|
66
82
|
|
|
67
83
|
All app data lives under `%APPDATA%\beast` (sessions, memory, WhatsApp pairing, encrypted settings).
|
|
68
84
|
|
package/config.example.yaml
CHANGED
|
@@ -2,7 +2,20 @@
|
|
|
2
2
|
# Kullanım: bu dosyayı %APPDATA%\beast\config.yaml olarak kopyala ve düzenle.
|
|
3
3
|
# (Taşınabilir kullanım için BEAST_DATA ortam değişkeni ile başka klasöre alabilirsin.)
|
|
4
4
|
|
|
5
|
+
# ÖNERİLEN: OpenCode Zen — ücretsiz modeller, kredi kartı gerekmez (opencode.ai/auth)
|
|
5
6
|
providers:
|
|
7
|
+
opencode:
|
|
8
|
+
name: OpenCode Zen
|
|
9
|
+
base_url: https://opencode.ai/zen/v1
|
|
10
|
+
key_env: OPENCODE_API_KEY
|
|
11
|
+
models:
|
|
12
|
+
glm-5.2: {}
|
|
13
|
+
kimi-k2.7-code: {}
|
|
14
|
+
deepseek-v4-flash-free: {}
|
|
15
|
+
big-pickle: {}
|
|
16
|
+
minimax-m3: {}
|
|
17
|
+
# OpenCode Go aboneliğin varsa base_url: https://opencode.ai/zen/go/v1 kullan.
|
|
18
|
+
|
|
6
19
|
zhipu:
|
|
7
20
|
name: Zhipu AI
|
|
8
21
|
base_url: https://api.z.ai/api/paas/v4
|
|
@@ -20,7 +33,7 @@ providers:
|
|
|
20
33
|
gpt-4o: {}
|
|
21
34
|
|
|
22
35
|
model:
|
|
23
|
-
provider:
|
|
24
|
-
default: glm-
|
|
36
|
+
provider: opencode # varsayılan provider id (yoksa ilk provider kullanılır)
|
|
37
|
+
default: glm-5.2 # varsayılan model
|
|
25
38
|
# base_url: ... # istersen aktif provider'ın URL'ini override et
|
|
26
39
|
# key_env: ... # istersen anahtarı farklı env'den oku
|