Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit 48dbe98

Browse files
kylecarbsbpmctbcpeinhardt
authored
fix(claude-code): add dangerously-skip-permissions (#442)
Co-authored-by: Ben Potter <[email protected]> Co-authored-by: Benjamin <[email protected]>
1 parent cc567ed commit 48dbe98

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

claude-code/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Run the [Claude Code](https://docs.anthropic.com/en/docs/agents-and-tools/claude
1414
```tf
1515
module "claude-code" {
1616
source = "registry.coder.com/modules/claude-code/coder"
17-
version = "1.2.0"
17+
version = "1.2.1"
1818
agent_id = coder_agent.example.id
1919
folder = "/home/coder"
2020
install_claude_code = true
@@ -102,7 +102,7 @@ Run Claude Code as a standalone app in your workspace. This will install Claude
102102
```tf
103103
module "claude-code" {
104104
source = "registry.coder.com/modules/claude-code/coder"
105-
version = "1.2.0"
105+
version = "1.2.1"
106106
agent_id = coder_agent.example.id
107107
folder = "/home/coder"
108108
install_claude_code = true

claude-code/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ resource "coder_script" "claude_code" {
151151
export LC_ALL=en_US.UTF-8
152152
153153
# Create a new tmux session in detached mode
154-
tmux new-session -d -s claude-code -c ${var.folder} "claude"
154+
tmux new-session -d -s claude-code -c ${var.folder} "claude --dangerously-skip-permissions"
155155
156156
# Send the prompt to the tmux session if needed
157157
if [ -n "$CODER_MCP_CLAUDE_TASK_PROMPT" ]; then

0 commit comments

Comments
 (0)