summaryrefslogtreecommitdiff
path: root/dotfiles/common/.local/bin
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/common/.local/bin')
-rwxr-xr-xdotfiles/common/.local/bin/ai-assistants2
-rwxr-xr-xdotfiles/common/.local/bin/aix8
2 files changed, 5 insertions, 5 deletions
diff --git a/dotfiles/common/.local/bin/ai-assistants b/dotfiles/common/.local/bin/ai-assistants
index 51028fe..3b4d80e 100755
--- a/dotfiles/common/.local/bin/ai-assistants
+++ b/dotfiles/common/.local/bin/ai-assistants
@@ -21,7 +21,7 @@ projects=(
)
# Claude command to run in each window
-CLAUDE_CMD='claude "Read docs/protocols.org and docs/NOTES.org, follow instructions exactly, then begin the session-start workflow"'
+CLAUDE_CMD='claude "Read docs/protocols.org and follow all instructions."'
# Create session with first project
first="${projects[0]}"
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]}"