aidevops 3.32.198 → 3.32.199
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 +4 -4
- package/VERSION +1 -1
- package/aidevops.sh +19 -3
- package/package.json +1 -1
- package/setup.sh +1 -1
package/README.md
CHANGED
|
@@ -60,7 +60,7 @@ The result: an AI operations platform that manages projects across every busines
|
|
|
60
60
|
[](https://github.com/marcusquinn)
|
|
61
61
|
|
|
62
62
|
<!-- Release & Version Info -->
|
|
63
|
-
[](https://github.com/marcusquinn/aidevops/releases)
|
|
64
64
|
[](https://www.npmjs.com/package/aidevops)
|
|
65
65
|
[](https://github.com/marcusquinn/homebrew-tap)
|
|
66
66
|
[](https://github.com/marcusquinn/aidevops)
|
|
@@ -707,7 +707,7 @@ See `.agents/tools/terminal/terminal-title.md` for customization options.
|
|
|
707
707
|
|
|
708
708
|
**Quality Control & Monitoring:**
|
|
709
709
|
|
|
710
|
-
- **Multi-Platform Analysis**: SonarCloud, CodeFactor, Codacy, CodeRabbit, Qlty,
|
|
710
|
+
- **Multi-Platform Analysis**: SonarCloud, CodeFactor, Codacy, CodeRabbit, Qlty, Snyk
|
|
711
711
|
- **Review gate preferences**: choose whether true review-bot rate limits block merges (`aidevops review-gate owner/repo wait`) or allow merge with follow-up quality coverage (`aidevops review-gate owner/repo pass`, the default). Per-tool overrides are supported, for example `aidevops review-gate owner/repo --tool coderabbitai wait`. Failed, skipped, or placeholder bot states are not treated as rate limits and continue to block until a real review/status appears or a human resolves them.
|
|
712
712
|
- **Performance Auditing**: PageSpeed Insights, Lighthouse, WebPageTest, Core Web Vitals (`/performance` command)
|
|
713
713
|
- **SEO Toolchain**: 40+ SEO subagents including Semrush, Ahrefs, ContentKing, Screaming Frog, Bing Webmaster Tools, Rich Results Test, programmatic SEO, analytics tracking, schema validation, content analysis, keyword mapping, and AI readiness
|
|
@@ -1317,7 +1317,7 @@ The setup script offers to install these tools automatically.
|
|
|
1317
1317
|
- **[Secretlint](https://github.com/secretlint/secretlint)**: Detect exposed secrets in code
|
|
1318
1318
|
- **[OSV Scanner](https://google.github.io/osv-scanner/)**: Google's vulnerability database scanner
|
|
1319
1319
|
- **[Qlty](https://qlty.sh/)**: Universal code quality platform (70+ linters, auto-fixes)
|
|
1320
|
-
- **
|
|
1320
|
+
- **Retired review compatibility**: Historical Gemini Code Assist GitHub reviews remain readable, but the sunset integration is no longer advertised or configurable
|
|
1321
1321
|
|
|
1322
1322
|
### **AI Prompt Optimization**
|
|
1323
1323
|
|
|
@@ -2848,7 +2848,7 @@ See `.agents/tools/credentials/multi-tenant.md` for complete documentation.
|
|
|
2848
2848
|
|
|
2849
2849
|
**Quality Assurance:**
|
|
2850
2850
|
|
|
2851
|
-
- Multi-platform analysis (SonarCloud, CodeFactor, Codacy, CodeRabbit, Qlty, Snyk
|
|
2851
|
+
- Multi-platform analysis (SonarCloud, CodeFactor, Codacy, CodeRabbit, Qlty, Snyk)
|
|
2852
2852
|
- Automated security monitoring and vulnerability detection
|
|
2853
2853
|
|
|
2854
2854
|
## **Contributing & License**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.32.
|
|
1
|
+
3.32.199
|
package/aidevops.sh
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
# AI DevOps Framework CLI
|
|
6
6
|
# Usage: aidevops <command> [options]
|
|
7
7
|
#
|
|
8
|
-
# Version: 3.32.
|
|
8
|
+
# Version: 3.32.199
|
|
9
9
|
|
|
10
10
|
set -euo pipefail
|
|
11
11
|
|
|
@@ -1680,6 +1680,23 @@ _cmd_client_format() {
|
|
|
1680
1680
|
# Main entry point
|
|
1681
1681
|
main() {
|
|
1682
1682
|
local command="${1:-help}"
|
|
1683
|
+
local check_workflows_helper="check-workflows-helper.sh"
|
|
1684
|
+
shift || true
|
|
1685
|
+
|
|
1686
|
+
# Help for inventory commands must bypass repository auto-detection and
|
|
1687
|
+
# version checks. Those startup checks may read the repository registry,
|
|
1688
|
+
# while help must remain bounded and side-effect-free.
|
|
1689
|
+
if [[ "$command" == "check-workflows" || "$command" == "workflows" ]]; then
|
|
1690
|
+
local arg
|
|
1691
|
+
for arg in "$@"; do
|
|
1692
|
+
case "$arg" in
|
|
1693
|
+
-h | --help)
|
|
1694
|
+
_dispatch_helper "$check_workflows_helper" "$check_workflows_helper" "$@"
|
|
1695
|
+
return $?
|
|
1696
|
+
;;
|
|
1697
|
+
esac
|
|
1698
|
+
done
|
|
1699
|
+
fi
|
|
1683
1700
|
|
|
1684
1701
|
# Auto-detect unregistered repo on any command (silent check)
|
|
1685
1702
|
_main_check_unregistered "$command"
|
|
@@ -1689,7 +1706,6 @@ main() {
|
|
|
1689
1706
|
_main_check_version
|
|
1690
1707
|
fi
|
|
1691
1708
|
|
|
1692
|
-
shift || true
|
|
1693
1709
|
case "$command" in
|
|
1694
1710
|
init | i) cmd_init "$@" ;;
|
|
1695
1711
|
setup) cmd_setup "$@" ;;
|
|
@@ -1711,7 +1727,7 @@ main() {
|
|
|
1711
1727
|
pulse) _dispatch_helper "pulse-session-helper.sh" "pulse-session-helper.sh" "$@" ;;
|
|
1712
1728
|
schedule) _dispatch_helper "deferred-job-helper.sh" "deferred-job-helper.sh" "$@" ;;
|
|
1713
1729
|
launch-worker | launch_worker) cmd_launch_worker "$@" ;;
|
|
1714
|
-
check-workflows | workflows) _dispatch_helper "
|
|
1730
|
+
check-workflows | workflows) _dispatch_helper "$check_workflows_helper" "$check_workflows_helper" "$@" ;;
|
|
1715
1731
|
sync-workflows) _dispatch_helper "sync-workflows-helper.sh" "sync-workflows-helper.sh" "$@" ;;
|
|
1716
1732
|
metrics) _dispatch_helper "repo-metrics-helper.sh" "repo-metrics-helper.sh" "$@" ;;
|
|
1717
1733
|
badges)
|
package/package.json
CHANGED
package/setup.sh
CHANGED
|
@@ -17,7 +17,7 @@ fi
|
|
|
17
17
|
# AI Assistant Server Access Framework Setup Script
|
|
18
18
|
# Helps developers set up the framework for their infrastructure
|
|
19
19
|
#
|
|
20
|
-
# Version: 3.32.
|
|
20
|
+
# Version: 3.32.199
|
|
21
21
|
#
|
|
22
22
|
# Quick Install:
|
|
23
23
|
# npm install -g aidevops && aidevops update (recommended)
|