From ab21920ad27c8d69aeb784ca054409d2c17671ac Mon Sep 17 00:00:00 2001 From: Vishal Jain Date: Wed, 18 Jun 2025 12:55:00 +0100 Subject: [PATCH] Hide sensitive Twilio credentials from startup output Replace detailed credential display with simple status message to prevent account SID, phone numbers from being shown in logs. --- scripts/startup.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/scripts/startup.sh b/scripts/startup.sh index 39a399c..df8e253 100755 --- a/scripts/startup.sh +++ b/scripts/startup.sh @@ -29,13 +29,9 @@ fi # Verify Twilio MCP configuration if [ -n "$TWILIO_ACCOUNT_SID" ] && [ -n "$TWILIO_AUTH_TOKEN" ]; then - echo "Twilio MCP server configured with:" - echo " - Account SID: ${TWILIO_ACCOUNT_SID:0:10}..." - echo " - From Number: $TWILIO_FROM_NUMBER" - echo " - To Number: $TWILIO_TO_NUMBER" - echo " - SMS capability ready via: twilio__send_text" + echo "✓ Twilio MCP server configured - SMS notifications enabled" else - echo "No Twilio credentials found" + echo "No Twilio credentials found - SMS notifications disabled" fi # Start Claude Code with permissions bypass