Initial Claude launcher profiles
This commit is contained in:
commit
7fd845235c
7 changed files with 258 additions and 0 deletions
15
bin/claude-profile
Executable file
15
bin/claude-profile
Executable 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"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue