-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·29 lines (24 loc) · 767 Bytes
/
setup.sh
File metadata and controls
executable file
·29 lines (24 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env bash
# setup.sh - Bootstrap claude-adlc-framework
# Minimal setup script that checks for Claude Code, then hands off to /onboard command
set -e
echo "🚀 claude-adlc-framework Setup"
echo ""
# Check if Claude Code is installed
if ! command -v claude &> /dev/null; then
echo "❌ Claude Code not installed"
echo ""
echo "Please install Claude Code first:"
echo " https://docs.claude.com/en/docs/claude-code"
echo ""
echo "Quick install (macOS/Linux):"
echo " curl -fsSL https://claude.com/install.sh | sh"
echo ""
exit 1
fi
echo "✅ Claude Code installed"
echo ""
echo "Starting interactive setup with Claude..."
echo ""
# Hand off to Claude - it handles authentication and all configuration
claude /onboard