Claude Code Development Environment
Code name:
claude-dev
Installs the Claude Code IDE extension
across supported editors and persists ~/.claude (credentials, config, memory)
across every devcontainer rebuild — including GitHub Codespaces — via a Docker
named volume. Optionally installs the claude CLI too.
Also included automatically: repairs broken host paths in your git config and restores your SSH commit-signing key on every attach, on both local and cloud containers, with nothing to set up on your end — see
helpers4-commonfor how it works.
Example Usage
Section titled “Example Usage”No initializeCommand required — Docker creates the volume automatically the
first time it’s needed.
With the CLI:
GitHub Codespaces
Section titled “GitHub Codespaces”Works out of the box. A host bind-mount would not: GitHub Codespaces doesn’t
support mounting the local file system
at all, so this feature uses a Docker named volume instead. Each codespace
gets its own volume, populated on your first /login there.
The volume name includes ${devcontainerId}, so it’s dedicated to this one devcontainer —
credentials, permissions, hooks, and Claude Code’s own per-project memory survive rebuilds of
this project, but never bleed into another one. The trade-off: logging in again is needed once
per devcontainer, not once per machine. Earlier versions keyed the volume by ${localEnv:USER}
instead (one identity shared across every local project) — deliberately dropped, because Claude
Code’s own project/memory partitioning keys off the container-internal workspace path (e.g.
/workspaces/<name>), not a host-unique id: two unrelated projects using the same mount-path
convention would silently share one memory/settings bucket under that model.
Options
Section titled “Options”| Option | Type | Default | Description |
|---|---|---|---|
username | string | auto | Container user that receives the ~/.claude symlink. auto detects vscode/node/codespace/uid-1000, in that order; set an explicit username to override. |
installCli | boolean | false | Install the Claude Code CLI (claude command) via the official native installer. |
IDE support
Section titled “IDE support”| Editor | Status | ID |
|---|---|---|
| VS Code | ✅ | anthropic.claude-code |
| Cursor | ✅ | anthropic.claude-code (same registry as VS Code) |
| JetBrains (IntelliJ, WebStorm…) | 🔜 | pending xmlId confirmation — marketplace page: plugin/27310 (vendor: Anthropic) |
| Zed | 🔜 | no standard devcontainer customization format yet |
How it works
Section titled “How it works”- Build time (
install.sh): generates/usr/local/share/claude-dev/setup-credentials.shwith the target user’s home path baked in. - Mount (
devcontainer-feature.json → mounts): mounts the Docker named volumehelpers4-claude-credentials-${devcontainerId}at/mnt/h4claudeinside the container. - Once, at container creation (
postCreateCommand):setup-credentials.shreplaces~/.claudewith a symlink to/mnt/h4claude— credentials, settings, and Claude Code memory all survive rebuilds. Runs exactly once per container instance (a rebuild creates a new instance, so it runs again then, but never again on a plain restart of the same one) — the volume is already mounted at container creation, before any command runs inside it, so there’s no need to redo this on every start. Anything another feature wrote into~/.claudeat image build time (before this volume existed to write into) is added to the volume rather than discarded — see the script’s own comments for exactly how.
If /mnt/h4claude is not mounted (e.g. a standalone install.sh test), the
script warns and exits cleanly — the container starts normally, just without
persistence.
With installCli: true, install.sh also runs the official native installer
(curl -fsSL https://claude.ai/install.sh | bash) as the target user, then
symlinks the resulting binary into /usr/local/bin/claude so it’s on PATH
without depending on that user’s shell profile already including
~/.local/bin.
OS and Architecture Support
Section titled “OS and Architecture Support”- OS: any (no OS-level installation — pure IDE configuration)
- Architectures: amd64, arm64
Version History
Section titled “Version History”- v1.3.1:
setup-credentials.shnow runs viapostCreateCommandinstead ofpostStartCommand— the volume is already mounted by container creation (Docker attaches mounts before any command runs inside a container, not later), so there’s no need to redo the swap on every start; it now happens exactly once per container instance instead. Also no longer destructive: anything a feature wrote into~/.claudeat image build time (before this volume existed to write into) is added to the volume instead of being silently discarded —cp -rnonly adds what’s missing, it never overwrites the volume’s own accumulated state (real credentials, an actualsettings.json, memory). Also centralized the exclusive-vs-shared volume rationale ontoh4_ensure_volume_writable’s own comment inhelpers4-common, trimming the near-identical explanation this file (and mistral-dev/pnpm-store/playwright-dev) used to restate independently, and cross-references peon-ping’s dependency on this feature’s exact generated-script path. All found during a code-review sweep of v1.3.0’s coexistence fix with peon-ping — see peon-ping’s own v1.3.1 entry for the other half. - v1.3.0: Breaking: the credentials volume is now keyed by
${devcontainerId}instead of${localEnv:USER}— each devcontainer gets its own dedicated volume instead of sharing one across every local project. You’ll need to log in again once per devcontainer instead of once per machine. This closes a real cross-project leak: Claude Code partitions memory/sessions by its own container-internal workspace path, not by a host-unique id, so two unrelated projects using the same mount-path convention (e.g. both mounting their root at/workspaces/<name>) ended up sharing one memory and permissions bucket under the old, per-user-shared volume. See “GitHub Codespaces” above.h4_ensure_volume_writableis now called without--shared, since an exclusive-per-container volume can never have a concurrent writer with a different UID. - v1.2.4: Internal cleanup, no behavior change — dropped dead
_BUILD_ARG_*fallbacks ininstall.sh(INSTALLCLI,USERNAME). That prefix is only ever set for the legacyinternalVersion: "1"manifest shape, which this feature (and every other one in this repo) never declared — the fallback never fired, the plain option env var alone always resolved the same value. - v1.2.3: Internal refactor, no behavior change — the shared-volume ownership logic
(claim on first use, share via
chmodafterward instead of stealing from another project’s container) now callshelpers4-common’sh4_ensure_volume_writable --sharedinstead of carrying its own inline copy. - v1.2.2: Documentation only, no functional change — the previous wording sweep made the
JSON
descriptionfield far too long, shifting focus away from the feature itself onto the self-heal side benefit. Shortened to 5 words and kept generic (no implementation detail like “git config”), matching the original’s brevity and level of detail. - v1.2.1: Documentation only, no functional change — the self-heal callout above (and the
JSON
descriptionfield) led with internal jargon (“helpers4’s self-heal”) instead of the actual benefit; reworded to lead with what it does, with the full mechanism staying inhelpers4-common’s own README. - v1.2.0: Documentation only, no functional change — mentions that
helpers4-common’s automatic git-config self-heal (see above) now comes along with this feature. - v1.1.0: Switched from an inline copy of
helpers4-common’s bootstrap (user detection, apt helpers) to a directdependsOnon thehelpers4-commonfeature — no behavior change, just a single source of truth for that logic instead of a copy every feature had to keep in sync. - v1.0.8: Fixed
EACCESerrors (e.g. “Failed to retrieve auth status after login”,mkdir '.../sessions'permission denied) on a fresh container: the named volume introduced in v1.0.6 is created root-owned by Docker, and nothing chowned it to the container’s actual user before symlinking~/.claudeinto it.setup-credentials.shnow chowns the volume to the current user when needed, same patternpnpm-store’s guard script already used. - v1.0.7: Added
installClito install theclaudeCLI alongside the extension. - v1.0.6: Switched credential persistence from a host bind-mount to a Docker named volume
to fix GitHub Codespaces, which doesn’t support host bind-mounts at all (#66). If you’re
upgrading from v1.0.5 or earlier, this is a breaking change: the new volume starts empty —
your old host-bound
~/.claudeisn’t copied in automatically. Re-authenticate once after upgrading, or manually copy your old~/.claudecontent into the new volume (e.g.docker cpinto a throwaway container mountinghelpers4-claude-credentials-${USER}) if you want to keep it.
