@dreb/coding-agent 2.25.1 → 2.25.3
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/CHANGELOG.md +4 -0
- package/README.md +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts +8 -0
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +15 -5
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/docs/buddy.md +2 -2
- package/docs/providers.md +7 -0
- package/package.json +1 -1
package/docs/buddy.md
CHANGED
|
@@ -27,13 +27,13 @@ The buddy won't react until a model is configured. The choice is persisted acros
|
|
|
27
27
|
|
|
28
28
|
| Command | Description |
|
|
29
29
|
|---|---|
|
|
30
|
-
| `/buddy` | Hatch a new buddy (or show existing one) |
|
|
30
|
+
| `/buddy` | Hatch a new buddy (or show an existing one — also brings back a buddy hidden via `/buddy off`) |
|
|
31
31
|
| `/buddy model` | Show current Ollama model and available models |
|
|
32
32
|
| `/buddy model <name>` | Set the Ollama model for buddy reactions |
|
|
33
33
|
| `/buddy pet` | Pet your buddy |
|
|
34
34
|
| `/buddy reroll` | Reroll for a new buddy (new species, name, personality) |
|
|
35
35
|
| `/buddy stats` | Show buddy stats panel |
|
|
36
|
-
| `/buddy off` | Hide the buddy |
|
|
36
|
+
| `/buddy off` | Hide the buddy (persists across sessions — it stays hidden on restart until you run `/buddy`) |
|
|
37
37
|
|
|
38
38
|
## How It Works
|
|
39
39
|
|
package/docs/providers.md
CHANGED
|
@@ -40,6 +40,13 @@ Use `/logout` to clear credentials. Tokens are stored in `~/.dreb/agent/auth.jso
|
|
|
40
40
|
- Requires ChatGPT Plus or Pro subscription
|
|
41
41
|
- Personal use only; for production, use the OpenAI Platform API
|
|
42
42
|
|
|
43
|
+
### Kimi For Coding
|
|
44
|
+
|
|
45
|
+
- `/login` uses the Kimi Code OAuth subscription endpoint at `https://api.kimi.com/coding/v1`.
|
|
46
|
+
- `KIMI_API_KEY` uses Kimi For Coding's Anthropic-compatible API at `https://api.kimi.com/coding`.
|
|
47
|
+
- The OAuth coding endpoint has been verified to accept OpenAI-style multimodal content arrays with base64 `image_url` data URLs for `kimi-for-coding`.
|
|
48
|
+
- Moonshot Open Platform vision docs use a different base URL (`https://api.moonshot.ai/v1`), and the first-party Kimi CLI may have its own media handling; don't assume all Kimi routes expose identical media behavior.
|
|
49
|
+
|
|
43
50
|
## API Keys
|
|
44
51
|
|
|
45
52
|
### Environment Variables or Auth File
|