@verboo/code 0.15.4 → 0.15.6
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/README.md +55 -0
- package/dist/cli.mjs +927 -1071
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,6 +55,61 @@ verboo /login
|
|
|
55
55
|
|
|
56
56
|
`WebFetch` works via basic HTTP plus HTML-to-markdown conversion. It may fail on JavaScript-rendered sites or sites that block plain HTTP requests.
|
|
57
57
|
|
|
58
|
+
## Agent Model Routing
|
|
59
|
+
|
|
60
|
+
Verboo resolves subagent models against the authenticated `/models` catalog and
|
|
61
|
+
preserves the complete server-provided ID, including plan prefixes such as
|
|
62
|
+
`max/qwen3.6-27b`. Router-provided `agent_model_roles` are authoritative; the
|
|
63
|
+
portable profiles below are compatibility fallbacks and can also be selected by
|
|
64
|
+
user-defined workers.
|
|
65
|
+
|
|
66
|
+
Configure agents in `~/.verboo/settings.json`:
|
|
67
|
+
|
|
68
|
+
```json
|
|
69
|
+
{
|
|
70
|
+
"agentRouting": {
|
|
71
|
+
"Explore": "fast",
|
|
72
|
+
"worker-review": { "profile": "review" },
|
|
73
|
+
"worker-backend": { "profile": "coding" },
|
|
74
|
+
"worker-tests": { "profile": "testing" },
|
|
75
|
+
"default": { "profile": "balanced" }
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Available profiles are `fast`, `review`, `coding`, `testing`, and `balanced`.
|
|
81
|
+
Each chooses a preferred model that is present in the logged-in account. If no
|
|
82
|
+
candidate is available, the worker inherits the parent model. A profile can opt
|
|
83
|
+
into the first catalog entry as a last resort with
|
|
84
|
+
`"fallback": "first-available"`.
|
|
85
|
+
|
|
86
|
+
Forked and inline skills support the same profiles:
|
|
87
|
+
|
|
88
|
+
```yaml
|
|
89
|
+
---
|
|
90
|
+
name: worker-review
|
|
91
|
+
model: profile:review
|
|
92
|
+
context: fork
|
|
93
|
+
---
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
An exact Verboo model can be requested without adding another API key. It is
|
|
97
|
+
used only when it exists in the authenticated catalog:
|
|
98
|
+
|
|
99
|
+
```json
|
|
100
|
+
{
|
|
101
|
+
"agentRouting": {
|
|
102
|
+
"worker-review": {
|
|
103
|
+
"model": "deepseek-v4-pro",
|
|
104
|
+
"provider": "inherit"
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
The legacy `agentModels` plus string `agentRouting` format for external
|
|
111
|
+
OpenAI-compatible providers remains supported.
|
|
112
|
+
|
|
58
113
|
---
|
|
59
114
|
|
|
60
115
|
## Headless gRPC Server
|