aidevops 3.1.74 → 3.1.76
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 +14 -7
- package/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup.sh +1 -1
package/README.md
CHANGED
|
@@ -273,21 +273,28 @@ See `.agents/tools/task-management/beads.md` for complete documentation and inst
|
|
|
273
273
|
|
|
274
274
|
### OpenCode Anthropic OAuth (Built-in)
|
|
275
275
|
|
|
276
|
-
OpenCode
|
|
276
|
+
OpenCode includes Anthropic OAuth authentication natively — no API key needed. OAuth is covered by your Claude Pro/Max subscription at zero additional cost.
|
|
277
277
|
|
|
278
|
-
**
|
|
278
|
+
**Authenticate via the pool (recommended):**
|
|
279
279
|
|
|
280
280
|
```bash
|
|
281
|
-
|
|
282
|
-
#
|
|
283
|
-
#
|
|
281
|
+
aidevops model-accounts-pool add anthropic
|
|
282
|
+
# Opens browser OAuth flow — no API key required
|
|
283
|
+
# Restart OpenCode after adding
|
|
284
284
|
```
|
|
285
285
|
|
|
286
|
+
**Or via the OpenCode TUI:**
|
|
287
|
+
|
|
288
|
+
Open OpenCode → `Ctrl+A` → Select **Anthropic** → **Login with Claude.ai** → follow browser OAuth flow.
|
|
289
|
+
|
|
290
|
+
> **Note:** `opencode auth login` prompts for an API key, not OAuth. Use the commands above for subscription-based OAuth access.
|
|
291
|
+
|
|
286
292
|
**Benefits:**
|
|
287
293
|
|
|
288
294
|
- **Zero cost** for Claude Pro/Max subscribers (covered by subscription)
|
|
289
|
-
- **Automatic token refresh**
|
|
290
|
-
- **
|
|
295
|
+
- **Automatic token refresh** — no manual re-authentication needed
|
|
296
|
+
- **Multiple accounts** — add more accounts to the pool for automatic rotation when one hits rate limits
|
|
297
|
+
- **Beta features enabled** — extended thinking modes and latest features
|
|
291
298
|
|
|
292
299
|
### Cursor Models via Pool Proxy
|
|
293
300
|
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1.
|
|
1
|
+
3.1.76
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
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.76
|
|
14
14
|
#
|
|
15
15
|
# Quick Install:
|
|
16
16
|
# npm install -g aidevops && aidevops update (recommended)
|