mirror of
https://github.com/leonvanzyl/autocoder.git
synced 2026-01-30 06:12:06 +00:00
The previous credential check looked for ~/.claude/.credentials.json, which no longer exists in recent versions of Claude CLI. This caused the script to incorrectly prompt users to login even when they were already authenticated. Changes: - Remove check for non-existent .credentials.json file - Check for ~/.claude directory existence instead - Always remind users about 'claude login' since we can't verify auth status without making an API call - If ~/.claude doesn't exist, pause and warn (but allow continuing) - Add explanatory comments about the limitation The new approach is honest about what we can and can't verify: - We CAN check if the CLI is installed (command -v claude) - We CAN check if ~/.claude directory exists (CLI has been run) - We CANNOT verify actual auth status without an API call 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
54 lines
1.4 KiB
Bash
54 lines
1.4 KiB
Bash
#!/bin/bash
|
|
cd "$(dirname "$0")"
|
|
|
|
echo ""
|
|
echo "========================================"
|
|
echo " Autonomous Coding Agent"
|
|
echo "========================================"
|
|
echo ""
|
|
|
|
# Check if Claude CLI is installed
|
|
if ! command -v claude &> /dev/null; then
|
|
echo "[ERROR] Claude CLI not found"
|
|
echo ""
|
|
echo "Please install Claude CLI first:"
|
|
echo " curl -fsSL https://claude.ai/install.sh | bash"
|
|
echo ""
|
|
echo "Then run this script again."
|
|
exit 1
|
|
fi
|
|
|
|
echo "[OK] Claude CLI found"
|
|
|
|
# Note: Claude CLI no longer stores credentials in ~/.claude/.credentials.json
|
|
# We can't reliably check auth status without making an API call, so we just
|
|
# verify the CLI is installed and remind the user to login if needed
|
|
if [ -d "$HOME/.claude" ]; then
|
|
echo "[OK] Claude CLI directory found"
|
|
echo " (If you're not logged in, run: claude login)"
|
|
else
|
|
echo "[!] Claude CLI not configured"
|
|
echo ""
|
|
echo "Please run 'claude login' to authenticate before continuing."
|
|
echo ""
|
|
read -p "Press Enter to continue anyway, or Ctrl+C to exit..."
|
|
fi
|
|
|
|
echo ""
|
|
|
|
# Check if venv exists, create if not
|
|
if [ ! -d "venv" ]; then
|
|
echo "Creating virtual environment..."
|
|
python3 -m venv venv
|
|
fi
|
|
|
|
# Activate the virtual environment
|
|
source venv/bin/activate
|
|
|
|
# Install dependencies
|
|
echo "Installing dependencies..."
|
|
pip install -r requirements.txt --quiet
|
|
|
|
# Run the app
|
|
python start.py
|