一键导入
aicontainer-setup
Manual setup of aicontainer (the sandboxed devcontainer for running AI coding agents in bypass/auto-approve mode) in a project.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manual setup of aicontainer (the sandboxed devcontainer for running AI coding agents in bypass/auto-approve mode) in a project.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | aicontainer-setup |
| description | Manual setup of aicontainer (the sandboxed devcontainer for running AI coding agents in bypass/auto-approve mode) in a project. |
| disable-model-invocation | true |
Your job is to take a project from "no sandbox" to "the AI agent runs behind the aicontainer devcontainer boundary, configured for this project's stack." You detect the stack, sanity-check that a Linux devcontainer is even the right tool, propose a concrete customization plan, and — once the user approves — apply it.
aicontainer's whole point is letting Claude Code / Codex / OpenCode run with
permissions skipped without handing a prompt-injected dependency your real
$HOME, .env, SSH keys, or gh token. Good setup is what makes that sandbox
actually usable for the project — a Python repo needs a writable .venv, an
agent that uses go-to-definition needs a language server on PATH, a Postgres
app needs the DB reachable. That per-project wiring is the work here.
These come straight from how aicontainer is designed; violating them creates work
that silently gets wiped or breaks aic sync.
aic from the host, never from inside the container. Setup happens
before (or outside) the sandbox. If you detect you're inside an aicontainer
already (see Step 0), stop and tell the user to run this from a host terminal —
.devcontainer/ is mounted read-only in the sandbox by design..devcontainer/devcontainer.json or
.devcontainer/docker-compose.yml. They are template-managed: aic init
writes them and aic sync overwrites them (only the AIC_TOOLS / AIC_SHELL
choices survive). All per-project customization goes in the project-owned
files instead (listed in Step 5). Edits to the managed files get reset on the
next sync.aic sync never
touches: Dockerfile.project, docker-compose.override.yml, chown-paths,
post-create.project.sh, vscode-extensions, vscode-settings.json,
firewall-allowlist, shell-rc.zsh, p10k.zsh. These are opt-in by presence.aic init / aic sync. Confirm before
aic up — it pulls or builds a multi-gigabyte image and can take minutes —
but once the user says go, drive it yourself: verify the container actually
boots and fix what's broken (Step 8). Don't just hand back a command and hope.Before anything, confirm the ground is solid:
/etc/aic exists,
or env vars like REMOTE_CONTAINERS / DEVCONTAINER / AIC_TOOLS are set,
you're inside the sandbox — .devcontainer/ writes are blocked by the
PreToolUse hook. Stop and tell the user to run setup from a host terminal.aic init expects a project directory. If there's no
repo, that's fine, but note it (the sandbox bind-mounts $PWD as /workspace
regardless).aic CLI installed? Check command -v aic. If it's missing,
don't abort — offer to install it, since nothing else in this skill works
without it:
node --version) — it's the one
prerequisite for the npm install (and the bundled @devcontainers/cli). If
Node is too old or absent, say so and point the user at it rather than
attempting the install.npm install -g aicontainer. If the user prefers a git checkout, the
alternative is
git clone https://github.com/stefanoginella/aicontainer ~/.aicontainer && ~/.aicontainer/install.sh
(a checkout also needs npm install -g @devcontainers/cli separately).command -v aic (or aic --version)
and confirm it's now on PATH before continuing. If the install failed or
aic still isn't found, stop and surface the error; don't push ahead into
the steps below.docker info should succeed (Docker Desktop / OrbStack
/ Colima). Setup can still proceed without it, but Step 8's boot verification
(and aic up generally) will need it — note it rather than blocking..devcontainer/devcontainer.json
exists and references aicontainer (the GHCR image or AIC_TOOLS), this is a
re-setup, not a fresh install — you're in update mode. Don't regenerate
from scratch and don't re-propose files that already exist and are correct.
Still read the README (Step 1) and re-detect/confirm the stack (Steps 2–3),
then follow "Update mode" below instead of the greenfield Step 5. (If no
.devcontainer/ exists, it's a fresh setup — continue straight through
Steps 1–9.) A missing .devcontainer/ still isn't proof of a clean slate: a
repo set up under an older aic can leave a stale legacy Docker volume/stack
that aic up migrates automatically (aic: migrating legacy session transcripts …). That's expected, not an error — don't treat it as a failure.When Step 0 found an existing aic setup, the job is not "generate config." It
is "check whether this project's personalization still fits its stack, and update
only what's missing, stale, or drifted." A project set up months ago may have
gained a language, a service, browser e2e tests, or new build artifacts — or had
the global aic upgraded under it. Read the README (Step 1) and refresh the
stack profile (Steps 2–3) first, then:
Dockerfile.project, docker-compose.override.yml,
chown-paths, post-create.project.sh, vscode-extensions,
vscode-settings.json, firewall-allowlist, shell-rc.zsh, p10k.zsh. Also
note the current AIC_TOOLS / AIC_SHELL in devcontainer.json (the only
managed values that survive aic sync), and whether a host-global overlay
already exists at ~/.config/aicontainer/{rc,p10k}.zsh. This is your
baseline — what's already covered.post-create.project.sh and no editor
extension; a Python project with no writable .venv volume; a newly-added
Postgres/Redis service not wired in docker-compose.override.yml;
Playwright/Chromium added with no Dockerfile.project.chown-paths line for a volume that's no longer declared; a
vscode-settings.json interpreter path that no longer exists; an LSP install
or extension for a language the project dropped; a tool in AIC_TOOLS the
user no longer wants.npm update -g aicontainer, a Dockerfile.project whose FROM …:vX.Y.Z
lags the tag now pinned in docker-compose.yml. aic sync warns; the
fix is aic sync --bump-base (it rewrites the FROM in place — never
hand-edit a project-owned file's base for this).aic sync (the re-setup verb) so override wiring and the
vscode-extensions / vscode-settings.json merges refresh. Then move to
Step 8 to confirm the refreshed setup actually boots — an update that
"should" fix a gap isn't done until you've watched it come up clean.Fetch the live README so your recipes match the current release (override-file
syntax and the Dockerfile.project / LSP recipes occasionally change):
https://raw.githubusercontent.com/stefanoginella/aicontainer/main/README.mdhttps://github.com/stefanoginella/aicontainerIf the fetch fails (offline, firewall), degrade gracefully — don't abort. Use, in
order: (a) the .devcontainer/README.md that aic init drops into the project
(version-matched, documents the managed-vs-project-owned split), (b) aic help,
and (c) references/stack-and-suitability.md in this skill. The README is the
source of truth for recipe syntax; this skill carries the judgment (stack
detection, suitability, LSP-by-language).
Build a picture of what this project actually is. Read, don't guess. Cover:
package.json, pyproject.toml / requirements.txt
/ uv.lock, go.mod, Cargo.toml, Gemfile, pom.xml / build.gradle,
composer.json, *.csproj / *.sln, mix.exs, pubspec.yaml,
Package.swift, *.xcodeproj, CMakeLists.txt..nvmrc, .python-version, .tool-versions,
.ruby-version, Dockerfile, existing docker-compose.yml.docker-compose.yml services, .env.example
/ .env.sample keys (DATABASE_URL, REDIS_URL, …), ORM/migration config.
These become host-service or sibling-container wiring.@playwright/test,
cypress, puppeteer) and native build steps, which need a Dockerfile.project..md design docs — README.md, ARCHITECTURE.md, docs/, PRD / spec /
design files. Lean on these when code signals are thin or the repo is greenfield;
a spec saying "React + FastAPI + Postgres" is a real signal.references/stack-and-suitability.md has the full signal→inference table. The
goal is a short profile: language(s) + package manager(s) + runtime versions +
services + test tooling + any GUI/mobile/native/hardware signals.
Don't proceed on a guess. Present the detected profile compactly and ask the user to confirm or correct it — use AskUserQuestion when the choice is crisp, plain prose when it's open. If detection was inconclusive (sparse repo, unfamiliar layout), ask the user directly what the stack is rather than inventing one. The customization plan is only as good as this profile, so it's worth the round-trip.
aicontainer is a headless Linux devcontainer. Most server / web / CLI /
library / data / ML-on-CPU work is a great fit. Some work fundamentally can't run
here — flag it before generating config so the user isn't surprised after a
rebuild. Use the matrix in references/stack-and-suitability.md. The headline
non-fits, and why:
nvidia-container-toolkit); possible
but advanced and may not be supported.When you hit a non-fit, say so plainly, explain what specifically won't work, and note whether a partial setup still helps (e.g. an iOS app with a Node backend — sandbox the backend, build the app on the host). Then let the user decide whether to proceed. Don't silently generate a config that can't work.
First the two aic init choices (ask, or take the defaults and say so):
--with): claude-code, codex, opencode, or a comma-list.
Default is all three.--shell): zsh (default), bash, or fish.Then map the confirmed stack to project-owned files. The aim is a sandbox the
project actually builds and runs in. Common mappings (full syntax: the README from
Step 1; rationale and the LSP-by-language table: references/stack-and-suitability.md):
chown-paths — for build artifacts you don't want on the
bind-mounted workspace: Python .venv + uv cache, Node node_modules, Rust
target/cargo, Go build cache. Persists across rebuilds and dodges the macOS
bind-mount perf hit. Always pair a named volume with a chown-paths entry —
Docker inits named volumes root:root and the mount is otherwise unwritable by
vscode. Keep caches under /workspace/ or /home/vscode/.cache/ (the only
paths chown-paths honors).Dockerfile.project — for anything needing apt / root or baked-in
browsers: native build deps, DB clients, Playwright/Chromium (README has the
exact recipe), extra language runtimes. FROM must match the pinned tag in the
generated docker-compose.yml (read it after init). Point at it with a build:
block in docker-compose.override.yml, not by editing docker-compose.yml.docker-compose.override.yml — env vars, host-service wiring
(DATABASE_URL: …@host.docker.internal:5432/… to reach a DB running on the
host; add the extra_hosts line on Linux), extra ports/mounts, the named-volume
declarations, and the Dockerfile.project build: block.vscode-extensions + vscode-settings.json — editor IntelliSense: the
language extension stack (Python → ms-python.python + ms-python.vscode-pylance
charliermarsh.ruff; TS → dbaeumer.vscode-eslint + esbenp.prettier-vscode;
etc.), interpreter path, format-on-save. Include the stop-auto-activating-.venv
settings for Python projects (otherwise VS Code types source .../activate into
the terminal and clobbers the AI CLI you just launched — README has the two keys).post-create.project.sh — runs as vscode, cwd /workspace, on every
create. Two jobs: (1) install the agent's LSP server binary on PATH so
Claude Code's go-to-def / find-refs tool works — this is separate from the
editor extensions and is the LSP piece people miss (Python → npm i -g pyright,
giving pyright-langserver; TS → npm i -g typescript typescript-language-server;
others in the references table); (2) project bootstrap (uv sync, npm ci,
DB seed). Three sandbox constraints shape this script — get them wrong and the
first boot logs a scary ❌ (full recipes: "post-create constraints" in the
references):
pyproject.toml / package.json yet, so wrap the step
(if [ -f pyproject.toml ]; then uv sync; fi) or it hard-fails on first create..git/hooks is
bind-mounted read-only (sandbox self-protection), so lefthook install /
husky install / pre-commit install all fail with read-only file system.
The host owns hook installation; the container only needs the hook binary
on PATH so the host-written shim runs. Gate any install on [ -w .git/hooks ].npm i -g can't install postinstall-binary tools. The sandbox sets
NPM_CONFIG_IGNORE_SCRIPTS, so tools that fetch a binary in a postinstall
(lefthook, gitleaks, …) install nothing. Fetch the pinned static release
binary into ~/.local/bin instead. (Pure-JS LSP servers like pyright ship
their code and are unaffected; add --no-audit to real npm i -g calls to
quiet a cosmetic global+audit warning.)firewall-allowlist — only if the user wants the stricter opt-in network
allowlist (reviewing untrusted code, corporate LAN). Off by default; mention it,
don't impose it.shell-rc.zsh / p10k.zsh (personal shell overlay) — the user's own zsh
prompt/aliases inside the sandbox (zsh only); two independent slots, opt-in by
presence. Two sources, project winning: the project-owned
.devcontainer/{shell-rc.zsh,p10k.zsh} (per-project), or the host-global seed
~/.config/aicontainer/{rc,p10k}.zsh (every project on the machine). It is
code, not data — it crosses into the sandbox verbatim (it can't be
sanitized) and the in-container agent can read it, so no secrets, ever. The
host's real ~/.zshrc / ~/.p10k.zsh are never auto-forwarded. If the user
wants their prompt in the sandbox, don't hand-wave it — use the offer in
"Personal shell overlay — offer to draft a safe version" below.LSP is a first-class concern (the user cares about it). Make explicit that
there are two LSP surfaces: the editor's IntelliSense (extensions +
settings) and the agent's LSP tool (a language-server binary on PATH,
installed from post-create.project.sh). A project usually wants both. See the
references table for the binary + extension per language.
Most users who want "my shell inside the sandbox" have a host ~/.p10k.zsh /
~/.zshrc and reasonably expect them to appear. They don't: aicontainer never
auto-forwards host dotfiles — they routinely hold secrets and host-specific
breakage, and this sandbox runs an untrusted agent that can read whatever is
mounted. The overlay reads only the aic-namespaced seed or the project files
(see the overlay bullet above). So offer to bridge that gap: draft the
overlay from their host dotfiles — an assisted, reviewed draft, never a silent
transform.
This is safe to do here because you run on the host, as the user's permissioned session — a different trust context from the sandboxed bypass-permissions agent the threat model targets, and you can already read these files. The trust anchor holds only if the user stays the approver: you move them from author to reviewer, you don't remove them. Do not auto-place a drafted file.
When the user opts in:
~/.p10k.zsh, ~/.zshrc) host-side.p10k.zsh — near-verbatim. Almost always p10k configure output:
declarative typeset -g POWERLEVEL9K_*, no secrets. Copy it, but scan for
the unusual — custom segment functions that shell out, hardcoded host paths,
anything secret-shaped — and flag those.rc.zsh — whitelist-extract, don't blacklist-strip. Pull only
clearly-safe categories (aliases, simple functions, setopt, keybindings,
prompt tweaks). Leave everything else behind: export *_KEY/_TOKEN/_SECRET=…,
sourced secret/env files, plugin managers and eval "$(tool init)" for
tools not in the sandbox, aliases to host-only binaries. When in doubt,
leave it out.~/.config/aicontainer/ (host-global — one prompt
for every project) or .devcontainer/ (this project only), as the user
prefers. Mind the filename asymmetry: the host seed is rc.zsh /
p10k.zsh; the project files are shell-rc.zsh / p10k.zsh. It takes effect
on the next aic rebuild (zsh sources it after the managed baseline, so a
personal prompt wins).If the user declines, or you can't confidently produce a clean draft, fall back
to the manual path: they create ~/.config/aicontainer/p10k.zsh (and optionally
rc.zsh) by hand — no secrets — then aic rebuild.
Show the user, before touching anything:
aic init invocation (with --with / --shell).aic up, watched to
completion, fixing anything broken) before handing off — pending their okay
since it's a multi-gigabyte pull/build.Get an explicit yes. If they want changes, fold them in and re-show.
Order matters (so the override gets wired into dockerComposeFile):
aic init --with <tools> --shell <shell> for a fresh project,
or aic sync --with <tools> --shell <shell> if Step 0 found an existing aic
setup. (Both are non-interactive when you pass the flags.).devcontainer/docker-compose.yml if you're
writing a Dockerfile.project, and use it in its FROM.aic sync once more so the freshly-created
docker-compose.override.yml gets appended to dockerComposeFile in
devcontainer.json (it's wired only when the file is present). Verify with
grep dockerComposeFile .devcontainer/devcontainer.json — both files should
appear.Config is on disk now, not yet proven to work. Move to Step 8 before calling this done.
Writing the files isn't the job — a sandbox the project can't actually start in isn't done. Prove it boots and that Step 5's customization took effect before reporting success.
aic up pulls a multi-gigabyte GHCR image
(pull mode) or builds one locally (--build mode, or any Dockerfile.project)
— either can take minutes and use real disk. Confirm with the user before
running it. If they'd rather run it themselves, or Step 0 flagged Docker
isn't running, skip straight to Step 9 and hand off the commands instead.aic up and watch it through to completion, not just the exit code
— a Dockerfile.project build failure, a bad docker-compose.override.yml
key, or a stale pinned tag all surface here.Dockerfile.project's FROM matches the pinned
tag (grep image: .devcontainer/docker-compose.yml).docker-compose.override.yml
syntax and that it only extends the devcontainer service.chown-paths, under an allowed prefix (/workspace/,
/home/vscode/.cache/).post-create.project.sh step didn't take effect (its failures are logged,
not fatal to boot) → fix the script, then aic rebuild (or
aic destroy && aic up if state needs a clean slate) to re-run it.
After any project-owned-file fix, re-run aic sync so wiring stays current,
then retry aic up / aic rebuild. Iterate until it's clean — don't stop at
the first fix without confirming it actually resolved the failure.aic run <cmd> (no need for
an interactive shell):
PATH: aic run command -v pyright-langserver (or whatever
Step 5 installed).aic run test -w /workspace/.venv && echo ok.aic run curl -sS host.docker.internal:5432 (or
whatever the stack needs).aic preflight to confirm the trust boundary (firewall mode, mounts)
matches the plan.
aic run proves the agent LSP (binary on PATH), volumes, and services —
but not the editor side: vscode-extensions / vscode-settings.json only
take effect in a VS Code Dev Containers session, so don't report editor
IntelliSense as "verified." That's the expected limit of a headless boot check,
not a gap.aic down stops the
container (volumes persist) if they're not about to start working; leave it
up if they are.If verification genuinely isn't possible (no Docker, offline, user declined), say so plainly and fall back to the Step 9 handoff.
Tell the user what to run next and how to confirm it worked. This differs a little depending on whether Step 8 ran:
aic down, and give them the resume path — aic shell (or aic up again
if stopped), then claude / codex / opencode.aic up (pulls/builds the image, starts the stack), then aic shell, then
claude / codex / opencode.Cmd+Shift+P → Dev Containers: Reopen in Container.aic preflight to re-print the trust boundary;
aic signing if they sign commits (the host signing key isn't forwarded);
the firewall opt-in for stricter network containment.Keep the handoff concrete — these are copy-pasteable commands, not prose.
references/stack-and-suitability.md — stack-detection signal table, the full
devcontainer-suitability matrix, and the LSP-server-by-language table (editor
extension + agent binary). Read it during Steps 2, 4, and 5.