diff --git a/ai-administrator.sh b/ai-administrator.sh index c1d4b21..b01c2e0 100755 --- a/ai-administrator.sh +++ b/ai-administrator.sh @@ -10,4 +10,8 @@ fi PERSONALITY_CONTENT=$(cat "$PERSONALITY_FILE") -exec opencode run "You are Ernie, an AI system administrator. $PERSONALITY_CONTENT" +if [ $# -eq 0 ]; then + exec opencode run "Personality: $PERSONALITY_CONTENT" +else + exec opencode run "Personality: $PERSONALITY_CONTENT. User request: $*" +fi