diff --git a/.agents/scripts/101domains-helper.sh b/.agents/scripts/101domains-helper.sh index ef95f68b..bf4ae067 100755 --- a/.agents/scripts/101domains-helper.sh +++ b/.agents/scripts/101domains-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2034,SC2155 set -euo pipefail # 101domains Registrar Helper Script diff --git a/.agents/scripts/_archive/add-missing-returns.sh b/.agents/scripts/_archive/add-missing-returns.sh index c72f8083..cf516aa1 100755 --- a/.agents/scripts/_archive/add-missing-returns.sh +++ b/.agents/scripts/_archive/add-missing-returns.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2030,SC2031,SC2129,SC2317 # Add Missing Return Statements # Systematically add return 0 to functions missing explicit returns diff --git a/.agents/scripts/_archive/fix-auth-headers.sh b/.agents/scripts/_archive/fix-auth-headers.sh index 6f38abc2..b5a87eab 100755 --- a/.agents/scripts/_archive/fix-auth-headers.sh +++ b/.agents/scripts/_archive/fix-auth-headers.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2317 # Fix Authorization Header String Literals # Replace repeated "Authorization: Bearer" patterns with constants diff --git a/.agents/scripts/_archive/fix-common-strings.sh b/.agents/scripts/_archive/fix-common-strings.sh index 4d4c6083..cc73d8aa 100755 --- a/.agents/scripts/_archive/fix-common-strings.sh +++ b/.agents/scripts/_archive/fix-common-strings.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2016,SC2030,SC2031,SC2317 # Common String Literals Fix Script # Fix the most common repeated string literals for SonarCloud S1192 compliance diff --git a/.agents/scripts/_archive/fix-content-type.sh b/.agents/scripts/_archive/fix-content-type.sh index fc55f5a3..2a23d1b3 100755 --- a/.agents/scripts/_archive/fix-content-type.sh +++ b/.agents/scripts/_archive/fix-content-type.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2016,SC2317 # Fix Content-Type String Literals # Replace repeated "Content-Type: application/json" with constants diff --git a/.agents/scripts/_archive/fix-error-messages.sh b/.agents/scripts/_archive/fix-error-messages.sh index 11880dca..86ef430f 100755 --- a/.agents/scripts/_archive/fix-error-messages.sh +++ b/.agents/scripts/_archive/fix-error-messages.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2317 # Fix Common Error Message String Literals # Replace repeated error message patterns with constants diff --git a/.agents/scripts/_archive/fix-misplaced-returns.sh b/.agents/scripts/_archive/fix-misplaced-returns.sh index edf2c7ff..5ad83f35 100755 --- a/.agents/scripts/_archive/fix-misplaced-returns.sh +++ b/.agents/scripts/_archive/fix-misplaced-returns.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2016 # Script to fix misplaced return statements in mainwp-helper.sh # These were introduced by the earlier mass fix script diff --git a/.agents/scripts/_archive/fix-remaining-literals.sh b/.agents/scripts/_archive/fix-remaining-literals.sh index 93190a1d..bc986612 100755 --- a/.agents/scripts/_archive/fix-remaining-literals.sh +++ b/.agents/scripts/_archive/fix-remaining-literals.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2016,SC2030,SC2031,SC2317 # Fix Remaining String Literals # Target specific high-impact string literal patterns diff --git a/.agents/scripts/_archive/fix-return-statements.sh b/.agents/scripts/_archive/fix-return-statements.sh index f9c856d8..90aee6fe 100755 --- a/.agents/scripts/_archive/fix-return-statements.sh +++ b/.agents/scripts/_archive/fix-return-statements.sh @@ -1,5 +1,4 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 # Script to add return statements to functions that need them # Based on SonarCloud S7682 issues diff --git a/.agents/scripts/_archive/fix-sc2155-simple.sh b/.agents/scripts/_archive/fix-sc2155-simple.sh index 9e651d6b..323050a8 100755 --- a/.agents/scripts/_archive/fix-sc2155-simple.sh +++ b/.agents/scripts/_archive/fix-sc2155-simple.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2016,SC2034,SC2317 # Fix SC2155 Issues - Simple Approach # Fix "declare and assign separately" issues diff --git a/.agents/scripts/_archive/fix-shellcheck-critical.sh b/.agents/scripts/_archive/fix-shellcheck-critical.sh index e0f1b444..d6282655 100755 --- a/.agents/scripts/_archive/fix-shellcheck-critical.sh +++ b/.agents/scripts/_archive/fix-shellcheck-critical.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2317 # Fix Critical ShellCheck Issues # Address SC2155 (declare and assign separately) and SC2181 (exit code checking) diff --git a/.agents/scripts/_archive/fix-string-literals.sh b/.agents/scripts/_archive/fix-string-literals.sh index 2e488c30..0a712299 100755 --- a/.agents/scripts/_archive/fix-string-literals.sh +++ b/.agents/scripts/_archive/fix-string-literals.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2001,SC2030,SC2031,SC2154,SC2317 # String Literals Fix Script # Identify and fix repeated string literals for SonarCloud S1192 compliance diff --git a/.agents/scripts/agent-browser-helper.sh b/.agents/scripts/agent-browser-helper.sh index d774501d..1045fa71 100755 --- a/.agents/scripts/agent-browser-helper.sh +++ b/.agents/scripts/agent-browser-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 set -euo pipefail # Agent Browser Helper - Headless Browser Automation CLI for AI Agents diff --git a/.agents/scripts/agno-setup.sh b/.agents/scripts/agno-setup.sh index e193aa26..87aaa2bb 100755 --- a/.agents/scripts/agno-setup.sh +++ b/.agents/scripts/agno-setup.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 set -euo pipefail # Agno + Agent-UI Setup Script for AI DevOps Framework diff --git a/.agents/scripts/auto-version-bump.sh b/.agents/scripts/auto-version-bump.sh index 4c8554e8..a3089bb8 100755 --- a/.agents/scripts/auto-version-bump.sh +++ b/.agents/scripts/auto-version-bump.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2181 set -euo pipefail # Auto Version Bump Script for AI DevOps Framework diff --git a/.agents/scripts/closte-helper.sh b/.agents/scripts/closte-helper.sh index ad37af25..30af1777 100755 --- a/.agents/scripts/closte-helper.sh +++ b/.agents/scripts/closte-helper.sh @@ -1,5 +1,4 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 set -euo pipefail # Closte Helper - Placeholder for future implementation diff --git a/.agents/scripts/cloudron-helper.sh b/.agents/scripts/cloudron-helper.sh index 55202542..b347f86b 100755 --- a/.agents/scripts/cloudron-helper.sh +++ b/.agents/scripts/cloudron-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2129,SC2317 set -euo pipefail # Cloudron Helper Script diff --git a/.agents/scripts/codacy-cli-chunked.sh b/.agents/scripts/codacy-cli-chunked.sh index 60c5beba..1b83b5d4 100755 --- a/.agents/scripts/codacy-cli-chunked.sh +++ b/.agents/scripts/codacy-cli-chunked.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2015,SC2034,SC2086,SC2155,SC2317 set -euo pipefail # Codacy CLI v2 Chunked Analysis Script diff --git a/.agents/scripts/codacy-cli.sh b/.agents/scripts/codacy-cli.sh index c2c46f5d..bf36bd53 100755 --- a/.agents/scripts/codacy-cli.sh +++ b/.agents/scripts/codacy-cli.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2015,SC2181,SC2317 set -euo pipefail # Codacy CLI v2 Integration Script diff --git a/.agents/scripts/code-audit-helper.sh b/.agents/scripts/code-audit-helper.sh index d5b6367b..a9aeebbe 100755 --- a/.agents/scripts/code-audit-helper.sh +++ b/.agents/scripts/code-audit-helper.sh @@ -1,5 +1,4 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 set -euo pipefail # Code Audit Helper - Placeholder for future implementation diff --git a/.agents/scripts/coderabbit-cli.sh b/.agents/scripts/coderabbit-cli.sh index 62aaef76..7e3f4b4b 100755 --- a/.agents/scripts/coderabbit-cli.sh +++ b/.agents/scripts/coderabbit-cli.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2317 set -euo pipefail # CodeRabbit CLI Integration Script diff --git a/.agents/scripts/coderabbit-pro-analysis.sh b/.agents/scripts/coderabbit-pro-analysis.sh index 489ecb15..ca086702 100755 --- a/.agents/scripts/coderabbit-pro-analysis.sh +++ b/.agents/scripts/coderabbit-pro-analysis.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 set -euo pipefail # CodeRabbit Pro Analysis Trigger Script diff --git a/.agents/scripts/comprehensive-quality-fix.sh b/.agents/scripts/comprehensive-quality-fix.sh index 1c4e6490..8bfbe3f0 100755 --- a/.agents/scripts/comprehensive-quality-fix.sh +++ b/.agents/scripts/comprehensive-quality-fix.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2016 set -euo pipefail # Comprehensive script to fix remaining SonarCloud issues diff --git a/.agents/scripts/coolify-cli-helper.sh b/.agents/scripts/coolify-cli-helper.sh index 1ded3a6b..0959b4f6 100755 --- a/.agents/scripts/coolify-cli-helper.sh +++ b/.agents/scripts/coolify-cli-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 # Coolify CLI Helper Script # Comprehensive Coolify self-hosted deployment and management using Coolify CLI diff --git a/.agents/scripts/coolify-helper.sh b/.agents/scripts/coolify-helper.sh index d3542432..50ecad1f 100755 --- a/.agents/scripts/coolify-helper.sh +++ b/.agents/scripts/coolify-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2129 set -euo pipefail # Coolify Helper Script diff --git a/.agents/scripts/crawl4ai-examples.sh b/.agents/scripts/crawl4ai-examples.sh index 818b2de5..022fe83e 100755 --- a/.agents/scripts/crawl4ai-examples.sh +++ b/.agents/scripts/crawl4ai-examples.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2119,SC2120,SC2155 set -euo pipefail # Crawl4AI Examples Script diff --git a/.agents/scripts/crawl4ai-helper.sh b/.agents/scripts/crawl4ai-helper.sh index 2aed86f3..bcbd9d40 100755 --- a/.agents/scripts/crawl4ai-helper.sh +++ b/.agents/scripts/crawl4ai-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2086,SC2154 set -euo pipefail # Crawl4AI Helper Script diff --git a/.agents/scripts/dev-browser-helper.sh b/.agents/scripts/dev-browser-helper.sh index 427e5a2b..4aadd30a 100755 --- a/.agents/scripts/dev-browser-helper.sh +++ b/.agents/scripts/dev-browser-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2162 # Dev-Browser Helper - Stateful Browser Automation # Part of AI DevOps Framework diff --git a/.agents/scripts/dns-helper.sh b/.agents/scripts/dns-helper.sh index 72c8bd9b..7b0c5537 100755 --- a/.agents/scripts/dns-helper.sh +++ b/.agents/scripts/dns-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2153,SC2155 set -euo pipefail # DNS Management Helper Script diff --git a/.agents/scripts/dspy-helper.sh b/.agents/scripts/dspy-helper.sh index 043a80c3..1a66fc52 100755 --- a/.agents/scripts/dspy-helper.sh +++ b/.agents/scripts/dspy-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 set -euo pipefail # DSPy Helper Script for AI DevOps Framework diff --git a/.agents/scripts/dspyground-helper.sh b/.agents/scripts/dspyground-helper.sh index 755dad75..b9311163 100755 --- a/.agents/scripts/dspyground-helper.sh +++ b/.agents/scripts/dspyground-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2154,SC2317 set -euo pipefail # DSPyGround Helper Script for AI DevOps Framework diff --git a/.agents/scripts/eeat-score-helper.sh b/.agents/scripts/eeat-score-helper.sh index 9b3caa4f..3a508f2b 100755 --- a/.agents/scripts/eeat-score-helper.sh +++ b/.agents/scripts/eeat-score-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2034 # E-E-A-T Score Helper Script # Content quality scoring using Google's E-E-A-T framework diff --git a/.agents/scripts/efficient-return-fix.sh b/.agents/scripts/efficient-return-fix.sh index 8f6e3295..8f47554d 100755 --- a/.agents/scripts/efficient-return-fix.sh +++ b/.agents/scripts/efficient-return-fix.sh @@ -1,5 +1,4 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 set -euo pipefail # Efficient script to add return statements to functions that need them diff --git a/.agents/scripts/find-missing-returns.sh b/.agents/scripts/find-missing-returns.sh index 20778b47..d66f766e 100755 --- a/.agents/scripts/find-missing-returns.sh +++ b/.agents/scripts/find-missing-returns.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 set -euo pipefail # Find Functions Missing Return Statements diff --git a/.agents/scripts/git-platforms-helper.sh b/.agents/scripts/git-platforms-helper.sh index 86500fa6..84fc43ef 100755 --- a/.agents/scripts/git-platforms-helper.sh +++ b/.agents/scripts/git-platforms-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2034,SC2154,SC2155,SC2162,SC2181,SC2317 set -euo pipefail # Git Platforms Helper Script diff --git a/.agents/scripts/gitea-cli-helper.sh b/.agents/scripts/gitea-cli-helper.sh index 78a1ee39..11434a4b 100755 --- a/.agents/scripts/gitea-cli-helper.sh +++ b/.agents/scripts/gitea-cli-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 # Gitea CLI Helper Script # Comprehensive Gitea management using tea (Gitea CLI) and API diff --git a/.agents/scripts/github-cli-helper.sh b/.agents/scripts/github-cli-helper.sh index 71e1f3fc..215a63b0 100755 --- a/.agents/scripts/github-cli-helper.sh +++ b/.agents/scripts/github-cli-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2034 # GitHub CLI Helper Script # Comprehensive GitHub management using GitHub CLI (gh) diff --git a/.agents/scripts/gitlab-cli-helper.sh b/.agents/scripts/gitlab-cli-helper.sh index 47b496e0..6acbbc29 100755 --- a/.agents/scripts/gitlab-cli-helper.sh +++ b/.agents/scripts/gitlab-cli-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2034 # GitLab CLI Helper Script # Comprehensive GitLab management using GitLab CLI (glab) diff --git a/.agents/scripts/hetzner-helper.sh b/.agents/scripts/hetzner-helper.sh index 8cc5c8f7..496394a7 100755 --- a/.agents/scripts/hetzner-helper.sh +++ b/.agents/scripts/hetzner-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2029,SC2129 set -euo pipefail # Hetzner Helper Script diff --git a/.agents/scripts/hostinger-helper.sh b/.agents/scripts/hostinger-helper.sh index e68e20c6..54c6f1d4 100755 --- a/.agents/scripts/hostinger-helper.sh +++ b/.agents/scripts/hostinger-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 set -euo pipefail # Hostinger Helper Script diff --git a/.agents/scripts/keyword-research-helper.sh b/.agents/scripts/keyword-research-helper.sh index e5cc8e8e..02b32971 100755 --- a/.agents/scripts/keyword-research-helper.sh +++ b/.agents/scripts/keyword-research-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2034,SC2086,SC2155,SC2162 # Keyword Research Helper Script # Comprehensive keyword research with SERP weakness detection and opportunity scoring diff --git a/.agents/scripts/linter-manager.sh b/.agents/scripts/linter-manager.sh index 01c36ccc..705c6400 100755 --- a/.agents/scripts/linter-manager.sh +++ b/.agents/scripts/linter-manager.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 set -euo pipefail # Linter Manager - CodeFactor-Inspired Multi-Language Linter Installation diff --git a/.agents/scripts/linters-local.sh b/.agents/scripts/linters-local.sh index d4c5f027..b9adfd07 100755 --- a/.agents/scripts/linters-local.sh +++ b/.agents/scripts/linters-local.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2086 # ============================================================================= # Local Linters - Fast Offline Quality Checks # ============================================================================= diff --git a/.agents/scripts/localhost-helper.sh b/.agents/scripts/localhost-helper.sh index 5f354738..1c5ee157 100755 --- a/.agents/scripts/localhost-helper.sh +++ b/.agents/scripts/localhost-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2317 set -euo pipefail # Localhost Development Helper Script diff --git a/.agents/scripts/markdown-formatter.sh b/.agents/scripts/markdown-formatter.sh index 1bb8aaad..0d4a4dcc 100755 --- a/.agents/scripts/markdown-formatter.sh +++ b/.agents/scripts/markdown-formatter.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2317 set -euo pipefail # Markdown Formatter Script diff --git a/.agents/scripts/markdown-lint-fix.sh b/.agents/scripts/markdown-lint-fix.sh index 1a8aa007..ed346215 100755 --- a/.agents/scripts/markdown-lint-fix.sh +++ b/.agents/scripts/markdown-lint-fix.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2317 set -euo pipefail # Markdown Lint Fix Script diff --git a/.agents/scripts/mass-fix-returns.sh b/.agents/scripts/mass-fix-returns.sh index ae651280..703f8323 100755 --- a/.agents/scripts/mass-fix-returns.sh +++ b/.agents/scripts/mass-fix-returns.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 set -euo pipefail # Mass fix script to add return statements to all functions that need them diff --git a/.agents/scripts/monitor-code-review.sh b/.agents/scripts/monitor-code-review.sh index 30656469..49f66393 100755 --- a/.agents/scripts/monitor-code-review.sh +++ b/.agents/scripts/monitor-code-review.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2155,SC2317 set -euo pipefail # Code Review Monitoring and Auto-Fix Script (Enhanced Version) @@ -116,9 +116,9 @@ run_codacy_analysis() { done echo "" # New line - # Check exit status - wait $pid - local status=$? + # Check exit status (|| true prevents set -e from killing script on non-zero) + local status=0 + wait $pid || status=$? if [[ $status -eq 0 ]]; then print_success "Codacy analysis completed with auto-fixes" diff --git a/.agents/scripts/pagespeed-helper.sh b/.agents/scripts/pagespeed-helper.sh index 433e5613..1cb0adf2 100755 --- a/.agents/scripts/pagespeed-helper.sh +++ b/.agents/scripts/pagespeed-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2154 # 🚀 PageSpeed Insights & Lighthouse Helper Script # Comprehensive website performance auditing and optimization guidance diff --git a/.agents/scripts/pandoc-helper.sh b/.agents/scripts/pandoc-helper.sh index 5af4ff01..c4b9ba69 100755 --- a/.agents/scripts/pandoc-helper.sh +++ b/.agents/scripts/pandoc-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2317 set -euo pipefail # Pandoc Document Conversion Helper for AI DevOps Framework diff --git a/.agents/scripts/pre-commit-hook.sh b/.agents/scripts/pre-commit-hook.sh index dffbc847..257f6d33 100755 --- a/.agents/scripts/pre-commit-hook.sh +++ b/.agents/scripts/pre-commit-hook.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 # Pre-commit hook for multi-platform quality validation # Install with: cp .agents/scripts/pre-commit-hook.sh .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit diff --git a/.agents/scripts/privacy-filter-helper.sh b/.agents/scripts/privacy-filter-helper.sh index b9408e9f..c5c8fb67 100755 --- a/.agents/scripts/privacy-filter-helper.sh +++ b/.agents/scripts/privacy-filter-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2155 # Privacy Filter for Public PRs # Mandatory filter before contributing to public repositories diff --git a/.agents/scripts/qlty-cli.sh b/.agents/scripts/qlty-cli.sh index b25b68c2..5898de44 100755 --- a/.agents/scripts/qlty-cli.sh +++ b/.agents/scripts/qlty-cli.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2317 set -euo pipefail # Qlty CLI Integration Script diff --git a/.agents/scripts/quality-cli-manager.sh b/.agents/scripts/quality-cli-manager.sh index c0f6ecc0..b808fee1 100755 --- a/.agents/scripts/quality-cli-manager.sh +++ b/.agents/scripts/quality-cli-manager.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2317 set -euo pipefail # Quality CLI Manager Script diff --git a/.agents/scripts/quality-feedback-helper.sh b/.agents/scripts/quality-feedback-helper.sh index 0b3d5b13..6f4c982d 100755 --- a/.agents/scripts/quality-feedback-helper.sh +++ b/.agents/scripts/quality-feedback-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 # quality-feedback-helper.sh - Retrieve code quality feedback via GitHub API # Consolidates feedback from Codacy, CodeRabbit, SonarCloud, CodeFactor, etc. # diff --git a/.agents/scripts/quality-fix.sh b/.agents/scripts/quality-fix.sh index 6eedb31d..3cf6db74 100755 --- a/.agents/scripts/quality-fix.sh +++ b/.agents/scripts/quality-fix.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2001,SC2016,SC2129,SC2155 # Universal Quality Fix Script # Automatically resolves common quality issues across all platforms diff --git a/.agents/scripts/secretlint-helper.sh b/.agents/scripts/secretlint-helper.sh index 4d447a13..94ffe978 100755 --- a/.agents/scripts/secretlint-helper.sh +++ b/.agents/scripts/secretlint-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2181 set -euo pipefail # Secretlint Integration Script diff --git a/.agents/scripts/seo-analysis-helper.sh b/.agents/scripts/seo-analysis-helper.sh index 631568e6..ed132d9d 100755 --- a/.agents/scripts/seo-analysis-helper.sh +++ b/.agents/scripts/seo-analysis-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2034,SC2129,SC2155 # SEO Analysis Helper Script # Analyzes exported SEO data for ranking opportunities and content cannibalization diff --git a/.agents/scripts/seo-export-ahrefs.sh b/.agents/scripts/seo-export-ahrefs.sh index 6b2f0c5c..a4ec0ccb 100755 --- a/.agents/scripts/seo-export-ahrefs.sh +++ b/.agents/scripts/seo-export-ahrefs.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2086 # SEO Export - Ahrefs # Exports Ahrefs organic keywords data to TOON format diff --git a/.agents/scripts/seo-export-bing.sh b/.agents/scripts/seo-export-bing.sh index 0eda5536..4e5b3e9f 100755 --- a/.agents/scripts/seo-export-bing.sh +++ b/.agents/scripts/seo-export-bing.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2086 # SEO Export - Bing Webmaster Tools # Exports Bing search analytics data to TOON format diff --git a/.agents/scripts/seo-export-dataforseo.sh b/.agents/scripts/seo-export-dataforseo.sh index 1736a175..406b3786 100755 --- a/.agents/scripts/seo-export-dataforseo.sh +++ b/.agents/scripts/seo-export-dataforseo.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2086 # SEO Export - DataForSEO # Exports DataForSEO ranked keywords data to TOON format diff --git a/.agents/scripts/seo-export-gsc.sh b/.agents/scripts/seo-export-gsc.sh index 9676af2a..2a691ee9 100755 --- a/.agents/scripts/seo-export-gsc.sh +++ b/.agents/scripts/seo-export-gsc.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2086 # SEO Export - Google Search Console # Exports GSC search analytics data to TOON format diff --git a/.agents/scripts/seo-export-helper.sh b/.agents/scripts/seo-export-helper.sh index 5282b776..3772ab96 100755 --- a/.agents/scripts/seo-export-helper.sh +++ b/.agents/scripts/seo-export-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2034,SC2086 # SEO Data Export Helper Script # Unified router for exporting SEO data from multiple platforms to TOON format diff --git a/.agents/scripts/servers-helper.sh b/.agents/scripts/servers-helper.sh index c4d8f8a2..4f47aa91 100755 --- a/.agents/scripts/servers-helper.sh +++ b/.agents/scripts/servers-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2029 set -euo pipefail # Global Servers Helper Script diff --git a/.agents/scripts/ses-helper.sh b/.agents/scripts/ses-helper.sh index d67fe6c0..1eff0f28 100755 --- a/.agents/scripts/ses-helper.sh +++ b/.agents/scripts/ses-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2034,SC2154,SC2155,SC2162,SC2181,SC2317 set -euo pipefail # Amazon SES Helper Script diff --git a/.agents/scripts/setup-linters-wizard.sh b/.agents/scripts/setup-linters-wizard.sh index ebfb6fe5..7db5551e 100755 --- a/.agents/scripts/setup-linters-wizard.sh +++ b/.agents/scripts/setup-linters-wizard.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2129 set -euo pipefail # Interactive Linter Setup Wizard diff --git a/.agents/scripts/setup-local-api-keys.sh b/.agents/scripts/setup-local-api-keys.sh index 630209e8..93c79ac5 100755 --- a/.agents/scripts/setup-local-api-keys.sh +++ b/.agents/scripts/setup-local-api-keys.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2129,SC2153,SC2317 set -euo pipefail # Setup Local API Keys - Secure User-Private Storage diff --git a/.agents/scripts/setup-mcp-integrations.sh b/.agents/scripts/setup-mcp-integrations.sh index f70712d1..7f73b441 100755 --- a/.agents/scripts/setup-mcp-integrations.sh +++ b/.agents/scripts/setup-mcp-integrations.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2016 # 🚀 Advanced MCP Integrations Setup Script # Sets up powerful Model Context Protocol integrations for AI-assisted development diff --git a/.agents/scripts/shared-constants.sh b/.agents/scripts/shared-constants.sh index 7368b3fe..62fe2cec 100755 --- a/.agents/scripts/shared-constants.sh +++ b/.agents/scripts/shared-constants.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC2034,SC2089,SC2090 # Shared Constants for AI DevOps Framework Provider Scripts # This file contains common strings, error messages, and configuration constants diff --git a/.agents/scripts/site-crawler-helper.sh b/.agents/scripts/site-crawler-helper.sh index 930133d6..2ee4144b 100755 --- a/.agents/scripts/site-crawler-helper.sh +++ b/.agents/scripts/site-crawler-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2001,SC2034 # Site Crawler Helper Script # SEO site auditing with Screaming Frog-like capabilities diff --git a/.agents/scripts/snyk-helper.sh b/.agents/scripts/snyk-helper.sh index e5d6a0f5..898ba662 100755 --- a/.agents/scripts/snyk-helper.sh +++ b/.agents/scripts/snyk-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2317 # Snyk Security Helper Script # Comprehensive security scanning using Snyk CLI diff --git a/.agents/scripts/sonarcloud-autofix.sh b/.agents/scripts/sonarcloud-autofix.sh index 0bf4daef..cf3276bc 100755 --- a/.agents/scripts/sonarcloud-autofix.sh +++ b/.agents/scripts/sonarcloud-autofix.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2016,SC2154 # 🔧 SonarCloud Auto-Fix Script # Applies fixes for common SonarCloud shell script issues diff --git a/.agents/scripts/sonarcloud-cli.sh b/.agents/scripts/sonarcloud-cli.sh index 7e5c3bcd..5615730f 100755 --- a/.agents/scripts/sonarcloud-cli.sh +++ b/.agents/scripts/sonarcloud-cli.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2001,SC2181 # 🔍 SonarCloud Analysis CLI Script # Provides local SonarCloud analysis and issue reporting diff --git a/.agents/scripts/sonarscanner-cli.sh b/.agents/scripts/sonarscanner-cli.sh index 3968d930..a9e69a0c 100755 --- a/.agents/scripts/sonarscanner-cli.sh +++ b/.agents/scripts/sonarscanner-cli.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2001,SC2015,SC2181,SC2317 set -euo pipefail # SonarScanner CLI Integration Script diff --git a/.agents/scripts/spaceship-helper.sh b/.agents/scripts/spaceship-helper.sh index dddef54e..fa695511 100755 --- a/.agents/scripts/spaceship-helper.sh +++ b/.agents/scripts/spaceship-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2034,SC2154,SC2155 set -euo pipefail # Spaceship Domain Registrar Helper Script diff --git a/.agents/scripts/stagehand-helper.sh b/.agents/scripts/stagehand-helper.sh index 214225c9..f3baf2f7 100755 --- a/.agents/scripts/stagehand-helper.sh +++ b/.agents/scripts/stagehand-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 set -euo pipefail # Stagehand Helper - AI Browser Automation Framework Integration diff --git a/.agents/scripts/stagehand-python-helper.sh b/.agents/scripts/stagehand-python-helper.sh index c0428665..f6c38749 100755 --- a/.agents/scripts/stagehand-python-helper.sh +++ b/.agents/scripts/stagehand-python-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2086 set -euo pipefail # Stagehand Python Helper - AI Browser Automation Framework Integration diff --git a/.agents/scripts/stagehand-python-setup.sh b/.agents/scripts/stagehand-python-setup.sh index be526983..7a986909 100755 --- a/.agents/scripts/stagehand-python-setup.sh +++ b/.agents/scripts/stagehand-python-setup.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 set -euo pipefail # Stagehand Python Setup Script for AI DevOps Framework diff --git a/.agents/scripts/stagehand-setup.sh b/.agents/scripts/stagehand-setup.sh index 1716a9ac..b214c1c0 100755 --- a/.agents/scripts/stagehand-setup.sh +++ b/.agents/scripts/stagehand-setup.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 set -euo pipefail # Stagehand Setup Script for AI DevOps Framework diff --git a/.agents/scripts/system-cleanup.sh b/.agents/scripts/system-cleanup.sh index b598e466..9a0d7c6b 100755 --- a/.agents/scripts/system-cleanup.sh +++ b/.agents/scripts/system-cleanup.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2034,SC2317 # System Cleanup & Maintenance Script # diff --git a/.agents/scripts/test-stagehand-both-integration.sh b/.agents/scripts/test-stagehand-both-integration.sh index f9d7c3f2..5b06aae9 100755 --- a/.agents/scripts/test-stagehand-both-integration.sh +++ b/.agents/scripts/test-stagehand-both-integration.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2317 set -euo pipefail # Test Both Stagehand JavaScript and Python Integration diff --git a/.agents/scripts/test-stagehand-integration.sh b/.agents/scripts/test-stagehand-integration.sh index 3d2ce271..57307ef1 100755 --- a/.agents/scripts/test-stagehand-integration.sh +++ b/.agents/scripts/test-stagehand-integration.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 set -euo pipefail # Test Stagehand Integration with AI DevOps Framework diff --git a/.agents/scripts/test-stagehand-python-integration.sh b/.agents/scripts/test-stagehand-python-integration.sh index 58f06e30..9d9b42d8 100755 --- a/.agents/scripts/test-stagehand-python-integration.sh +++ b/.agents/scripts/test-stagehand-python-integration.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 set -euo pipefail # Test Stagehand Python Integration with AI DevOps Framework diff --git a/.agents/scripts/toon-helper.sh b/.agents/scripts/toon-helper.sh index 6c36a3f8..193cec0d 100755 --- a/.agents/scripts/toon-helper.sh +++ b/.agents/scripts/toon-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2317 set -euo pipefail # TOON Format Helper for AI DevOps Framework diff --git a/.agents/scripts/twilio-helper.sh b/.agents/scripts/twilio-helper.sh index 8985f134..f7bedb5a 100755 --- a/.agents/scripts/twilio-helper.sh +++ b/.agents/scripts/twilio-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2034,SC2086,SC2162 set -euo pipefail # Twilio Helper Script diff --git a/.agents/scripts/updown-helper.sh b/.agents/scripts/updown-helper.sh index 727e2727..9d6140c8 100755 --- a/.agents/scripts/updown-helper.sh +++ b/.agents/scripts/updown-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2034,SC2155,SC2317 # Updown.io Helper Script # Managed by AI DevOps Framework diff --git a/.agents/scripts/validate-mcp-integrations.sh b/.agents/scripts/validate-mcp-integrations.sh index 7a5c1bbc..6b7736b9 100755 --- a/.agents/scripts/validate-mcp-integrations.sh +++ b/.agents/scripts/validate-mcp-integrations.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2317 # 🔍 MCP Integrations Validation Script # Validates and tests all MCP integrations for proper functionality diff --git a/.agents/scripts/validate-version-consistency.sh b/.agents/scripts/validate-version-consistency.sh index 00667ae7..6ff5b5da 100755 --- a/.agents/scripts/validate-version-consistency.sh +++ b/.agents/scripts/validate-version-consistency.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2317 # AI DevOps Framework - Version Consistency Validator # Validates that all version references are synchronized across the framework diff --git a/.agents/scripts/vaultwarden-helper.sh b/.agents/scripts/vaultwarden-helper.sh index 7deb8e50..644f64a2 100755 --- a/.agents/scripts/vaultwarden-helper.sh +++ b/.agents/scripts/vaultwarden-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2034,SC2154,SC2155,SC2162 set -euo pipefail # Vaultwarden (Self-hosted Bitwarden) Helper Script diff --git a/.agents/scripts/vercel-cli-helper.sh b/.agents/scripts/vercel-cli-helper.sh index 60825e73..58c05d88 100755 --- a/.agents/scripts/vercel-cli-helper.sh +++ b/.agents/scripts/vercel-cli-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 # Vercel CLI Helper Script # Comprehensive Vercel deployment and project management using Vercel CLI diff --git a/.agents/scripts/version-manager.sh b/.agents/scripts/version-manager.sh index a8c67ec6..891145cd 100755 --- a/.agents/scripts/version-manager.sh +++ b/.agents/scripts/version-manager.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2001,SC2034,SC2181,SC2317 set -euo pipefail # Version Manager for AI DevOps Framework diff --git a/.agents/scripts/watercrawl-helper.sh b/.agents/scripts/watercrawl-helper.sh index 86f1fead..ce0d1ea7 100755 --- a/.agents/scripts/watercrawl-helper.sh +++ b/.agents/scripts/watercrawl-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2034,SC2129 set -euo pipefail # WaterCrawl Helper Script diff --git a/.agents/scripts/webhosting-helper.sh b/.agents/scripts/webhosting-helper.sh index 4943d37e..9c54070d 100755 --- a/.agents/scripts/webhosting-helper.sh +++ b/.agents/scripts/webhosting-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2317 set -euo pipefail # Web Hosting Helper Script diff --git a/.agents/scripts/webhosting-verify.sh b/.agents/scripts/webhosting-verify.sh index 6d981c7b..1c5022b6 100755 --- a/.agents/scripts/webhosting-verify.sh +++ b/.agents/scripts/webhosting-verify.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091 set -euo pipefail # Web Hosting Verification Script diff --git a/.agents/scripts/wordpress-mcp-helper.sh b/.agents/scripts/wordpress-mcp-helper.sh index 4f7d0f25..eedfd643 100755 --- a/.agents/scripts/wordpress-mcp-helper.sh +++ b/.agents/scripts/wordpress-mcp-helper.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# shellcheck disable=SC2034,SC2155,SC2317,SC2329,SC2016,SC2181,SC1091,SC2154,SC2015,SC2086,SC2129,SC2030,SC2031,SC2119,SC2120,SC2001,SC2162,SC2088,SC2089,SC2090,SC2029,SC2006,SC2153 +# shellcheck disable=SC1091,SC2034 set -euo pipefail # WordPress MCP Adapter Helper Script