# Deepworkplan Addon Devcontainer

> Optional DeepWorkPlan addon that adds (or reconciles) a compose-based devcontainer to a repo — base image and supporting services reasoned from the detected stack, with persistent AI-CLI auth, the dailybot-project-network, the DOCKER_DEV_ENV=vscode convention, and project-identity precedence. Opt-in, never required, reconciles existing setups instead of clobbering them. Use when the developer wants a reproducible isolated dev container for an AI-first repo.

- Skill: `dailybothq/deepworkplan-addon-devcontainer-3` (Agent Skill, multi-file: 8 files)
- Install (CLI): `npx skillmds@latest add dailybothq/deepworkplan-addon-devcontainer-3`
- Raw SKILL.md: https://api.skillmd.com/api/skills/dailybothq/deepworkplan-addon-devcontainer-3/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: dailybothq (https://skillmd.com/u/dailybothq)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/dailybothq/deepworkplan-addon-devcontainer-3

---


# DeepWorkPlan — Devcontainer Addon

Add a **reproducible, isolated dev container** to the target repo so any human or
AI agent gets the same environment, with **AI-CLI auth that survives rebuilds**.
This is the methodology's **first opt-in addon** — it is **never** required for a
repo to be AI-first.

> ## The rule that overrides everything: REASON about the repo, then generate
>
> ~85% of every Dailybot devcontainer is identical — that **common skeleton** is
> the stable part you carry forward. ~15% is repo-specific — base image, user,
> `workspaceFolder`, supporting services, ports, secrets — and that part you
> **reason out from the target repo's actual stack**, never by copying one
> reference repo. The one near-verbatim exception is the **AI-CLI persistence
> entrypoint** (`templates/entrypoint.md`): it is stable enough to copy with only
> the home-path / user adjusted.

## Read these first (all relative inside the skill)

- [`SPEC.md`](SPEC.md) — the normative (RFC-2119) contract: common skeleton,
  per-repo reasoning checklist, project-identity precedence, validation rule,
  public-OSS variant.
- [`templates/presets.md`](templates/presets.md) — the **7 reasoning presets**
  (node-web, node-service, node-lambda, python-service, python-cli-oss,
  static-site, orchestrator-hub). Match one as a *starting checklist*, then
  verify every assumption against the real repo — **detected reality wins**.
- The other `templates/*.md` — reasoning guides for each file you generate.
- `../README.md` — the addon mechanism (opt-in, reconcile-don't-clobber, contract).

## When this runs

- From **`onboard` Phase 7b** — after the core AI-first scaffolding, `onboard`
  offers this addon; if accepted it reads this SKILL and runs the flow below.
- **Directly** — `/deepworkplan-addon-devcontainer` on an already-onboarded repo
  to add or reconcile a devcontainer.

## Trust boundary (write scope)

`allowed-tools` includes write-capable `Edit`, `Write`, and `Bash`. Exactly what
this addon may write — and what it MUST NOT — is enumerated below. Skills.sh /
Gen Agent Trust Hub treat `allowed-tools` as a trust boundary; this section is
the human-readable contract for that field. Anything not listed here does not
happen.

**Reads (always allowed, no consent needed):** the target repo's tree (stack
detection, existing `.devcontainer/` / `docker/` files, lockfiles, RECON notes),
Docker metadata where available.

**Writes (only after the developer accepts the addon offer, per file):**

- `.devcontainer/devcontainer.json`, `docker/local/**` (compose, Dockerfile,
  entrypoint, custom commands), and — for public repos — `.dockerignore` +
  secret-free `.env.example`. Reconcile mode: existing values are preserved;
  replacing or deleting anything the developer already has requires explicit
  approval.
- Optional docs notes describing the devcontainer (only on an accepted
  docs-update prompt).

**It MUST NOT:**

- Put secrets in images, compose files, or `.env.example` — ever.
- Enable SSH key seeding (the `~/.ssh` read-only mount + `SEED_SSH_KEYS=1`
  pair) without the developer's explicit opt-in, or pre-set that flag in
  generated files.
