From 8d56ee8182a6ba9a8c962152bd80cd7803b2378d Mon Sep 17 00:00:00 2001 From: DevCats Date: Thu, 15 May 2025 12:54:01 -0500 Subject: [PATCH] fix: resolve aider icon path to correct icon (#102) - code.svg to aider.svg in README.md --------- Co-authored-by: M Atif Ali --- registry/coder/modules/aider/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/registry/coder/modules/aider/README.md b/registry/coder/modules/aider/README.md index c1d8697f..a7fc9cce 100644 --- a/registry/coder/modules/aider/README.md +++ b/registry/coder/modules/aider/README.md @@ -1,10 +1,10 @@ --- display_name: Aider description: Run Aider AI pair programming in your workspace -icon: ../../../../.icons/code.svg +icon: ../../../../.icons/aider.svg maintainer_github: coder verified: true -tags: [agent, aider] +tags: [agent, ai, aider] --- # Aider @@ -14,7 +14,7 @@ Run [Aider](https://aider.chat) AI pair programming in your workspace. This modu ```tf module "aider" { source = "registry.coder.com/coder/aider/coder" - version = "1.0.0" + version = "1.0.1" agent_id = coder_agent.example.id } ``` @@ -69,7 +69,7 @@ variable "anthropic_api_key" { module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.0.0" + version = "1.0.1" agent_id = coder_agent.example.id ai_api_key = var.anthropic_api_key } @@ -94,7 +94,7 @@ variable "openai_api_key" { module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.0.0" + version = "1.0.1" agent_id = coder_agent.example.id use_tmux = true ai_provider = "openai" @@ -115,7 +115,7 @@ variable "custom_api_key" { module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.0.0" + version = "1.0.1" agent_id = coder_agent.example.id ai_provider = "custom" custom_env_var_name = "MY_CUSTOM_API_KEY" @@ -132,7 +132,7 @@ You can extend Aider's capabilities by adding custom extensions: module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.0.0" + version = "1.0.1" agent_id = coder_agent.example.id ai_api_key = var.anthropic_api_key @@ -211,7 +211,7 @@ data "coder_parameter" "ai_prompt" { module "aider" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/aider/coder" - version = "1.0.0" + version = "1.0.1" agent_id = coder_agent.example.id ai_api_key = var.anthropic_api_key task_prompt = data.coder_parameter.ai_prompt.value