You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: registry/coder/modules/claude-code/README.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,8 +29,10 @@ module "claude-code" {
29
29
<!-- TODO(major): remove this note and update the prompt configuration example in the next major release -->
30
30
31
31
> [!NOTE]
32
-
> By default, `include_coder_system_prompt` is false. For proper integration with Coder (tool selection & task reporting),
33
-
> it is recommended to set `include_coder_system_prompt` to true. In the next major release, this will become the default.
32
+
>
33
+
> By default, `report_tasks_system_prompt` is false.
34
+
> When `report_tasks` is true, it is recommended to set `report_tasks_system_prompt` to true to inject the Coder system prompt to ensure proper task-reporting integration.
35
+
> If `report_tasks` is false, this setting has no effect. In the next major release, the default for `report_tasks_system_prompt` will be true.
34
36
35
37
## Prerequisites
36
38
@@ -42,7 +44,7 @@ module "claude-code" {
42
44
43
45
### Prompt configuration (recommended)
44
46
45
-
Include Coder’s prompt sections and optionally add your own system prompt.
47
+
Include Coder’s prompt section for task reporting and optionally add your own system prompt.
Copy file name to clipboardExpand all lines: registry/coder/modules/claude-code/main.tf
+6-14Lines changed: 6 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -186,10 +186,11 @@ variable "system_prompt" {
186
186
default="Send a task status update to notify the user that you are ready for input, and then wait for user input."
187
187
}
188
188
189
-
variable"include_coder_system_prompt" {
189
+
variable"report_tasks_system_prompt" {
190
190
type=bool
191
-
description="Include Coder system prompts for proper integration with tool selection and task reporting. Defaults to false for backward compatibility, will default to true in the next major release."
191
+
description="Include the Coder system prompt for task reporting when report_tasks is true. Defaults to false for backward compatibility, will default to true in the next major release."
192
192
# TODO(major): default to true in the next major release
193
+
# Related to PR: https://github.com/coder/registry/pull/443
0 commit comments