@@ -13,8 +13,8 @@ Run [GitHub Copilot CLI](https://docs.github.com/copilot/concepts/agents/about-c
1313``` tf
1414module "copilot" {
1515 source = "registry.coder.com/coder-labs/copilot/coder"
16- version = "0.2.2 "
17- agent_id = coder_agent.example .id
16+ version = "0.2.3 "
17+ agent_id = coder_agent.main .id
1818 workdir = "/home/coder/projects"
1919}
2020```
@@ -51,8 +51,8 @@ data "coder_parameter" "ai_prompt" {
5151
5252module "copilot" {
5353 source = "registry.coder.com/coder-labs/copilot/coder"
54- version = "0.2.2 "
55- agent_id = coder_agent.example .id
54+ version = "0.2.3 "
55+ agent_id = coder_agent.main .id
5656 workdir = "/home/coder/projects"
5757
5858 ai_prompt = data.coder_parameter.ai_prompt.value
@@ -71,8 +71,8 @@ Customize tool permissions, MCP servers, and Copilot settings:
7171``` tf
7272module "copilot" {
7373 source = "registry.coder.com/coder-labs/copilot/coder"
74- version = "0.2.2 "
75- agent_id = coder_agent.example .id
74+ version = "0.2.3 "
75+ agent_id = coder_agent.main .id
7676 workdir = "/home/coder/projects"
7777
7878 # Version pinning (defaults to "latest", use specific version if desired)
@@ -101,6 +101,7 @@ module "copilot" {
101101 tools = ["*"]
102102 trust = true
103103 }
104+
104105 playwright = {
105106 command = "npx"
106107 args = ["-y", "@playwright/mcp@latest", "--headless", "--isolated"]
@@ -142,8 +143,8 @@ variable "github_token" {
142143
143144module "copilot" {
144145 source = "registry.coder.com/coder-labs/copilot/coder"
145- version = "0.2.2 "
146- agent_id = coder_agent.example .id
146+ version = "0.2.3 "
147+ agent_id = coder_agent.main .id
147148 workdir = "/home/coder/projects"
148149 github_token = var.github_token
149150}
@@ -156,8 +157,8 @@ Run Copilot as a command-line tool without task reporting or web interface. This
156157``` tf
157158module "copilot" {
158159 source = "registry.coder.com/coder-labs/copilot/coder"
159- version = "0.2.2 "
160- agent_id = coder_agent.example .id
160+ version = "0.2.3 "
161+ agent_id = coder_agent.main .id
161162 workdir = "/home/coder"
162163 report_tasks = false
163164 cli_app = true
0 commit comments