unbound-cli 0.9.1 → 0.9.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/README.md CHANGED
@@ -72,6 +72,7 @@ Automated setup (downloads scripts, sets env vars, configures tool):
72
72
  | Command | Description |
73
73
  |---------|-------------|
74
74
  | `unbound setup cursor` | Download hooks, set env, restart Cursor |
75
+ | `unbound setup copilot` | Download hooks, set env, configure GitHub Copilot |
75
76
  | `unbound setup claude-code` | Interactive mode selection (subscription or gateway) |
76
77
  | `unbound setup claude-code --subscription` | Hooks only (keep your Claude subscription) |
77
78
  | `unbound setup claude-code --gateway` | Use Unbound as the AI provider |
@@ -94,6 +95,7 @@ Remove configuration:
94
95
  | Command | Description |
95
96
  |---------|-------------|
96
97
  | `unbound setup cursor --clear` | Remove Unbound config for Cursor |
98
+ | `unbound setup copilot --clear` | Remove Unbound config for GitHub Copilot |
97
99
  | `unbound setup claude-code --clear` | Remove Unbound config for Claude Code |
98
100
  | `unbound setup gemini-cli --clear` | Remove Unbound config for Gemini CLI |
99
101
  | `unbound setup codex --clear` | Remove Unbound config for Codex |
@@ -108,7 +110,7 @@ Configure all users on a device via MDM. Requires root.
108
110
  | `sudo unbound setup mdm --admin-api-key KEY cursor codex-subscription` | Set up specific tools |
109
111
  | `sudo unbound setup mdm --admin-api-key KEY --clear cursor` | Remove config for specific tools |
110
112
 
111
- Available tools: `cursor`, `claude-code-subscription`, `claude-code-gateway`, `gemini-cli`, `codex-subscription`, `codex-gateway`
113
+ Available tools: `cursor`, `copilot`, `claude-code-subscription`, `claude-code-gateway`, `gemini-cli`, `codex-subscription`, `codex-gateway`
112
114
 
113
115
  `claude-code-subscription` and `claude-code-gateway` are mutually exclusive. `codex-subscription` and `codex-gateway` are mutually exclusive. When using `--all`, subscription mode is used by default for Claude Code and Codex.
114
116
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unbound-cli",
3
- "version": "0.9.1",
3
+ "version": "0.9.3",
4
4
  "description": "CLI tool for Unbound - AI Gateway management",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -20,6 +20,7 @@
20
20
  "license": "Apache-2.0",
21
21
  "private": false,
22
22
  "dependencies": {
23
+ "@iarna/toml": "^2.2.5",
23
24
  "commander": "^12.1.0",
24
25
  "open": "^10.1.0"
25
26
  },