aidevops 3.1.43 → 3.1.45
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.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.45
|
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"
|
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.45
|
|
14
14
|
#
|
|
15
15
|
# Quick Install:
|
|
16
16
|
# npm install -g aidevops && aidevops update (recommended)
|