@devboy-tools/cli 0.17.0 → 0.18.0
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 +32 -5
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/@devboy-tools/cli)
|
|
4
4
|
[](https://opensource.org/licenses/Apache-2.0)
|
|
5
5
|
|
|
6
|
-
npm distribution of [DevBoy tools](https://github.com/meteora-pro/devboy-tools) — a fast
|
|
6
|
+
npm distribution of [DevBoy tools](https://github.com/meteora-pro/devboy-tools) — a fast, configurable **tool bundle** for AI coding agents, written in Rust. Use the same tools via an MCP server, via CLI commands, or directly from agent skills.
|
|
7
7
|
|
|
8
8
|
The correct binary for your platform is installed automatically via platform-specific packages.
|
|
9
9
|
|
|
@@ -27,12 +27,11 @@ pnpm add @devboy-tools/cli
|
|
|
27
27
|
|
|
28
28
|
## Usage
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
DevBoy is a tool bundle — pick the mode that fits your workflow:
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
# Start MCP server
|
|
34
|
-
npx devboy mcp
|
|
32
|
+
### CLI (humans, CI, shell scripts)
|
|
35
33
|
|
|
34
|
+
```bash
|
|
36
35
|
# Show help
|
|
37
36
|
npx devboy --help
|
|
38
37
|
|
|
@@ -40,6 +39,34 @@ npx devboy --help
|
|
|
40
39
|
npx devboy config set github.owner <owner>
|
|
41
40
|
npx devboy config set github.repo <repo>
|
|
42
41
|
npx devboy config set-secret github.token <token>
|
|
42
|
+
|
|
43
|
+
# Use tools directly
|
|
44
|
+
npx devboy issues
|
|
45
|
+
npx devboy mrs
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
### MCP server (Claude Desktop, Claude Code, any MCP client)
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
# Start MCP server over stdio
|
|
52
|
+
npx devboy mcp
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Agent skills (call a single tool from a skill script)
|
|
56
|
+
|
|
57
|
+
The `tools call` subcommand takes a tool name and an optional positional JSON string (defaults to `{}`). Quoting rules differ between shells:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
# POSIX shells (bash, zsh, sh) — no args
|
|
61
|
+
npx devboy tools call get_issues
|
|
62
|
+
|
|
63
|
+
# POSIX shells — with JSON args
|
|
64
|
+
npx devboy tools call get_issues '{"limit": 20}'
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
```bat
|
|
68
|
+
:: Windows cmd.exe / PowerShell — escape inner quotes
|
|
69
|
+
npx devboy tools call get_issues "{\"limit\": 20}"
|
|
43
70
|
```
|
|
44
71
|
|
|
45
72
|
### Claude Code
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devboy-tools/cli",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.18.0",
|
|
4
|
+
"description": "Configurable tool bundle for AI coding agents — use via MCP server, CLI, or agent skills. npm wrapper for the Rust binary.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"node": ">=18"
|
|
38
38
|
},
|
|
39
39
|
"optionalDependencies": {
|
|
40
|
-
"@devboy-tools/darwin-arm64": "0.
|
|
41
|
-
"@devboy-tools/darwin-x64": "0.
|
|
42
|
-
"@devboy-tools/linux-arm64": "0.
|
|
43
|
-
"@devboy-tools/linux-x64": "0.
|
|
44
|
-
"@devboy-tools/win32-x64": "0.
|
|
40
|
+
"@devboy-tools/darwin-arm64": "0.18.0",
|
|
41
|
+
"@devboy-tools/darwin-x64": "0.18.0",
|
|
42
|
+
"@devboy-tools/linux-arm64": "0.18.0",
|
|
43
|
+
"@devboy-tools/linux-x64": "0.18.0",
|
|
44
|
+
"@devboy-tools/win32-x64": "0.18.0"
|
|
45
45
|
}
|
|
46
46
|
}
|