@getmonoceros/workbench 1.20.1 → 1.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin.js +621 -171
- package/dist/bin.js.map +1 -1
- package/features/claude-code/devcontainer-feature.json +7 -1
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainerFeature.schema.json",
|
|
3
3
|
"id": "claude-code",
|
|
4
4
|
"name": "Claude Code",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.2.0",
|
|
6
6
|
"description": "Anthropic's CLI coding assistant. OAuth/subscription login persists across container rebuilds.",
|
|
7
7
|
"documentationURL": "https://docs.anthropic.com/en/docs/claude-code",
|
|
8
8
|
"options": {
|
|
@@ -15,6 +15,12 @@
|
|
|
15
15
|
"type": "string",
|
|
16
16
|
"default": "",
|
|
17
17
|
"description": "`sk-ant-…` for API auth; empty for OAuth login on first run."
|
|
18
|
+
},
|
|
19
|
+
"permissionMode": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"proposals": ["auto", "ask", "edits", "bypass"],
|
|
22
|
+
"default": "auto",
|
|
23
|
+
"description": "Default Claude permission mode in this container. `auto` = Auto Mode: no per-action prompts and no recurring warning (a background classifier vets actions) — the comfortable default for an isolated container. `ask` prompts as usual; `edits` auto-accepts file edits but prompts for other commands; `bypass` skips all prompts (its one-time warning is pre-accepted). Monoceros writes this to ~/.claude/settings.json on apply; override per-project or with a CLI flag."
|
|
18
24
|
}
|
|
19
25
|
},
|
|
20
26
|
"customizations": {
|