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 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 v1.1.36+ includes Anthropic OAuth authentication natively. No external plugin is needed.
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
- **After setup, authenticate:**
278
+ **Authenticate via the pool (recommended):**
279
279
 
280
280
  ```bash
281
- opencode auth login
282
- # Select: Anthropic Claude Pro/Max
283
- # Follow OAuth flow in browser
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** - No manual re-authentication needed
290
- - **Beta features enabled** - Extended thinking modes and latest features
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.74
1
+ 3.1.76
package/aidevops.sh CHANGED
@@ -3,7 +3,7 @@
3
3
  # AI DevOps Framework CLI
4
4
  # Usage: aidevops <command> [options]
5
5
  #
6
- # Version: 3.1.74
6
+ # Version: 3.1.76
7
7
 
8
8
  set -euo pipefail
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.1.74",
3
+ "version": "3.1.76",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "bin": {
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.74
13
+ # Version: 3.1.76
14
14
  #
15
15
  # Quick Install:
16
16
  # npm install -g aidevops && aidevops update (recommended)