You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aider/main.tf
+2-2
Original file line number
Diff line number
Diff line change
@@ -301,7 +301,7 @@ EOL
301
301
if [ -n "$CODER_MCP_AIDER_TASK_PROMPT" ]; then
302
302
echo "Running Aider with message in tmux session..."
303
303
# Start aider with the message flag and yes-always to avoid confirmations
304
-
tmux new-session -d -s ${var.session_name} -c ${var.folder} "export ANTHROPIC_API_KEY=\"$ANTHROPIC_API_KEY\"; aider --verbose --yes-always --read CONVENTIONS.md --message \"Report each step to Coder. Your task: $CODER_MCP_AIDER_TASK_PROMPT\" | tee -a \"$HOME/.aider.log\""
304
+
tmux new-session -d -s ${var.session_name} -c ${var.folder} "export ANTHROPIC_API_KEY=\"$ANTHROPIC_API_KEY\"; aider --architect --yes-always --read CONVENTIONS.md --message \"Report each step to Coder. Your task: $CODER_MCP_AIDER_TASK_PROMPT\" | tee -a \"$HOME/.aider.log\""
305
305
# Create a flag file to indicate this task was executed
306
306
touch "$HOME/.aider_task_executed"
307
307
echo "Aider task started in tmux session '${var.session_name}'. Check the logs for progress."
@@ -339,7 +339,7 @@ EOL
339
339
cd ${var.folder}
340
340
export PATH=\"$HOME/bin:$HOME/.local/bin:$PATH\"
341
341
export ANTHROPIC_API_KEY=\"$ANTHROPIC_API_KEY\"
342
-
aider --verbose --yes-always --read CONVENTIONS.md --message \"Report each step to Coder. Your task: $CODER_MCP_AIDER_TASK_PROMPT\" | tee -a \"$HOME/.aider.log\"
342
+
aider --architect --yes-always --read CONVENTIONS.md --message \"Report each step to Coder. Your task: $CODER_MCP_AIDER_TASK_PROMPT\" | tee -a \"$HOME/.aider.log\"
0 commit comments