aidevops 3.1.79 → 3.1.81
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 +2 -1
- package/VERSION +1 -1
- package/aidevops.sh +19 -3
- package/package.json +1 -1
- package/setup.sh +1 -1
package/README.md
CHANGED
|
@@ -179,6 +179,7 @@ git clone https://github.com/marcusquinn/aidevops.git ~/Git/aidevops
|
|
|
179
179
|
|
|
180
180
|
```bash
|
|
181
181
|
aidevops status # Check what's installed
|
|
182
|
+
aidevops doctor # Detect duplicate installs and PATH conflicts
|
|
182
183
|
aidevops update # Update framework + check registered projects
|
|
183
184
|
aidevops auto-update # Manage automatic update polling (every 10 min)
|
|
184
185
|
aidevops init # Initialize aidevops in any project
|
|
@@ -419,7 +420,7 @@ aidevops model-accounts-pool remove <p> <email># Remove an account
|
|
|
419
420
|
|
|
420
421
|
> **Note:** `reset-cooldowns` clears cooldowns in the pool file. If OpenCode is already running, the in-memory token endpoint cooldown is only cleared when OpenCode restarts or when you use the `/model-accounts-pool reset-cooldowns` slash command inside an active session.
|
|
421
422
|
|
|
422
|
-
**If you prefer guided help:** Open OpenCode with a free model (OpenCode Zen includes free models that don't require any API key or subscription) and
|
|
423
|
+
**If you prefer guided help:** Open OpenCode with a free model (OpenCode Zen includes free models that don't require any API key or subscription) and run the auth troubleshooting agent by typing:
|
|
423
424
|
|
|
424
425
|
```
|
|
425
426
|
@auth-troubleshooting
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1.
|
|
1
|
+
3.1.81
|
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.
|
|
6
|
+
# Version: 3.1.81
|
|
7
7
|
|
|
8
8
|
set -euo pipefail
|
|
9
9
|
|
|
@@ -3599,6 +3599,7 @@ cmd_help() {
|
|
|
3599
3599
|
echo " skills <cmd> Discover skills (search/browse/describe/recommend)"
|
|
3600
3600
|
echo " plugin <cmd> Manage plugins (add/list/update/enable/disable/remove)"
|
|
3601
3601
|
echo " status Check installation status of all components"
|
|
3602
|
+
echo " doctor Detect duplicate installs and PATH conflicts (--fix to resolve)"
|
|
3602
3603
|
echo " update Update aidevops to the latest version (alias: upgrade)"
|
|
3603
3604
|
echo " upgrade Alias for update"
|
|
3604
3605
|
echo " pulse <cmd> Session-based pulse control (start/stop/status)"
|
|
@@ -3624,6 +3625,8 @@ cmd_help() {
|
|
|
3624
3625
|
echo " aidevops upgrade-planning # Upgrade planning files to latest"
|
|
3625
3626
|
echo " aidevops features # List available features"
|
|
3626
3627
|
echo " aidevops status # Check what's installed"
|
|
3628
|
+
echo " aidevops doctor # Find duplicate/conflicting installs"
|
|
3629
|
+
echo " aidevops doctor --fix # Interactively remove duplicates"
|
|
3627
3630
|
echo " aidevops update # Update framework + check projects"
|
|
3628
3631
|
echo " aidevops repos # List registered projects"
|
|
3629
3632
|
echo " aidevops repos add # Register current project"
|
|
@@ -3650,13 +3653,13 @@ cmd_help() {
|
|
|
3650
3653
|
echo " aidevops model-accounts-pool status # Pool health at a glance"
|
|
3651
3654
|
echo " aidevops model-accounts-pool list # Per-account detail"
|
|
3652
3655
|
echo " aidevops model-accounts-pool check # Live token validity test"
|
|
3653
|
-
echo " aidevops model-accounts-pool rotate [provider] # Switch to next account NOW"
|
|
3656
|
+
echo " aidevops model-accounts-pool rotate [provider] # Switch to next available account NOW (use when rate-limited)"
|
|
3654
3657
|
echo " aidevops model-accounts-pool reset-cooldowns # Clear rate-limit cooldowns"
|
|
3655
3658
|
echo " aidevops model-accounts-pool add anthropic # Add Claude Pro/Max account"
|
|
3656
3659
|
echo " aidevops model-accounts-pool add openai # Add ChatGPT Plus/Pro account"
|
|
3657
3660
|
echo " aidevops model-accounts-pool add cursor # Add Cursor Pro account"
|
|
3658
3661
|
echo " aidevops model-accounts-pool import claude-cli # Import from Claude CLI auth"
|
|
3659
|
-
echo " aidevops model-accounts-pool assign-pending <
|
|
3662
|
+
echo " aidevops model-accounts-pool assign-pending <provider># Assign stranded token"
|
|
3660
3663
|
echo " aidevops model-accounts-pool remove <p> <email># Remove an account"
|
|
3661
3664
|
echo ""
|
|
3662
3665
|
echo " Auth recovery (run these in order if model is broken):"
|
|
@@ -3899,6 +3902,19 @@ main() {
|
|
|
3899
3902
|
exit 1
|
|
3900
3903
|
fi
|
|
3901
3904
|
;;
|
|
3905
|
+
doctor | doc)
|
|
3906
|
+
shift
|
|
3907
|
+
local doctor_helper="$AGENTS_DIR/scripts/doctor-helper.sh"
|
|
3908
|
+
if [[ ! -f "$doctor_helper" ]]; then
|
|
3909
|
+
doctor_helper="$INSTALL_DIR/.agents/scripts/doctor-helper.sh"
|
|
3910
|
+
fi
|
|
3911
|
+
if [[ -f "$doctor_helper" ]]; then
|
|
3912
|
+
bash "$doctor_helper" "$@"
|
|
3913
|
+
else
|
|
3914
|
+
print_error "doctor-helper.sh not found. Run: aidevops update"
|
|
3915
|
+
exit 1
|
|
3916
|
+
fi
|
|
3917
|
+
;;
|
|
3902
3918
|
detect | scan)
|
|
3903
3919
|
cmd_detect
|
|
3904
3920
|
;;
|
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.81
|
|
14
14
|
#
|
|
15
15
|
# Quick Install:
|
|
16
16
|
# npm install -g aidevops && aidevops update (recommended)
|