diff options
Diffstat (limited to 'dotfiles/common/.local/bin/aix')
| -rwxr-xr-x | dotfiles/common/.local/bin/aix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dotfiles/common/.local/bin/aix b/dotfiles/common/.local/bin/aix index 0f70d23..35cab64 100755 --- a/dotfiles/common/.local/bin/aix +++ b/dotfiles/common/.local/bin/aix @@ -1,7 +1,7 @@ #!/bin/bash -# Launch tmux session with Claude in fzf-selected project directories +# Launch tmux session with an LLM in fzf-selected project directories -SESSION="claude" +SESSION="ai" # If session exists, attach or switch to it if tmux has-session -t "$SESSION" 2>/dev/null; then @@ -41,13 +41,13 @@ selections=$(printf '%s\n' "${candidates[@]}" | fzf --multi --height=70% --rever # Claude command — separated for safe editing AI_CMD="claude" -AI_INSTRUCTIONS='Read docs/protocols.org and docs/NOTES.org, follow instructions exactly, then begin the session-start workflow' +AI_INSTRUCTIONS='Read docs/protocols.org and follow all instructions.' # Read selections into array selected=() while IFS= read -r line; do selected+=("$line") -done <<< "$selections" +done <<<"$selections" # Create session with first selection first="${selected[0]}" |
