Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .agents/scripts/coderabbit-cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ readonly CODERABBIT_CLI_INSTALL_URL="https://cli.coderabbit.ai/install.sh"
readonly CONFIG_DIR="$HOME/.config/coderabbit"
readonly API_KEY_FILE="$CONFIG_DIR/api_key"

# Print functions
print_success() {
local message="$1"
echo -e "${GREEN}✅ $message${NC}"
Expand Down Expand Up @@ -174,18 +173,6 @@ apply_coderabbit_fixes() {
return 0
}

print_warning() {
local message="$1"
echo -e "${YELLOW}⚠️ $message${NC}"
return 0
}

print_error() {
local message="$1"
echo -e "${RED}❌ $message${NC}"
return 0
}

print_header() {
local message="$1"
echo -e "${PURPLE}🤖 $message${NC}"
Expand Down
3 changes: 0 additions & 3 deletions .agents/scripts/privacy-filter-helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ readonly -a DEFAULT_PATTERNS=(
'SG\.[a-zA-Z0-9_-]{22}\.[a-zA-Z0-9_-]{43}'
)

# Print functions
print_success() {
local message="$1"
echo -e "${GREEN}[PASS]${NC} $message"
Expand All @@ -116,8 +115,6 @@ print_error() {
echo -e "${RED}[FAIL]${NC} $message" >&2
return 0
}


print_header() {
local message="$1"
echo -e "${PURPLE}$message${NC}"
Expand Down
2 changes: 0 additions & 2 deletions .agents/scripts/quality-fix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ print_info() {
echo -e "${BLUE}ℹ️ $message${NC}"
return 0
}


backup_files() {
print_info "Creating backup of provider files..."

Expand Down
4 changes: 0 additions & 4 deletions .agents/scripts/readme-helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ _CACHED_SUBAGENTS=""
_CACHED_SCRIPTS=""

# Color output functions
print_success() { local msg="$1"; echo -e "\033[32m[SUCCESS]\033[0m $msg"; return 0; }
print_error() { local msg="$1"; echo -e "\033[31m[ERROR]\033[0m $msg"; return 0; }
print_warning() { local msg="$1"; echo -e "\033[33m[WARNING]\033[0m $msg"; return 0; }
print_info() { local msg="$1"; echo -e "\033[34m[INFO]\033[0m $msg"; return 0; }

# Count main agents (*.md files in .agents/ root, excluding AGENTS.md)
count_main_agents() {
Expand Down
4 changes: 0 additions & 4 deletions .agents/scripts/sonarcloud-autofix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ readonly PURPLE='\033[0;35m'
readonly NC='\033[0m'

print_header() { local msg="$1"; echo -e "${PURPLE}$msg${NC}"; return 0; }
print_info() { local msg="$1"; echo -e "${BLUE}$msg${NC}"; return 0; }
print_success() { local msg="$1"; echo -e "${GREEN}✅ $msg${NC}"; return 0; }
print_warning() { local msg="$1"; echo -e "${YELLOW}⚠️ $msg${NC}"; return 0; }
print_error() { local msg="$1"; echo -e "${RED}❌ $msg${NC}"; return 0; }

# Fix missing return statements (S7682)
fix_missing_returns() {
Expand Down
1 change: 0 additions & 1 deletion .agents/scripts/watercrawl-helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ readonly NPM_PACKAGE="@watercrawl/nodejs"
readonly WATERCRAWL_REPO="https://github.com/watercrawl/WaterCrawl.git"
readonly WATERCRAWL_DIR="$HOME/.aidevops/watercrawl"

# Print functions
print_success() {
local message="$1"
echo -e "${GREEN}[OK] $message${NC}"
Expand Down
3 changes: 0 additions & 3 deletions .agents/scripts/x-helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ source "${SCRIPT_DIR}/shared-constants.sh"

readonly FXTWITTER_API="https://api.fxtwitter.com"

print_success() { printf "${GREEN}%s${NC}\n" "$1"; }
print_warning() { printf "${YELLOW}%s${NC}\n" "$1"; }
print_error() { printf "${RED}%s${NC}\n" "$1" >&2; }

extract_tweet_path() {
local url="$1"
Expand Down