From 061d206935b09dd21c0c95b9ce81d6c166adc819 Mon Sep 17 00:00:00 2001 From: Atif Ali Date: Sat, 23 Aug 2025 23:47:21 +0500 Subject: [PATCH 1/2] fix: update Sourcegraph AMP source URL --- .../coder-labs/modules/sourcegraph-amp/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/registry/coder-labs/modules/sourcegraph-amp/README.md b/registry/coder-labs/modules/sourcegraph-amp/README.md index 45d175d24..340155b01 100644 --- a/registry/coder-labs/modules/sourcegraph-amp/README.md +++ b/registry/coder-labs/modules/sourcegraph-amp/README.md @@ -11,9 +11,9 @@ tags: [agent, sourcegraph, amp, ai, tasks] Run [Sourcegraph AMP CLI](https://sourcegraph.com/amp) in your workspace to access Sourcegraph's AI-powered code search and analysis tools, with AgentAPI integration for seamless Coder Tasks support. ```tf -module "sourcegraph_amp" { - source = "registry.coder.com/coder-labs/sourcegraph_amp/coder" - version = "1.0.0" +module "sourcegraph-amp" { + source = "registry.coder.com/coder-labs/sourcegraph-amp/coder" + version = "1.0.1" agent_id = coder_agent.example.id sourcegraph_amp_api_key = var.sourcegraph_amp_api_key install_sourcegraph_amp = true @@ -57,10 +57,10 @@ variable "sourcegraph_amp_api_key" { sensitive = true } -module "sourcegraph_amp" { +module "sourcegraph-amp" { count = data.coder_workspace.me.start_count - source = "registry.coder.com/coder-labs/sourcegraph_amp/coder" - version = "1.0.0" + source = "registry.coder.com/coder-labs/sourcegraph-amp/coder" + version = "1.0.1" agent_id = coder_agent.example.id sourcegraph_amp_api_key = var.sourcegraph_amp_api_key # recommended for authenticated usage install_sourcegraph_amp = true From 8f831c1c64e9eb49e133640ac51e5f9c0e449f52 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Sun, 24 Aug 2025 00:12:41 +0500 Subject: [PATCH 2/2] Update Sourcegraph Amp module description to highlight unique capabilities Co-authored-by: Amp Amp-Thread-ID: https://ampcode.com/threads/T-fc5ffd82-b7c3-43e0-aa13-617a74b2bb4c --- registry/coder-labs/modules/sourcegraph-amp/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/coder-labs/modules/sourcegraph-amp/README.md b/registry/coder-labs/modules/sourcegraph-amp/README.md index 340155b01..1f43ea7b7 100644 --- a/registry/coder-labs/modules/sourcegraph-amp/README.md +++ b/registry/coder-labs/modules/sourcegraph-amp/README.md @@ -1,7 +1,7 @@ --- display_name: Sourcegraph AMP icon: ../../../../.icons/sourcegraph-amp.svg -description: Run Sourcegraph AMP CLI in your workspace with AgentAPI integration +description: Sourcegraph's AI coding agent with deep codebase understanding and intelligent code search capabilities verified: false tags: [agent, sourcegraph, amp, ai, tasks] ---