- Generate AI-CLI wrappers that inject permission-bypass flags — wrappers are
  pass-through; the developer opts into elevated modes themselves.
- Add services the app does not actually depend on, publish host ports on the
  devcontainer service, or run network installers (installs go through package
  managers or the verified two-step flow in `templates/Dockerfile.md`).
- Push, commit, or mutate anything on the host outside the repo checkout.

## The flow

### Step 0 — Consent + reconcile check
1. Confirm the developer wants a devcontainer (skip silently if declined — the
   repo stays baseline-conformant).
2. **Detect existing setup.** Look for `.devcontainer/`, `docker/`,
   `docker-compose.{yml,yaml}`, a `Dockerfile`. If any exist, you are in
   **reconcile mode**: you MUST preserve working values and MUST NOT overwrite or
   delete files without explicit approval (see SPEC §Reconcile).

### Step 1 — Reason about the stack (reuse onboard's RECON)
If `onboard` already produced `.dwp/onboard/RECON.md`, read it. Otherwise detect:
language/runtime, package manager (from the lockfile that exists), build/test/
lint/typecheck commands, supporting services implied by the app's dependencies
(DB / cache / queue / emulators), exposed ports, and whether the repo is
**public** (OSS) or private. Pick the matching **preset** from
`templates/presets.md` as a checklist.

### Step 2 — Decide the reasoned ~15% (SPEC §3 checklist)
- **Base image + user + `workspaceFolder`** from the language (Node vs Python; a
  `node` vs created `dev-user`; `/app` vs `/workspace` vs `/code/js`).
- **Supporting services** from real dependencies — only those the app actually
  uses (postgres / pgvector / redis / mailpit / dynamodb / localstack / chromium).
- **Ports**, **secrets handling** (public vs private), **multi-stage** build need,
  locales, extra CLIs (AWS, Lighthouse/chromium).

### Step 3 — Generate / reconcile the files
Using the templates, produce or reconcile:
`.devcontainer/devcontainer.json`, `docker/local/docker-compose.{yaml,yml}`,
`docker/local/{service}/Dockerfile`, `docker/local/{service}/entrypoint.sh`
(the near-verbatim AI-CLI persistence piece), `docker/custom_commands.sh`, and —
**for public repos** — `.dockerignore` + a secret-free `.env.example`. Always:
keep the **common skeleton** (AI-CLI persistence volumes, `dailybot-project-network`,
`DOCKER_DEV_ENV=vscode`→`sleep infinity`, `codecheck`/`check`/`fix`/`test`).
Two security-shaped decisions to surface explicitly: (a) **SSH key seeding is
opt-in** — offer the read-only `~/.ssh` mount + `SEED_SSH_KEYS=1` pair only when
the developer needs git-over-SSH, never enable it silently (see
`templates/entrypoint.md` § Blast radius); (b) **AI-CLI wrappers are
pass-through** — they forward flags verbatim and never inject a
permission-bypass flag (see `templates/custom_commands.md`).

### Step 4 — Project identity
Set identity by the precedence in SPEC §4
(`.dailybot/profile.json` → `DAILYBOT_PROJECT_NAME` → `devcontainer.json name`).
Do not invent a new name if one already resolves.

### Step 5 — Validate (SPEC §6)
Run the validation checklist. Report what was created/reconciled, the chosen
base image + services + ports, identity source, and any deferred items. If a
container build/smoke test cannot run here, say why (don't silently skip).

## Failure-mode guardrails

- **Never required, never blocking.** If the developer declines, stop cleanly.
- **No clobber.** Existing devcontainer/docker files are reconciled or
  backed-up-and-asked, never silently overwritten.
- **No phantom services.** Only add a service the app actually depends on.
- **No secrets in images or in `.env.example`** — especially for public repos.
- **Reason wins over preset.** If the preset and the real repo disagree,
  re-derive from the repo.

