Initial Claude launcher profiles

This commit is contained in:
Dieter Schlüter 2026-06-28 01:50:13 +02:00
commit 7fd845235c
7 changed files with 258 additions and 0 deletions

15
bin/claude-profile Executable file
View file

@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# shellcheck source=/dev/null
source "$SCRIPT_DIR/../lib/profiles.sh"
PROFILE="${1:-}"
if [[ -z "$PROFILE" ]]; then
echo "Usage: claude-profile <profile>"
exit 1
fi
launch_profile "$PROFILE"