aidevops 2.89.1 → 2.89.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
@@ -91,7 +91,7 @@ The result: AI agents that work *with* your development process, not around it.
91
91
 
92
92
  ### Agent Structure
93
93
 
94
- - 15 primary agents (Plan+, Build+, SEO, Marketing, etc.)
94
+ - Primary agents (Build+, SEO, Marketing, etc.) with @plan-plus subagent for planning-only mode
95
95
  - 552+ subagent markdown files organized by domain
96
96
  - 147 helper scripts in `.agent/scripts/`
97
97
  - 14 slash commands for common workflows
@@ -273,9 +273,9 @@ opencode auth login
273
273
 
274
274
  **Multi-account load balancing:** Add multiple Google accounts for automatic rate limit distribution and failover. See the [plugin documentation](https://github.com/NoeFabris/opencode-antigravity-auth) for model configuration.
275
275
 
276
- ### OpenCode Anthropic OAuth Plugin
276
+ ### OpenCode Anthropic OAuth (Built-in)
277
277
 
278
- The setup automatically installs the [opencode-anthropic-auth](https://github.com/anomalyco/opencode-anthropic-auth) plugin, enabling OAuth authentication for Claude Pro/Max accounts. This allows Claude subscribers to use OpenCode with zero API costs.
278
+ OpenCode v1.1.36+ includes Anthropic OAuth authentication natively. No external plugin is needed.
279
279
 
280
280
  **After setup, authenticate:**
281
281
 
@@ -290,19 +290,6 @@ opencode auth login
290
290
  - **Zero cost** for Claude Pro/Max subscribers (covered by subscription)
291
291
  - **Automatic token refresh** - No manual re-authentication needed
292
292
  - **Beta features enabled** - Extended thinking modes and latest features
293
- - **Three authentication methods:**
294
- - Claude Pro/Max OAuth (recommended for subscribers)
295
- - Create API Key via OAuth
296
- - Manual API key entry
297
-
298
- **Available models:**
299
-
300
- All Anthropic models available to Pro/Max subscribers, including:
301
- - `claude-sonnet-4-20250514`
302
- - `claude-opus-4-5`
303
- - Extended thinking modes
304
-
305
- See the [plugin documentation](https://github.com/anomalyco/opencode-anthropic-auth) and `.agent/tools/opencode/opencode-anthropic-auth.md` for complete setup and troubleshooting.
306
293
 
307
294
  ### Oh-My-OpenCode Plugin (Optional)
308
295
 
@@ -1238,7 +1225,7 @@ Ordered as they appear in OpenCode Tab selector and other AI assistants (15 tota
1238
1225
 
1239
1226
  | Name | File | Purpose | MCPs Enabled |
1240
1227
  |------|------|---------|--------------|
1241
- | Plan+ | `plan-plus.md` | Planning with semantic search, writes to TODO.md/todo/ | context7, augment, repomix |
1228
+ | @plan-plus | `plan-plus.md` | Planning-only subagent (Build+ handles planning by default) | context7, augment, repomix |
1242
1229
  | Build+ | `build-plus.md` | Enhanced Build with context tools | context7, augment, repomix |
1243
1230
  | Build-Agent | `build-agent.md` | Design and improve AI agents | context7, augment, repomix |
1244
1231
  | Build-MCP | `build-mcp.md` | Build MCP servers with TS+Bun+ElysiaJS | context7, augment, repomix |
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.89.1
1
+ 2.89.3
package/aidevops.sh CHANGED
@@ -3,7 +3,7 @@
3
3
  # AI DevOps Framework CLI
4
4
  # Usage: aidevops <command> [options]
5
5
  #
6
- # Version: 2.89.1
6
+ # Version: 2.89.3
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": "2.89.1",
3
+ "version": "2.89.3",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "main": "index.js",
package/setup.sh CHANGED
@@ -3,7 +3,7 @@
3
3
  # AI Assistant Server Access Framework Setup Script
4
4
  # Helps developers set up the framework for their infrastructure
5
5
  #
6
- # Version: 2.89.1
6
+ # Version: 2.89.3
7
7
  #
8
8
  # Quick Install (one-liner):
9
9
  # bash <(curl -fsSL https://aidevops.dev/install)
@@ -2862,18 +2862,13 @@ setup_opencode_plugins() {
2862
2862
  print_info "See: https://github.com/NoeFabris/opencode-antigravity-auth"
2863
2863
  echo ""
2864
2864
 
2865
- # Setup Anthropic OAuth plugin (Claude OAuth)
2866
- print_info "Setting up Anthropic OAuth plugin..."
2867
- add_opencode_plugin "opencode-anthropic-auth" "opencode-anthropic-auth@latest" "$opencode_config"
2868
-
2869
- print_info "Anthropic OAuth plugin enables Claude Pro/Max authentication"
2870
- print_info "Zero cost for Claude subscribers, auto token refresh, beta features"
2871
- print_info "See: https://github.com/anomalyco/opencode-anthropic-auth"
2872
- echo ""
2865
+ # Note: opencode-anthropic-auth is built into OpenCode v1.1.36+
2866
+ # Adding it as an external plugin causes TypeError due to double-loading.
2867
+ # Removed in v2.90.0 - see PR #230.
2873
2868
 
2874
2869
  print_info "After setup, authenticate with: opencode auth login"
2875
2870
  print_info " • For Google OAuth: Select 'Google' → 'OAuth with Google (Antigravity)'"
2876
- print_info " • For Claude OAuth: Select 'Anthropic' → 'Claude Pro/Max'"
2871
+ print_info " • For Claude OAuth: Select 'Anthropic' → 'Claude Pro/Max' (built-in)"
2877
2872
 
2878
2873
  return 0
2879
2874
  }