aidevops 3.1.42 → 3.1.44
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 +29 -0
- package/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup-modules/mcp-setup.sh +1 -1
- package/setup-modules/tool-install.sh +3 -2
- package/setup.sh +1 -1
package/README.md
CHANGED
|
@@ -289,6 +289,35 @@ opencode auth login
|
|
|
289
289
|
- **Automatic token refresh** - No manual re-authentication needed
|
|
290
290
|
- **Beta features enabled** - Extended thinking modes and latest features
|
|
291
291
|
|
|
292
|
+
### Cursor Models via Pool Proxy
|
|
293
|
+
|
|
294
|
+
Access Cursor Pro models (Composer 2, Claude 4.6 Opus/Sonnet, GPT-5.x, Gemini 3.1 Pro) in OpenCode through a local gRPC proxy that translates OpenAI-compatible requests to Cursor's protobuf/HTTP2 protocol.
|
|
295
|
+
|
|
296
|
+
**Setup:**
|
|
297
|
+
|
|
298
|
+
```bash
|
|
299
|
+
# Add your Cursor account to the pool (reads from local Cursor IDE)
|
|
300
|
+
oauth-pool-helper.sh add cursor
|
|
301
|
+
|
|
302
|
+
# Restart OpenCode — Cursor models appear in Ctrl+T model picker
|
|
303
|
+
```
|
|
304
|
+
|
|
305
|
+
**How it works:**
|
|
306
|
+
|
|
307
|
+
- Reads Cursor credentials from the local IDE state database
|
|
308
|
+
- Starts a gRPC proxy that speaks Cursor's native protocol (not the cursor-agent CLI)
|
|
309
|
+
- Discovers available models via gRPC and registers them as an OpenCode provider
|
|
310
|
+
- Supports true streaming, tool calling, and automatic token refresh
|
|
311
|
+
- Falls back gracefully if no Cursor accounts are in the pool
|
|
312
|
+
|
|
313
|
+
**Benefits:**
|
|
314
|
+
|
|
315
|
+
- **Zero additional cost** for Cursor Pro subscribers
|
|
316
|
+
- **True streaming** — responses stream as they arrive (not buffered)
|
|
317
|
+
- **Tool calling** — Cursor's native MCP tool protocol works through the proxy
|
|
318
|
+
- **Model discovery** — automatically detects all models available to your account
|
|
319
|
+
- **Pool rotation** — multiple accounts with LRU rotation and 429 failover
|
|
320
|
+
|
|
292
321
|
### GitHub AI Agent Integration
|
|
293
322
|
|
|
294
323
|
Enable AI-powered issue resolution directly from GitHub. Comment `/oc fix this` on any issue and the AI creates a branch, implements the fix, and opens a PR.
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1.
|
|
1
|
+
3.1.44
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
|
@@ -502,6 +502,7 @@ setup_opencode_plugins() {
|
|
|
502
502
|
print_info " Filed: https://github.com/ephraimduncan/opencode-cursor/issues/15"
|
|
503
503
|
else
|
|
504
504
|
rm -f "$tmp_cursor"
|
|
505
|
+
print_warning "Failed to remove opencode-cursor-oauth plugin from opencode.json (file: $opencode_config)"
|
|
505
506
|
fi
|
|
506
507
|
fi
|
|
507
508
|
else
|
|
@@ -562,7 +563,6 @@ setup_opencode_plugins() {
|
|
|
562
563
|
print_info ""
|
|
563
564
|
print_info "For Cursor Pro accounts:"
|
|
564
565
|
print_info " Run: opencode auth login --provider cursor"
|
|
565
|
-
print_info " Or from shell: oauth-pool-helper.sh add cursor"
|
|
566
566
|
print_info ""
|
|
567
567
|
print_info " Health check: /models-pool-check"
|
|
568
568
|
print_info " Manage accounts: /model-accounts-pool list|status|remove"
|
|
@@ -1042,6 +1042,7 @@ setup_minisim() {
|
|
|
1042
1042
|
}
|
|
1043
1043
|
|
|
1044
1044
|
setup_claudebar() {
|
|
1045
|
+
local claudebar_release_url="https://github.com/tddworks/ClaudeBar/releases/latest"
|
|
1045
1046
|
# Only available on macOS (native Swift menu bar app)
|
|
1046
1047
|
if [[ "$(uname)" != "Darwin" ]]; then
|
|
1047
1048
|
return 0
|
|
@@ -1058,7 +1059,7 @@ setup_claudebar() {
|
|
|
1058
1059
|
# Check if Homebrew is available (required for cask install)
|
|
1059
1060
|
if ! command -v brew >/dev/null 2>&1; then
|
|
1060
1061
|
print_warning "Homebrew not found - cannot install ClaudeBar automatically"
|
|
1061
|
-
echo " Download manually:
|
|
1062
|
+
echo " Download manually: $claudebar_release_url"
|
|
1062
1063
|
return 0
|
|
1063
1064
|
fi
|
|
1064
1065
|
|
|
@@ -1077,7 +1078,7 @@ setup_claudebar() {
|
|
|
1077
1078
|
print_info "Launch from Applications or Spotlight to start monitoring quotas"
|
|
1078
1079
|
else
|
|
1079
1080
|
print_warning "Failed to install ClaudeBar via Homebrew"
|
|
1080
|
-
echo " Download manually:
|
|
1081
|
+
echo " Download manually: $claudebar_release_url"
|
|
1081
1082
|
fi
|
|
1082
1083
|
else
|
|
1083
1084
|
print_info "Skipped ClaudeBar installation"
|
package/setup.sh
CHANGED
|
@@ -10,7 +10,7 @@ shopt -s inherit_errexit 2>/dev/null || true
|
|
|
10
10
|
# AI Assistant Server Access Framework Setup Script
|
|
11
11
|
# Helps developers set up the framework for their infrastructure
|
|
12
12
|
#
|
|
13
|
-
# Version: 3.1.
|
|
13
|
+
# Version: 3.1.44
|
|
14
14
|
#
|
|
15
15
|
# Quick Install:
|
|
16
16
|
# npm install -g aidevops && aidevops update (recommended)
|