From 93121c18e043e8cb6239621e85175ccf397c1780 Mon Sep 17 00:00:00 2001 From: Michael Neale Date: Wed, 22 Oct 2025 14:30:13 +1100 Subject: [PATCH] don't need this --- test-ai-requirements.sh | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100755 test-ai-requirements.sh diff --git a/test-ai-requirements.sh b/test-ai-requirements.sh deleted file mode 100755 index 06c97fc..0000000 --- a/test-ai-requirements.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash -# Test script for AI-enhanced interactive requirements mode - -echo "Testing AI-enhanced interactive requirements mode..." -echo "" - -# Create a test workspace -TEST_WORKSPACE="/tmp/g3-test-interactive-$(date +%s)" -mkdir -p "$TEST_WORKSPACE" - -echo "Test workspace: $TEST_WORKSPACE" -echo "" - -# Create sample brief input -BRIEF_INPUT="build a calculator cli in rust with basic operations" - -echo "Brief input:" -echo "---" -echo "$BRIEF_INPUT" -echo "---" -echo "" - -echo "This will:" -echo "1. Send brief input to AI" -echo "2. AI generates structured requirements.md" -echo "3. Show enhanced requirements" -echo "4. Prompt for confirmation (y/e/n)" -echo "" - -echo "To test manually, run:" -echo "cargo run -- --autonomous --interactive-requirements --workspace $TEST_WORKSPACE" -echo "" -echo "Then type: $BRIEF_INPUT" -echo "Press Ctrl+D" -echo "Review the AI-generated requirements" -echo "Choose 'y' to proceed, 'e' to edit, or 'n' to cancel" -echo "" - -echo "Test workspace will be at: $TEST_WORKSPACE"