aidevops 3.1.66 → 3.1.68
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/VERSION +1 -1
- package/aidevops.sh +32 -1
- package/package.json +1 -1
- package/setup.sh +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1.
|
|
1
|
+
3.1.68
|
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.68
|
|
7
7
|
|
|
8
8
|
set -euo pipefail
|
|
9
9
|
|
|
@@ -3606,6 +3606,7 @@ cmd_help() {
|
|
|
3606
3606
|
echo " repo-sync <cmd> Daily git pull for repos in parent dirs (enable/disable/status/dirs)"
|
|
3607
3607
|
echo " update-tools Check for outdated tools (--update to auto-update)"
|
|
3608
3608
|
echo " repos [cmd] Manage registered projects (list/add/remove/clean)"
|
|
3609
|
+
echo " model-accounts-pool OAuth account pool (list/check/add/rotate/reset-cooldowns)"
|
|
3609
3610
|
echo " security <cmd> Security posture (check/audit/setup/status/summary)"
|
|
3610
3611
|
echo " ip-check <cmd> IP reputation checks (check/batch/report/providers)"
|
|
3611
3612
|
echo " secret <cmd> Manage secrets (set/list/run/init/import/status)"
|
|
@@ -3644,6 +3645,23 @@ cmd_help() {
|
|
|
3644
3645
|
echo " aidevops ip-check providers # List available providers"
|
|
3645
3646
|
echo " aidevops ip-check cache-stats# Show cache statistics"
|
|
3646
3647
|
echo ""
|
|
3648
|
+
echo "Model Accounts Pool (OAuth):"
|
|
3649
|
+
echo " aidevops model-accounts-pool list # List accounts + status"
|
|
3650
|
+
echo " aidevops model-accounts-pool check # Test token validity (live)"
|
|
3651
|
+
echo " aidevops model-accounts-pool add anthropic # Add Claude Pro/Max account"
|
|
3652
|
+
echo " aidevops model-accounts-pool add openai # Add ChatGPT Plus/Pro account"
|
|
3653
|
+
echo " aidevops model-accounts-pool add cursor # Add Cursor Pro account"
|
|
3654
|
+
echo " aidevops model-accounts-pool import claude-cli # Import from Claude CLI auth"
|
|
3655
|
+
echo " aidevops model-accounts-pool rotate [provider] # Rotate to next account"
|
|
3656
|
+
echo " aidevops model-accounts-pool reset-cooldowns # Clear rate-limit cooldowns"
|
|
3657
|
+
echo " aidevops model-accounts-pool remove <p> <email># Remove an account"
|
|
3658
|
+
echo ""
|
|
3659
|
+
echo " If you see 'Key Missing' or auth errors:"
|
|
3660
|
+
echo " aidevops model-accounts-pool list # 1. See what's in the pool"
|
|
3661
|
+
echo " aidevops model-accounts-pool check # 2. Test token validity"
|
|
3662
|
+
echo " aidevops model-accounts-pool reset-cooldowns # 3. Clear any cooldowns"
|
|
3663
|
+
echo " aidevops model-accounts-pool add anthropic # 4. Re-add if pool empty"
|
|
3664
|
+
echo ""
|
|
3647
3665
|
echo "Secrets:"
|
|
3648
3666
|
echo " aidevops secret set NAME # Store a secret (hidden input)"
|
|
3649
3667
|
echo " aidevops secret list # List secret names (never values)"
|
|
@@ -3893,6 +3911,19 @@ main() {
|
|
|
3893
3911
|
exit 1
|
|
3894
3912
|
fi
|
|
3895
3913
|
;;
|
|
3914
|
+
model-accounts-pool | map)
|
|
3915
|
+
shift
|
|
3916
|
+
local oauth_pool_helper="$AGENTS_DIR/scripts/oauth-pool-helper.sh"
|
|
3917
|
+
if [[ ! -f "$oauth_pool_helper" ]]; then
|
|
3918
|
+
oauth_pool_helper="$INSTALL_DIR/.agents/scripts/oauth-pool-helper.sh"
|
|
3919
|
+
fi
|
|
3920
|
+
if [[ -f "$oauth_pool_helper" ]]; then
|
|
3921
|
+
bash "$oauth_pool_helper" "$@"
|
|
3922
|
+
else
|
|
3923
|
+
print_error "oauth-pool-helper.sh not found. Run: aidevops update"
|
|
3924
|
+
exit 1
|
|
3925
|
+
fi
|
|
3926
|
+
;;
|
|
3896
3927
|
secret | secrets)
|
|
3897
3928
|
shift
|
|
3898
3929
|
local secret_helper="$AGENTS_DIR/scripts/secret-helper.sh"
|
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.68
|
|
14
14
|
#
|
|
15
15
|
# Quick Install:
|
|
16
16
|
# npm install -g aidevops && aidevops update (recommended)
|