Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
6f2b128
Aider module support agentAPI
Harsh9485 Aug 21, 2025
3679fc0
Fix some small issues
Harsh9485 Aug 22, 2025
d95e715
Merge branch 'main' into aider-tasks-agentapi-support
Harsh9485 Aug 22, 2025
ef16196
Fix typos
Harsh9485 Aug 23, 2025
0ae492c
Merge branch 'aider-tasks-agentapi-support' of github.com:Harsh9485/r…
Harsh9485 Aug 23, 2025
9d74616
Add aider mock script
Harsh9485 Aug 23, 2025
8696a00
Fix README file style
Harsh9485 Aug 23, 2025
585723b
Fix main.test file
Harsh9485 Aug 23, 2025
9fd083d
Merge branch 'main' into aider-tasks-agentapi-support
Harsh9485 Aug 23, 2025
e9d3470
Fix README file
Harsh9485 Aug 23, 2025
2719a26
Merge branch 'aider-tasks-agentapi-support' of github.com:Harsh9485/r…
Harsh9485 Aug 23, 2025
b0826cc
Update start script
Harsh9485 Aug 23, 2025
1a8971a
Add MCP server configuration
Harsh9485 Aug 24, 2025
4428d8c
Merge branch 'main' into aider-tasks-agentapi-support
Harsh9485 Aug 24, 2025
2e40967
Update main.tf file
Harsh9485 Aug 24, 2025
2f1edb1
Merge branch 'main' into aider-tasks-agentapi-support
Harsh9485 Aug 27, 2025
478b4b6
Fix some typos
Harsh9485 Aug 28, 2025
78b9ebd
Fix Code style issues
Harsh9485 Aug 28, 2025
da3c310
Merge branch 'main' into aider-tasks-agentapi-support
Harsh9485 Aug 28, 2025
8dec903
Adapt all suggestions
Harsh9485 Sep 3, 2025
b464a71
Merge branch 'main' into aider-tasks-agentapi-support
Harsh9485 Sep 3, 2025
d2730cb
Adjust test suite according to update
Harsh9485 Sep 3, 2025
2cea9e8
Merge branch 'aider-tasks-agentapi-support' of github.com:Harsh9485/r…
Harsh9485 Sep 3, 2025
4ad30f7
Adapt Suggestions
Harsh9485 Sep 4, 2025
8985231
Fix Typos
Harsh9485 Sep 4, 2025
aafc932
prototype module
Harsh9485 Sep 5, 2025
fef659e
revert changes
Harsh9485 Sep 10, 2025
79e2fdd
Merge branch 'main' into aider-tasks-agentapi-support
Harsh9485 Sep 10, 2025
79ae316
Refactor Aider module
Harsh9485 Sep 11, 2025
ddef094
Merge branch 'main' into aider-tasks-agentapi-support
Harsh9485 Sep 11, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix some typos
  • Loading branch information
Harsh9485 committed Aug 28, 2025
commit 478b4b634b4bf100778c40381d3c0c399931960d
8 changes: 1 addition & 7 deletions registry/coder/modules/aider/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,6 @@ variable "ai_api_key" {
sensitive = true
}

resource "coder_env" "ai_api_key" {
agent_id = var.agent_id
name = "ARG_API_KEY"
value = var.ai_api_key
}

variable "custom_env_var_name" {
type = string
description = "Custom environment variable name when using custom provider"
Expand All @@ -156,7 +150,7 @@ variable "agentapi_version" {
variable "base_aider_config" {
type = string
description = <<-EOT
Base Aider configuration in ynl format. Will be Store in .aider.conf.yml file.
Base Aider configuration in yaml format. Will be stored in .aider.conf.yml file.

options include:
read:
Expand Down
5 changes: 2 additions & 3 deletions registry/coder/modules/aider/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ echo "Workspace: $AIDER_START_DIRECTORY"
echo "--------------------------------"

function install_aider() {
echo "pipx not found"
echo "Installing pipx via apt-get..."
echo "pipx installing..."
sudo apt-get install -y pipx
echo "pipx installed!"
pipx ensurepath
Expand Down Expand Up @@ -46,7 +45,7 @@ function configure_aider_settings(){

mkdir -p "$HOME/.config/aider"

echo $ARG_AIDER_CONFIG > "$HOME/.config/aider/.aider.conf.yml"
echo "$ARG_AIDER_CONFIG" > "$HOME/.config/aider/.aider.conf.yml"
echo "Added Coder MCP extension to Aider config.yml"
else
printf "MCP Server not Implemented"
Expand Down
Loading