@songsid/agend 0.0.18-beta.1 → 0.0.19

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.
@@ -20,7 +20,13 @@ Models are specified in fleet.yaml `defaults.model` or per-instance `model` fiel
20
20
  - `opencode models` — lists all available models for opencode
21
21
  - `codex` — check config.toml
22
22
 
23
- **Important:** Model names vary by backend. Always check the actual CLI output rather than guessing names. For antigravity, use the exact display name shown by `agy models` (e.g. "Gemini 3.5 Flash (High)").
23
+ **Important for antigravity (agy):**
24
+ - `agy models` shows names like `Gemini 3.5 Flash (Medium)` — the parenthetical suffix (Medium/High/Low/Thinking) is the **effort level**, NOT part of the model name.
25
+ - When setting model in fleet.yaml, use only the base name WITHOUT the effort suffix.
26
+ - Example: `agy models` shows `Gemini 3.5 Flash (Medium)` → set `model: "Gemini 3.5 Flash"`
27
+ - Example: `agy models` shows `Claude Opus 4.6 (Thinking)` → set `model: "Claude Opus 4.6"`
28
+
29
+ **Important:** Model names vary by backend. Always check the actual CLI output rather than guessing names.
24
30
 
25
31
  Example fleet.yaml:
26
32
  ```yaml
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@songsid/agend",
3
- "version": "0.0.18-beta.1",
3
+ "version": "0.0.19",
4
4
  "description": "Multi-agent fleet daemon — run any coding CLI (Claude, Gemini, Codex, OpenCode) from Telegram",
5
5
  "type": "module",
6
6
  "workspaces": ["plugins/*"],