Skip to content

Commit 8151766

Browse files
fix: update AgentAPI version to v0.8.0 and correct environment variable exports in install script
1 parent dd97065 commit 8151766

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

registry/coder-labs/modules/copilot-cli/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ variable "install_agentapi" {
9898
variable "agentapi_version" {
9999
type = string
100100
description = "The version of AgentAPI to install."
101-
default = "v0.7.1"
101+
default = "v0.8.0"
102102
}
103103

104104
variable "report_tasks" {

registry/coder-labs/modules/copilot-cli/scripts/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ set -e
140140
# --- Set environment variables ---
141141
export CODER_MCP_APP_STATUS_SLUG="${ARG_MCP_APP_STATUS_SLUG}"
142142
export CODER_MCP_AI_AGENTAPI_URL="http://localhost:3284"
143-
export CODER_AGENT_URL="\${CODER_AGENT_URL}"
144-
export CODER_AGENT_TOKEN="\${CODER_AGENT_TOKEN}"
143+
export CODER_AGENT_URL="${CODER_AGENT_URL}"
144+
export CODER_AGENT_TOKEN="${CODER_AGENT_TOKEN}"
145145
146146
# --- Launch the MCP server ---
147147
exec coder exp mcp server

0 commit comments

Comments
 (0)