gearbox-code 0.1.10 → 0.1.12
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 +31 -1
- package/dist/cli.mjs +96356 -85379
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -79,11 +79,41 @@ npm uninstall -g gearbox-code
|
|
|
79
79
|
|
|
80
80
|
Gearbox is a terminal coding agent that can use the model accounts you already
|
|
81
81
|
pay for. It supports provider accounts, local credential storage, model routing,
|
|
82
|
-
session history, file edits, shell commands,
|
|
82
|
+
session history, file edits, shell commands, MCP tools, web search, image input,
|
|
83
|
+
and permission gates.
|
|
83
84
|
|
|
84
85
|
Supported setup paths include API keys, detected env/cloud credentials, Azure,
|
|
85
86
|
and provider CLIs where available.
|
|
86
87
|
|
|
88
|
+
## Capabilities
|
|
89
|
+
|
|
90
|
+
Paste or drag an image path into the composer to attach screenshots or UI
|
|
91
|
+
captures. Local image attachments work with API-backed multimodal models.
|
|
92
|
+
|
|
93
|
+
Gearbox loads MCP servers from `~/.gearbox/mcp.json`, `.mcp.json`, or
|
|
94
|
+
`.gearbox/mcp.json`. Check what loaded with:
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
gearbox mcp list
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
Example MCP config:
|
|
101
|
+
|
|
102
|
+
```json
|
|
103
|
+
{
|
|
104
|
+
"mcpServers": {
|
|
105
|
+
"github": {
|
|
106
|
+
"command": "npx",
|
|
107
|
+
"args": ["-y", "@modelcontextprotocol/server-github"],
|
|
108
|
+
"env": { "GITHUB_TOKEN": "${GITHUB_TOKEN}" }
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
The built-in `web_search` tool works out of the box with DuckDuckGo, and uses
|
|
115
|
+
Brave or SearXNG when `BRAVE_SEARCH_API_KEY` or `SEARXNG_URL` is set.
|
|
116
|
+
|
|
87
117
|
## Develop
|
|
88
118
|
|
|
89
119
|
Requires [Bun](https://bun.sh).
|