[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-trail-of-bits-devcontainer-setup":3,"mdc--kdo7ho-key":32,"related-org-trail-of-bits-devcontainer-setup":2288,"related-repo-trail-of-bits-devcontainer-setup":2447},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":27,"sourceUrl":30,"mdContent":31},"devcontainer-setup","create devcontainers for isolated development","Creates devcontainers with Claude Code, language-specific tooling (Python\u002FNode\u002FRust\u002FGo), and persistent volumes. Use when adding devcontainer support to a project, setting up isolated development environments, or configuring sandboxed Claude Code workspaces.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"trail-of-bits","Trail of Bits","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Ftrail-of-bits.png","trailofbits",[13,17],{"name":14,"slug":15,"type":16},"Docker","docker","tag",{"name":18,"slug":19,"type":16},"Infrastructure","infrastructure",6139,"https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills","2026-07-17T06:05:25.993472",null,541,[26],"agent-skills",{"repoUrl":21,"stars":20,"forks":24,"topics":28,"description":29},[26],"Trail of Bits Claude Code skills for security research, vulnerability detection, and audit workflows","https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fdevcontainer-setup\u002Fskills\u002Fdevcontainer-setup","---\nname: devcontainer-setup\ndescription: Creates devcontainers with Claude Code, language-specific tooling (Python\u002FNode\u002FRust\u002FGo), and persistent volumes. Use when adding devcontainer support to a project, setting up isolated development environments, or configuring sandboxed Claude Code workspaces.\n---\n\n# Devcontainer Setup Skill\n\nCreates a pre-configured devcontainer with Claude Code and language-specific tooling.\n\n## When to Use\n\n- User asks to \"set up a devcontainer\" or \"add devcontainer support\"\n- User wants a sandboxed Claude Code development environment\n- User needs isolated development environments with persistent configuration\n\n## When NOT to Use\n\n- User already has a devcontainer configuration and just needs modifications\n- User is asking about general Docker or container questions\n- User wants to deploy production containers (this is for development only)\n\n## Workflow\n\n```mermaid\nflowchart TB\n    start([User requests devcontainer])\n    recon[1. Project Reconnaissance]\n    detect[2. Detect Languages]\n    generate[3. Generate Configuration]\n    write[4. Write files to .devcontainer\u002F]\n    done([Done])\n\n    start --> recon\n    recon --> detect\n    detect --> generate\n    generate --> write\n    write --> done\n```\n\n## Phase 1: Project Reconnaissance\n\n### Infer Project Name\n\nCheck in order (use first match):\n\n1. `package.json` → `name` field\n2. `pyproject.toml` → `project.name`\n3. `Cargo.toml` → `package.name`\n4. `go.mod` → module path (last segment after `\u002F`)\n5. Directory name as fallback\n\nConvert to slug: lowercase, replace spaces\u002Funderscores with hyphens.\n\n### Detect Language Stack\n\n| Language | Detection Files |\n|----------|-----------------|\n| Python | `pyproject.toml`, `*.py` |\n| Node\u002FTypeScript | `package.json`, `tsconfig.json` |\n| Rust | `Cargo.toml` |\n| Go | `go.mod`, `go.sum` |\n\n### Multi-Language Projects\n\nIf multiple languages are detected, configure all of them in the following priority order:\n\n1. **Python** - Primary language, uses Dockerfile for uv + Python installation\n2. **Node\u002FTypeScript** - Uses devcontainer feature\n3. **Rust** - Uses devcontainer feature\n4. **Go** - Uses devcontainer feature\n\nFor multi-language `postCreateCommand`, chain all setup commands:\n```\nuv run \u002Fopt\u002Fpost_install.py && uv sync && npm ci\n```\n\nExtensions and settings from all detected languages should be merged into the configuration.\n\n## Phase 2: Generate Configuration\n\nStart with base templates from `resources\u002F` directory. Substitute:\n\n- `{{PROJECT_NAME}}` → Human-readable name (e.g., \"My Project\")\n- `{{PROJECT_SLUG}}` → Slug for volumes (e.g., \"my-project\")\n\nThen apply language-specific modifications below.\n\n## Base Template Features\n\nThe base template includes:\n\n- **Claude Code** with marketplace plugins (anthropics\u002Fskills, trailofbits\u002Fskills, trailofbits\u002Fskills-curated)\n- **Sandboxing** via bubblewrap and socat\n- **Python 3.13** via uv (fast binary download)\n- **Node 22** via fnm (Fast Node Manager)\n- **ast-grep** for AST-based code search\n- **Network isolation tools** (iptables, ipset) with NET_ADMIN capability\n- **Security mounts**: `.devcontainer\u002F` mounted read-only to prevent container escape\n- **Token forwarding**: `CLAUDE_CODE_OAUTH_TOKEN` and `ANTHROPIC_API_KEY` via `remoteEnv`\n- **Modern CLI tools**: ripgrep, fd, fzf, tmux, git-delta\n\n---\n\n## Language-Specific Sections\n\n### Python Projects\n\n**Detection:** `pyproject.toml`, `requirements.txt`, `setup.py`, or `*.py` files\n\n**Dockerfile additions:**\n\nThe base Dockerfile already includes Python 3.13 via uv. If a different version is required (detected from `pyproject.toml`), modify the Python installation:\n\n```dockerfile\n# Install Python via uv (fast binary download, not source compilation)\nRUN uv python install \u003Cversion> --default\n```\n\n**devcontainer.json extensions:**\n\nAdd to `customizations.vscode.extensions`:\n```json\n\"ms-python.python\",\n\"ms-python.vscode-pylance\",\n\"charliermarsh.ruff\"\n```\n\nAdd to `customizations.vscode.settings`:\n```json\n\"python.defaultInterpreterPath\": \".venv\u002Fbin\u002Fpython\",\n\"[python]\": {\n  \"editor.defaultFormatter\": \"charliermarsh.ruff\",\n  \"editor.codeActionsOnSave\": {\n    \"source.organizeImports\": \"explicit\"\n  }\n}\n```\n\n**postCreateCommand:**\nIf `pyproject.toml` exists, chain commands:\n```\nrm -rf .venv && uv sync && uv run \u002Fopt\u002Fpost_install.py\n```\n\n---\n\n### Node\u002FTypeScript Projects\n\n**Detection:** `package.json` or `tsconfig.json`\n\n**No Dockerfile additions needed:** The base template includes Node 22 via fnm (Fast Node Manager).\n\n**devcontainer.json extensions:**\n\nAdd to `customizations.vscode.extensions`:\n```json\n\"dbaeumer.vscode-eslint\",\n\"esbenp.prettier-vscode\"\n```\n\nAdd to `customizations.vscode.settings`:\n```json\n\"editor.defaultFormatter\": \"esbenp.prettier-vscode\",\n\"editor.codeActionsOnSave\": {\n  \"source.fixAll.eslint\": \"explicit\"\n}\n```\n\n**postCreateCommand:**\nDetect package manager from lockfile and chain with base command:\n- `pnpm-lock.yaml` → `uv run \u002Fopt\u002Fpost_install.py && pnpm install --frozen-lockfile`\n- `yarn.lock` → `uv run \u002Fopt\u002Fpost_install.py && yarn install --frozen-lockfile`\n- `package-lock.json` → `uv run \u002Fopt\u002Fpost_install.py && npm ci`\n- No lockfile → `uv run \u002Fopt\u002Fpost_install.py && npm install`\n\n---\n\n### Rust Projects\n\n**Detection:** `Cargo.toml`\n\n**Features to add:**\n\n```json\n\"ghcr.io\u002Fdevcontainers\u002Ffeatures\u002Frust:1\": {}\n```\n\n**devcontainer.json extensions:**\n\nAdd to `customizations.vscode.extensions`:\n```json\n\"rust-lang.rust-analyzer\",\n\"tamasfe.even-better-toml\"\n```\n\nAdd to `customizations.vscode.settings`:\n```json\n\"[rust]\": {\n  \"editor.defaultFormatter\": \"rust-lang.rust-analyzer\"\n}\n```\n\n**postCreateCommand:**\nIf `Cargo.lock` exists, use locked builds:\n```\nuv run \u002Fopt\u002Fpost_install.py && cargo build --locked\n```\nIf no lockfile, use standard build:\n```\nuv run \u002Fopt\u002Fpost_install.py && cargo build\n```\n\n---\n\n### Go Projects\n\n**Detection:** `go.mod`\n\n**Features to add:**\n\n```json\n\"ghcr.io\u002Fdevcontainers\u002Ffeatures\u002Fgo:1\": {\n  \"version\": \"latest\"\n}\n```\n\n**devcontainer.json extensions:**\n\nAdd to `customizations.vscode.extensions`:\n```json\n\"golang.go\"\n```\n\nAdd to `customizations.vscode.settings`:\n```json\n\"[go]\": {\n  \"editor.defaultFormatter\": \"golang.go\"\n},\n\"go.useLanguageServer\": true\n```\n\n**postCreateCommand:**\n```\nuv run \u002Fopt\u002Fpost_install.py && go mod download\n```\n\n---\n\n## Reference Material\n\nFor additional guidance, see:\n- `references\u002Fdockerfile-best-practices.md` - Layer optimization, multi-stage builds, architecture support\n- `references\u002Ffeatures-vs-dockerfile.md` - When to use devcontainer features vs custom Dockerfile\n\n---\n\n## Adding Persistent Volumes\n\nPattern for new mounts in `devcontainer.json`:\n\n```json\n\"mounts\": [\n  \"source={{PROJECT_SLUG}}-\u003Cpurpose>-${devcontainerId},target=\u003Ccontainer-path>,type=volume\"\n]\n```\n\nCommon additions:\n- `source={{PROJECT_SLUG}}-cargo-${devcontainerId},target=\u002Fhome\u002Fvscode\u002F.cargo,type=volume` (Rust)\n- `source={{PROJECT_SLUG}}-go-${devcontainerId},target=\u002Fhome\u002Fvscode\u002Fgo,type=volume` (Go)\n\n---\n\n## Output Files\n\nGenerate these files in the project's `.devcontainer\u002F` directory:\n\n1. `Dockerfile` - Container build instructions\n2. `devcontainer.json` - VS Code\u002Fdevcontainer configuration\n3. `post_install.py` - Post-creation setup script\n4. `.zshrc` - Shell configuration\n5. `install.sh` - CLI helper for managing the devcontainer (`devc` command)\n\n---\n\n## Validation Checklist\n\nBefore presenting files to the user, verify:\n\n1. All `{{PROJECT_NAME}}` placeholders are replaced with the human-readable name\n2. All `{{PROJECT_SLUG}}` placeholders are replaced with the slugified name\n3. JSON syntax is valid in `devcontainer.json` (no trailing commas, proper nesting)\n4. Language-specific extensions are added for all detected languages\n5. `postCreateCommand` includes all required setup commands (chained with `&&`)\n\n---\n\n## User Instructions\n\nAfter generating, inform the user:\n\n1. How to start: \"Open in VS Code and select 'Reopen in Container'\"\n2. Alternative: `devcontainer up --workspace-folder .`\n3. CLI helper: Run `.devcontainer\u002Finstall.sh self-install` to add the `devc` command to PATH\n",{"data":33,"body":34},{"name":4,"description":6},{"type":35,"children":36},"root",[37,46,52,59,79,85,103,109,241,247,254,259,338,343,349,463,469,474,512,525,535,540,546,559,584,589,595,600,722,726,732,738,776,784,796,821,829,842,913,924,1108,1125,1134,1137,1143,1163,1173,1180,1190,1233,1243,1347,1356,1418,1421,1427,1440,1448,1480,1487,1497,1540,1550,1619,1635,1644,1649,1658,1661,1667,1680,1687,1758,1765,1775,1798,1808,1907,1914,1923,1926,1932,1937,1962,1965,1971,1983,2039,2044,2069,2072,2078,2090,2155,2158,2164,2169,2229,2232,2238,2243,2282],{"type":38,"tag":39,"props":40,"children":42},"element","h1",{"id":41},"devcontainer-setup-skill",[43],{"type":44,"value":45},"text","Devcontainer Setup Skill",{"type":38,"tag":47,"props":48,"children":49},"p",{},[50],{"type":44,"value":51},"Creates a pre-configured devcontainer with Claude Code and language-specific tooling.",{"type":38,"tag":53,"props":54,"children":56},"h2",{"id":55},"when-to-use",[57],{"type":44,"value":58},"When to Use",{"type":38,"tag":60,"props":61,"children":62},"ul",{},[63,69,74],{"type":38,"tag":64,"props":65,"children":66},"li",{},[67],{"type":44,"value":68},"User asks to \"set up a devcontainer\" or \"add devcontainer support\"",{"type":38,"tag":64,"props":70,"children":71},{},[72],{"type":44,"value":73},"User wants a sandboxed Claude Code development environment",{"type":38,"tag":64,"props":75,"children":76},{},[77],{"type":44,"value":78},"User needs isolated development environments with persistent configuration",{"type":38,"tag":53,"props":80,"children":82},{"id":81},"when-not-to-use",[83],{"type":44,"value":84},"When NOT to Use",{"type":38,"tag":60,"props":86,"children":87},{},[88,93,98],{"type":38,"tag":64,"props":89,"children":90},{},[91],{"type":44,"value":92},"User already has a devcontainer configuration and just needs modifications",{"type":38,"tag":64,"props":94,"children":95},{},[96],{"type":44,"value":97},"User is asking about general Docker or container questions",{"type":38,"tag":64,"props":99,"children":100},{},[101],{"type":44,"value":102},"User wants to deploy production containers (this is for development only)",{"type":38,"tag":53,"props":104,"children":106},{"id":105},"workflow",[107],{"type":44,"value":108},"Workflow",{"type":38,"tag":110,"props":111,"children":116},"pre",{"className":112,"code":113,"language":114,"meta":115,"style":115},"language-mermaid shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","flowchart TB\n    start([User requests devcontainer])\n    recon[1. Project Reconnaissance]\n    detect[2. Detect Languages]\n    generate[3. Generate Configuration]\n    write[4. Write files to .devcontainer\u002F]\n    done([Done])\n\n    start --> recon\n    recon --> detect\n    detect --> generate\n    generate --> write\n    write --> done\n","mermaid","",[117],{"type":38,"tag":118,"props":119,"children":120},"code",{"__ignoreMap":115},[121,132,141,150,159,168,177,186,196,205,214,223,232],{"type":38,"tag":122,"props":123,"children":126},"span",{"class":124,"line":125},"line",1,[127],{"type":38,"tag":122,"props":128,"children":129},{},[130],{"type":44,"value":131},"flowchart TB\n",{"type":38,"tag":122,"props":133,"children":135},{"class":124,"line":134},2,[136],{"type":38,"tag":122,"props":137,"children":138},{},[139],{"type":44,"value":140},"    start([User requests devcontainer])\n",{"type":38,"tag":122,"props":142,"children":144},{"class":124,"line":143},3,[145],{"type":38,"tag":122,"props":146,"children":147},{},[148],{"type":44,"value":149},"    recon[1. Project Reconnaissance]\n",{"type":38,"tag":122,"props":151,"children":153},{"class":124,"line":152},4,[154],{"type":38,"tag":122,"props":155,"children":156},{},[157],{"type":44,"value":158},"    detect[2. Detect Languages]\n",{"type":38,"tag":122,"props":160,"children":162},{"class":124,"line":161},5,[163],{"type":38,"tag":122,"props":164,"children":165},{},[166],{"type":44,"value":167},"    generate[3. Generate Configuration]\n",{"type":38,"tag":122,"props":169,"children":171},{"class":124,"line":170},6,[172],{"type":38,"tag":122,"props":173,"children":174},{},[175],{"type":44,"value":176},"    write[4. Write files to .devcontainer\u002F]\n",{"type":38,"tag":122,"props":178,"children":180},{"class":124,"line":179},7,[181],{"type":38,"tag":122,"props":182,"children":183},{},[184],{"type":44,"value":185},"    done([Done])\n",{"type":38,"tag":122,"props":187,"children":189},{"class":124,"line":188},8,[190],{"type":38,"tag":122,"props":191,"children":193},{"emptyLinePlaceholder":192},true,[194],{"type":44,"value":195},"\n",{"type":38,"tag":122,"props":197,"children":199},{"class":124,"line":198},9,[200],{"type":38,"tag":122,"props":201,"children":202},{},[203],{"type":44,"value":204},"    start --> recon\n",{"type":38,"tag":122,"props":206,"children":208},{"class":124,"line":207},10,[209],{"type":38,"tag":122,"props":210,"children":211},{},[212],{"type":44,"value":213},"    recon --> detect\n",{"type":38,"tag":122,"props":215,"children":217},{"class":124,"line":216},11,[218],{"type":38,"tag":122,"props":219,"children":220},{},[221],{"type":44,"value":222},"    detect --> generate\n",{"type":38,"tag":122,"props":224,"children":226},{"class":124,"line":225},12,[227],{"type":38,"tag":122,"props":228,"children":229},{},[230],{"type":44,"value":231},"    generate --> write\n",{"type":38,"tag":122,"props":233,"children":235},{"class":124,"line":234},13,[236],{"type":38,"tag":122,"props":237,"children":238},{},[239],{"type":44,"value":240},"    write --> done\n",{"type":38,"tag":53,"props":242,"children":244},{"id":243},"phase-1-project-reconnaissance",[245],{"type":44,"value":246},"Phase 1: Project Reconnaissance",{"type":38,"tag":248,"props":249,"children":251},"h3",{"id":250},"infer-project-name",[252],{"type":44,"value":253},"Infer Project Name",{"type":38,"tag":47,"props":255,"children":256},{},[257],{"type":44,"value":258},"Check in order (use first match):",{"type":38,"tag":260,"props":261,"children":262},"ol",{},[263,282,298,314,333],{"type":38,"tag":64,"props":264,"children":265},{},[266,272,274,280],{"type":38,"tag":118,"props":267,"children":269},{"className":268},[],[270],{"type":44,"value":271},"package.json",{"type":44,"value":273}," → ",{"type":38,"tag":118,"props":275,"children":277},{"className":276},[],[278],{"type":44,"value":279},"name",{"type":44,"value":281}," field",{"type":38,"tag":64,"props":283,"children":284},{},[285,291,292],{"type":38,"tag":118,"props":286,"children":288},{"className":287},[],[289],{"type":44,"value":290},"pyproject.toml",{"type":44,"value":273},{"type":38,"tag":118,"props":293,"children":295},{"className":294},[],[296],{"type":44,"value":297},"project.name",{"type":38,"tag":64,"props":299,"children":300},{},[301,307,308],{"type":38,"tag":118,"props":302,"children":304},{"className":303},[],[305],{"type":44,"value":306},"Cargo.toml",{"type":44,"value":273},{"type":38,"tag":118,"props":309,"children":311},{"className":310},[],[312],{"type":44,"value":313},"package.name",{"type":38,"tag":64,"props":315,"children":316},{},[317,323,325,331],{"type":38,"tag":118,"props":318,"children":320},{"className":319},[],[321],{"type":44,"value":322},"go.mod",{"type":44,"value":324}," → module path (last segment after ",{"type":38,"tag":118,"props":326,"children":328},{"className":327},[],[329],{"type":44,"value":330},"\u002F",{"type":44,"value":332},")",{"type":38,"tag":64,"props":334,"children":335},{},[336],{"type":44,"value":337},"Directory name as fallback",{"type":38,"tag":47,"props":339,"children":340},{},[341],{"type":44,"value":342},"Convert to slug: lowercase, replace spaces\u002Funderscores with hyphens.",{"type":38,"tag":248,"props":344,"children":346},{"id":345},"detect-language-stack",[347],{"type":44,"value":348},"Detect Language Stack",{"type":38,"tag":350,"props":351,"children":352},"table",{},[353,372],{"type":38,"tag":354,"props":355,"children":356},"thead",{},[357],{"type":38,"tag":358,"props":359,"children":360},"tr",{},[361,367],{"type":38,"tag":362,"props":363,"children":364},"th",{},[365],{"type":44,"value":366},"Language",{"type":38,"tag":362,"props":368,"children":369},{},[370],{"type":44,"value":371},"Detection Files",{"type":38,"tag":373,"props":374,"children":375},"tbody",{},[376,401,424,440],{"type":38,"tag":358,"props":377,"children":378},{},[379,385],{"type":38,"tag":380,"props":381,"children":382},"td",{},[383],{"type":44,"value":384},"Python",{"type":38,"tag":380,"props":386,"children":387},{},[388,393,395],{"type":38,"tag":118,"props":389,"children":391},{"className":390},[],[392],{"type":44,"value":290},{"type":44,"value":394},", ",{"type":38,"tag":118,"props":396,"children":398},{"className":397},[],[399],{"type":44,"value":400},"*.py",{"type":38,"tag":358,"props":402,"children":403},{},[404,409],{"type":38,"tag":380,"props":405,"children":406},{},[407],{"type":44,"value":408},"Node\u002FTypeScript",{"type":38,"tag":380,"props":410,"children":411},{},[412,417,418],{"type":38,"tag":118,"props":413,"children":415},{"className":414},[],[416],{"type":44,"value":271},{"type":44,"value":394},{"type":38,"tag":118,"props":419,"children":421},{"className":420},[],[422],{"type":44,"value":423},"tsconfig.json",{"type":38,"tag":358,"props":425,"children":426},{},[427,432],{"type":38,"tag":380,"props":428,"children":429},{},[430],{"type":44,"value":431},"Rust",{"type":38,"tag":380,"props":433,"children":434},{},[435],{"type":38,"tag":118,"props":436,"children":438},{"className":437},[],[439],{"type":44,"value":306},{"type":38,"tag":358,"props":441,"children":442},{},[443,448],{"type":38,"tag":380,"props":444,"children":445},{},[446],{"type":44,"value":447},"Go",{"type":38,"tag":380,"props":449,"children":450},{},[451,456,457],{"type":38,"tag":118,"props":452,"children":454},{"className":453},[],[455],{"type":44,"value":322},{"type":44,"value":394},{"type":38,"tag":118,"props":458,"children":460},{"className":459},[],[461],{"type":44,"value":462},"go.sum",{"type":38,"tag":248,"props":464,"children":466},{"id":465},"multi-language-projects",[467],{"type":44,"value":468},"Multi-Language Projects",{"type":38,"tag":47,"props":470,"children":471},{},[472],{"type":44,"value":473},"If multiple languages are detected, configure all of them in the following priority order:",{"type":38,"tag":260,"props":475,"children":476},{},[477,487,496,504],{"type":38,"tag":64,"props":478,"children":479},{},[480,485],{"type":38,"tag":481,"props":482,"children":483},"strong",{},[484],{"type":44,"value":384},{"type":44,"value":486}," - Primary language, uses Dockerfile for uv + Python installation",{"type":38,"tag":64,"props":488,"children":489},{},[490,494],{"type":38,"tag":481,"props":491,"children":492},{},[493],{"type":44,"value":408},{"type":44,"value":495}," - Uses devcontainer feature",{"type":38,"tag":64,"props":497,"children":498},{},[499,503],{"type":38,"tag":481,"props":500,"children":501},{},[502],{"type":44,"value":431},{"type":44,"value":495},{"type":38,"tag":64,"props":505,"children":506},{},[507,511],{"type":38,"tag":481,"props":508,"children":509},{},[510],{"type":44,"value":447},{"type":44,"value":495},{"type":38,"tag":47,"props":513,"children":514},{},[515,517,523],{"type":44,"value":516},"For multi-language ",{"type":38,"tag":118,"props":518,"children":520},{"className":519},[],[521],{"type":44,"value":522},"postCreateCommand",{"type":44,"value":524},", chain all setup commands:",{"type":38,"tag":110,"props":526,"children":530},{"className":527,"code":529,"language":44},[528],"language-text","uv run \u002Fopt\u002Fpost_install.py && uv sync && npm ci\n",[531],{"type":38,"tag":118,"props":532,"children":533},{"__ignoreMap":115},[534],{"type":44,"value":529},{"type":38,"tag":47,"props":536,"children":537},{},[538],{"type":44,"value":539},"Extensions and settings from all detected languages should be merged into the configuration.",{"type":38,"tag":53,"props":541,"children":543},{"id":542},"phase-2-generate-configuration",[544],{"type":44,"value":545},"Phase 2: Generate Configuration",{"type":38,"tag":47,"props":547,"children":548},{},[549,551,557],{"type":44,"value":550},"Start with base templates from ",{"type":38,"tag":118,"props":552,"children":554},{"className":553},[],[555],{"type":44,"value":556},"resources\u002F",{"type":44,"value":558}," directory. Substitute:",{"type":38,"tag":60,"props":560,"children":561},{},[562,573],{"type":38,"tag":64,"props":563,"children":564},{},[565,571],{"type":38,"tag":118,"props":566,"children":568},{"className":567},[],[569],{"type":44,"value":570},"{{PROJECT_NAME}}",{"type":44,"value":572}," → Human-readable name (e.g., \"My Project\")",{"type":38,"tag":64,"props":574,"children":575},{},[576,582],{"type":38,"tag":118,"props":577,"children":579},{"className":578},[],[580],{"type":44,"value":581},"{{PROJECT_SLUG}}",{"type":44,"value":583}," → Slug for volumes (e.g., \"my-project\")",{"type":38,"tag":47,"props":585,"children":586},{},[587],{"type":44,"value":588},"Then apply language-specific modifications below.",{"type":38,"tag":53,"props":590,"children":592},{"id":591},"base-template-features",[593],{"type":44,"value":594},"Base Template Features",{"type":38,"tag":47,"props":596,"children":597},{},[598],{"type":44,"value":599},"The base template includes:",{"type":38,"tag":60,"props":601,"children":602},{},[603,613,623,633,643,653,663,681,712],{"type":38,"tag":64,"props":604,"children":605},{},[606,611],{"type":38,"tag":481,"props":607,"children":608},{},[609],{"type":44,"value":610},"Claude Code",{"type":44,"value":612}," with marketplace plugins (anthropics\u002Fskills, trailofbits\u002Fskills, trailofbits\u002Fskills-curated)",{"type":38,"tag":64,"props":614,"children":615},{},[616,621],{"type":38,"tag":481,"props":617,"children":618},{},[619],{"type":44,"value":620},"Sandboxing",{"type":44,"value":622}," via bubblewrap and socat",{"type":38,"tag":64,"props":624,"children":625},{},[626,631],{"type":38,"tag":481,"props":627,"children":628},{},[629],{"type":44,"value":630},"Python 3.13",{"type":44,"value":632}," via uv (fast binary download)",{"type":38,"tag":64,"props":634,"children":635},{},[636,641],{"type":38,"tag":481,"props":637,"children":638},{},[639],{"type":44,"value":640},"Node 22",{"type":44,"value":642}," via fnm (Fast Node Manager)",{"type":38,"tag":64,"props":644,"children":645},{},[646,651],{"type":38,"tag":481,"props":647,"children":648},{},[649],{"type":44,"value":650},"ast-grep",{"type":44,"value":652}," for AST-based code search",{"type":38,"tag":64,"props":654,"children":655},{},[656,661],{"type":38,"tag":481,"props":657,"children":658},{},[659],{"type":44,"value":660},"Network isolation tools",{"type":44,"value":662}," (iptables, ipset) with NET_ADMIN capability",{"type":38,"tag":64,"props":664,"children":665},{},[666,671,673,679],{"type":38,"tag":481,"props":667,"children":668},{},[669],{"type":44,"value":670},"Security mounts",{"type":44,"value":672},": ",{"type":38,"tag":118,"props":674,"children":676},{"className":675},[],[677],{"type":44,"value":678},".devcontainer\u002F",{"type":44,"value":680}," mounted read-only to prevent container escape",{"type":38,"tag":64,"props":682,"children":683},{},[684,689,690,696,698,704,706],{"type":38,"tag":481,"props":685,"children":686},{},[687],{"type":44,"value":688},"Token forwarding",{"type":44,"value":672},{"type":38,"tag":118,"props":691,"children":693},{"className":692},[],[694],{"type":44,"value":695},"CLAUDE_CODE_OAUTH_TOKEN",{"type":44,"value":697}," and ",{"type":38,"tag":118,"props":699,"children":701},{"className":700},[],[702],{"type":44,"value":703},"ANTHROPIC_API_KEY",{"type":44,"value":705}," via ",{"type":38,"tag":118,"props":707,"children":709},{"className":708},[],[710],{"type":44,"value":711},"remoteEnv",{"type":38,"tag":64,"props":713,"children":714},{},[715,720],{"type":38,"tag":481,"props":716,"children":717},{},[718],{"type":44,"value":719},"Modern CLI tools",{"type":44,"value":721},": ripgrep, fd, fzf, tmux, git-delta",{"type":38,"tag":723,"props":724,"children":725},"hr",{},[],{"type":38,"tag":53,"props":727,"children":729},{"id":728},"language-specific-sections",[730],{"type":44,"value":731},"Language-Specific Sections",{"type":38,"tag":248,"props":733,"children":735},{"id":734},"python-projects",[736],{"type":44,"value":737},"Python Projects",{"type":38,"tag":47,"props":739,"children":740},{},[741,746,748,753,754,760,761,767,769,774],{"type":38,"tag":481,"props":742,"children":743},{},[744],{"type":44,"value":745},"Detection:",{"type":44,"value":747}," ",{"type":38,"tag":118,"props":749,"children":751},{"className":750},[],[752],{"type":44,"value":290},{"type":44,"value":394},{"type":38,"tag":118,"props":755,"children":757},{"className":756},[],[758],{"type":44,"value":759},"requirements.txt",{"type":44,"value":394},{"type":38,"tag":118,"props":762,"children":764},{"className":763},[],[765],{"type":44,"value":766},"setup.py",{"type":44,"value":768},", or ",{"type":38,"tag":118,"props":770,"children":772},{"className":771},[],[773],{"type":44,"value":400},{"type":44,"value":775}," files",{"type":38,"tag":47,"props":777,"children":778},{},[779],{"type":38,"tag":481,"props":780,"children":781},{},[782],{"type":44,"value":783},"Dockerfile additions:",{"type":38,"tag":47,"props":785,"children":786},{},[787,789,794],{"type":44,"value":788},"The base Dockerfile already includes Python 3.13 via uv. If a different version is required (detected from ",{"type":38,"tag":118,"props":790,"children":792},{"className":791},[],[793],{"type":44,"value":290},{"type":44,"value":795},"), modify the Python installation:",{"type":38,"tag":110,"props":797,"children":801},{"className":798,"code":799,"language":800,"meta":115,"style":115},"language-dockerfile shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Install Python via uv (fast binary download, not source compilation)\nRUN uv python install \u003Cversion> --default\n","dockerfile",[802],{"type":38,"tag":118,"props":803,"children":804},{"__ignoreMap":115},[805,813],{"type":38,"tag":122,"props":806,"children":807},{"class":124,"line":125},[808],{"type":38,"tag":122,"props":809,"children":810},{},[811],{"type":44,"value":812},"# Install Python via uv (fast binary download, not source compilation)\n",{"type":38,"tag":122,"props":814,"children":815},{"class":124,"line":134},[816],{"type":38,"tag":122,"props":817,"children":818},{},[819],{"type":44,"value":820},"RUN uv python install \u003Cversion> --default\n",{"type":38,"tag":47,"props":822,"children":823},{},[824],{"type":38,"tag":481,"props":825,"children":826},{},[827],{"type":44,"value":828},"devcontainer.json extensions:",{"type":38,"tag":47,"props":830,"children":831},{},[832,834,840],{"type":44,"value":833},"Add to ",{"type":38,"tag":118,"props":835,"children":837},{"className":836},[],[838],{"type":44,"value":839},"customizations.vscode.extensions",{"type":44,"value":841},":",{"type":38,"tag":110,"props":843,"children":847},{"className":844,"code":845,"language":846,"meta":115,"style":115},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\"ms-python.python\",\n\"ms-python.vscode-pylance\",\n\"charliermarsh.ruff\"\n","json",[848],{"type":38,"tag":118,"props":849,"children":850},{"__ignoreMap":115},[851,876,896],{"type":38,"tag":122,"props":852,"children":853},{"class":124,"line":125},[854,860,866,870],{"type":38,"tag":122,"props":855,"children":857},{"style":856},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[858],{"type":44,"value":859},"\"",{"type":38,"tag":122,"props":861,"children":863},{"style":862},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[864],{"type":44,"value":865},"ms-python.python",{"type":38,"tag":122,"props":867,"children":868},{"style":856},[869],{"type":44,"value":859},{"type":38,"tag":122,"props":871,"children":873},{"style":872},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[874],{"type":44,"value":875},",\n",{"type":38,"tag":122,"props":877,"children":878},{"class":124,"line":134},[879,883,888,892],{"type":38,"tag":122,"props":880,"children":881},{"style":856},[882],{"type":44,"value":859},{"type":38,"tag":122,"props":884,"children":885},{"style":862},[886],{"type":44,"value":887},"ms-python.vscode-pylance",{"type":38,"tag":122,"props":889,"children":890},{"style":856},[891],{"type":44,"value":859},{"type":38,"tag":122,"props":893,"children":894},{"style":872},[895],{"type":44,"value":875},{"type":38,"tag":122,"props":897,"children":898},{"class":124,"line":143},[899,903,908],{"type":38,"tag":122,"props":900,"children":901},{"style":856},[902],{"type":44,"value":859},{"type":38,"tag":122,"props":904,"children":905},{"style":862},[906],{"type":44,"value":907},"charliermarsh.ruff",{"type":38,"tag":122,"props":909,"children":910},{"style":856},[911],{"type":44,"value":912},"\"\n",{"type":38,"tag":47,"props":914,"children":915},{},[916,917,923],{"type":44,"value":833},{"type":38,"tag":118,"props":918,"children":920},{"className":919},[],[921],{"type":44,"value":922},"customizations.vscode.settings",{"type":44,"value":841},{"type":38,"tag":110,"props":925,"children":927},{"className":844,"code":926,"language":846,"meta":115,"style":115},"\"python.defaultInterpreterPath\": \".venv\u002Fbin\u002Fpython\",\n\"[python]\": {\n  \"editor.defaultFormatter\": \"charliermarsh.ruff\",\n  \"editor.codeActionsOnSave\": {\n    \"source.organizeImports\": \"explicit\"\n  }\n}\n",[928],{"type":38,"tag":118,"props":929,"children":930},{"__ignoreMap":115},[931,968,993,1032,1057,1092,1100],{"type":38,"tag":122,"props":932,"children":933},{"class":124,"line":125},[934,938,943,947,951,955,960,964],{"type":38,"tag":122,"props":935,"children":936},{"style":856},[937],{"type":44,"value":859},{"type":38,"tag":122,"props":939,"children":940},{"style":862},[941],{"type":44,"value":942},"python.defaultInterpreterPath",{"type":38,"tag":122,"props":944,"children":945},{"style":856},[946],{"type":44,"value":859},{"type":38,"tag":122,"props":948,"children":949},{"style":872},[950],{"type":44,"value":672},{"type":38,"tag":122,"props":952,"children":953},{"style":856},[954],{"type":44,"value":859},{"type":38,"tag":122,"props":956,"children":957},{"style":862},[958],{"type":44,"value":959},".venv\u002Fbin\u002Fpython",{"type":38,"tag":122,"props":961,"children":962},{"style":856},[963],{"type":44,"value":859},{"type":38,"tag":122,"props":965,"children":966},{"style":872},[967],{"type":44,"value":875},{"type":38,"tag":122,"props":969,"children":970},{"class":124,"line":134},[971,975,980,984,988],{"type":38,"tag":122,"props":972,"children":973},{"style":856},[974],{"type":44,"value":859},{"type":38,"tag":122,"props":976,"children":977},{"style":862},[978],{"type":44,"value":979},"[python]",{"type":38,"tag":122,"props":981,"children":982},{"style":856},[983],{"type":44,"value":859},{"type":38,"tag":122,"props":985,"children":986},{"style":872},[987],{"type":44,"value":672},{"type":38,"tag":122,"props":989,"children":990},{"style":856},[991],{"type":44,"value":992},"{\n",{"type":38,"tag":122,"props":994,"children":995},{"class":124,"line":143},[996,1001,1007,1011,1015,1020,1024,1028],{"type":38,"tag":122,"props":997,"children":998},{"style":856},[999],{"type":44,"value":1000},"  \"",{"type":38,"tag":122,"props":1002,"children":1004},{"style":1003},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[1005],{"type":44,"value":1006},"editor.defaultFormatter",{"type":38,"tag":122,"props":1008,"children":1009},{"style":856},[1010],{"type":44,"value":859},{"type":38,"tag":122,"props":1012,"children":1013},{"style":856},[1014],{"type":44,"value":841},{"type":38,"tag":122,"props":1016,"children":1017},{"style":856},[1018],{"type":44,"value":1019}," \"",{"type":38,"tag":122,"props":1021,"children":1022},{"style":862},[1023],{"type":44,"value":907},{"type":38,"tag":122,"props":1025,"children":1026},{"style":856},[1027],{"type":44,"value":859},{"type":38,"tag":122,"props":1029,"children":1030},{"style":856},[1031],{"type":44,"value":875},{"type":38,"tag":122,"props":1033,"children":1034},{"class":124,"line":152},[1035,1039,1044,1048,1052],{"type":38,"tag":122,"props":1036,"children":1037},{"style":856},[1038],{"type":44,"value":1000},{"type":38,"tag":122,"props":1040,"children":1041},{"style":1003},[1042],{"type":44,"value":1043},"editor.codeActionsOnSave",{"type":38,"tag":122,"props":1045,"children":1046},{"style":856},[1047],{"type":44,"value":859},{"type":38,"tag":122,"props":1049,"children":1050},{"style":856},[1051],{"type":44,"value":841},{"type":38,"tag":122,"props":1053,"children":1054},{"style":856},[1055],{"type":44,"value":1056}," {\n",{"type":38,"tag":122,"props":1058,"children":1059},{"class":124,"line":161},[1060,1065,1071,1075,1079,1083,1088],{"type":38,"tag":122,"props":1061,"children":1062},{"style":856},[1063],{"type":44,"value":1064},"    \"",{"type":38,"tag":122,"props":1066,"children":1068},{"style":1067},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[1069],{"type":44,"value":1070},"source.organizeImports",{"type":38,"tag":122,"props":1072,"children":1073},{"style":856},[1074],{"type":44,"value":859},{"type":38,"tag":122,"props":1076,"children":1077},{"style":856},[1078],{"type":44,"value":841},{"type":38,"tag":122,"props":1080,"children":1081},{"style":856},[1082],{"type":44,"value":1019},{"type":38,"tag":122,"props":1084,"children":1085},{"style":862},[1086],{"type":44,"value":1087},"explicit",{"type":38,"tag":122,"props":1089,"children":1090},{"style":856},[1091],{"type":44,"value":912},{"type":38,"tag":122,"props":1093,"children":1094},{"class":124,"line":170},[1095],{"type":38,"tag":122,"props":1096,"children":1097},{"style":856},[1098],{"type":44,"value":1099},"  }\n",{"type":38,"tag":122,"props":1101,"children":1102},{"class":124,"line":179},[1103],{"type":38,"tag":122,"props":1104,"children":1105},{"style":856},[1106],{"type":44,"value":1107},"}\n",{"type":38,"tag":47,"props":1109,"children":1110},{},[1111,1116,1118,1123],{"type":38,"tag":481,"props":1112,"children":1113},{},[1114],{"type":44,"value":1115},"postCreateCommand:",{"type":44,"value":1117},"\nIf ",{"type":38,"tag":118,"props":1119,"children":1121},{"className":1120},[],[1122],{"type":44,"value":290},{"type":44,"value":1124}," exists, chain commands:",{"type":38,"tag":110,"props":1126,"children":1129},{"className":1127,"code":1128,"language":44},[528],"rm -rf .venv && uv sync && uv run \u002Fopt\u002Fpost_install.py\n",[1130],{"type":38,"tag":118,"props":1131,"children":1132},{"__ignoreMap":115},[1133],{"type":44,"value":1128},{"type":38,"tag":723,"props":1135,"children":1136},{},[],{"type":38,"tag":248,"props":1138,"children":1140},{"id":1139},"nodetypescript-projects",[1141],{"type":44,"value":1142},"Node\u002FTypeScript Projects",{"type":38,"tag":47,"props":1144,"children":1145},{},[1146,1150,1151,1156,1158],{"type":38,"tag":481,"props":1147,"children":1148},{},[1149],{"type":44,"value":745},{"type":44,"value":747},{"type":38,"tag":118,"props":1152,"children":1154},{"className":1153},[],[1155],{"type":44,"value":271},{"type":44,"value":1157}," or ",{"type":38,"tag":118,"props":1159,"children":1161},{"className":1160},[],[1162],{"type":44,"value":423},{"type":38,"tag":47,"props":1164,"children":1165},{},[1166,1171],{"type":38,"tag":481,"props":1167,"children":1168},{},[1169],{"type":44,"value":1170},"No Dockerfile additions needed:",{"type":44,"value":1172}," The base template includes Node 22 via fnm (Fast Node Manager).",{"type":38,"tag":47,"props":1174,"children":1175},{},[1176],{"type":38,"tag":481,"props":1177,"children":1178},{},[1179],{"type":44,"value":828},{"type":38,"tag":47,"props":1181,"children":1182},{},[1183,1184,1189],{"type":44,"value":833},{"type":38,"tag":118,"props":1185,"children":1187},{"className":1186},[],[1188],{"type":44,"value":839},{"type":44,"value":841},{"type":38,"tag":110,"props":1191,"children":1193},{"className":844,"code":1192,"language":846,"meta":115,"style":115},"\"dbaeumer.vscode-eslint\",\n\"esbenp.prettier-vscode\"\n",[1194],{"type":38,"tag":118,"props":1195,"children":1196},{"__ignoreMap":115},[1197,1217],{"type":38,"tag":122,"props":1198,"children":1199},{"class":124,"line":125},[1200,1204,1209,1213],{"type":38,"tag":122,"props":1201,"children":1202},{"style":856},[1203],{"type":44,"value":859},{"type":38,"tag":122,"props":1205,"children":1206},{"style":862},[1207],{"type":44,"value":1208},"dbaeumer.vscode-eslint",{"type":38,"tag":122,"props":1210,"children":1211},{"style":856},[1212],{"type":44,"value":859},{"type":38,"tag":122,"props":1214,"children":1215},{"style":872},[1216],{"type":44,"value":875},{"type":38,"tag":122,"props":1218,"children":1219},{"class":124,"line":134},[1220,1224,1229],{"type":38,"tag":122,"props":1221,"children":1222},{"style":856},[1223],{"type":44,"value":859},{"type":38,"tag":122,"props":1225,"children":1226},{"style":862},[1227],{"type":44,"value":1228},"esbenp.prettier-vscode",{"type":38,"tag":122,"props":1230,"children":1231},{"style":856},[1232],{"type":44,"value":912},{"type":38,"tag":47,"props":1234,"children":1235},{},[1236,1237,1242],{"type":44,"value":833},{"type":38,"tag":118,"props":1238,"children":1240},{"className":1239},[],[1241],{"type":44,"value":922},{"type":44,"value":841},{"type":38,"tag":110,"props":1244,"children":1246},{"className":844,"code":1245,"language":846,"meta":115,"style":115},"\"editor.defaultFormatter\": \"esbenp.prettier-vscode\",\n\"editor.codeActionsOnSave\": {\n  \"source.fixAll.eslint\": \"explicit\"\n}\n",[1247],{"type":38,"tag":118,"props":1248,"children":1249},{"__ignoreMap":115},[1250,1285,1308,1340],{"type":38,"tag":122,"props":1251,"children":1252},{"class":124,"line":125},[1253,1257,1261,1265,1269,1273,1277,1281],{"type":38,"tag":122,"props":1254,"children":1255},{"style":856},[1256],{"type":44,"value":859},{"type":38,"tag":122,"props":1258,"children":1259},{"style":862},[1260],{"type":44,"value":1006},{"type":38,"tag":122,"props":1262,"children":1263},{"style":856},[1264],{"type":44,"value":859},{"type":38,"tag":122,"props":1266,"children":1267},{"style":872},[1268],{"type":44,"value":672},{"type":38,"tag":122,"props":1270,"children":1271},{"style":856},[1272],{"type":44,"value":859},{"type":38,"tag":122,"props":1274,"children":1275},{"style":862},[1276],{"type":44,"value":1228},{"type":38,"tag":122,"props":1278,"children":1279},{"style":856},[1280],{"type":44,"value":859},{"type":38,"tag":122,"props":1282,"children":1283},{"style":872},[1284],{"type":44,"value":875},{"type":38,"tag":122,"props":1286,"children":1287},{"class":124,"line":134},[1288,1292,1296,1300,1304],{"type":38,"tag":122,"props":1289,"children":1290},{"style":856},[1291],{"type":44,"value":859},{"type":38,"tag":122,"props":1293,"children":1294},{"style":862},[1295],{"type":44,"value":1043},{"type":38,"tag":122,"props":1297,"children":1298},{"style":856},[1299],{"type":44,"value":859},{"type":38,"tag":122,"props":1301,"children":1302},{"style":872},[1303],{"type":44,"value":672},{"type":38,"tag":122,"props":1305,"children":1306},{"style":856},[1307],{"type":44,"value":992},{"type":38,"tag":122,"props":1309,"children":1310},{"class":124,"line":143},[1311,1315,1320,1324,1328,1332,1336],{"type":38,"tag":122,"props":1312,"children":1313},{"style":856},[1314],{"type":44,"value":1000},{"type":38,"tag":122,"props":1316,"children":1317},{"style":1003},[1318],{"type":44,"value":1319},"source.fixAll.eslint",{"type":38,"tag":122,"props":1321,"children":1322},{"style":856},[1323],{"type":44,"value":859},{"type":38,"tag":122,"props":1325,"children":1326},{"style":856},[1327],{"type":44,"value":841},{"type":38,"tag":122,"props":1329,"children":1330},{"style":856},[1331],{"type":44,"value":1019},{"type":38,"tag":122,"props":1333,"children":1334},{"style":862},[1335],{"type":44,"value":1087},{"type":38,"tag":122,"props":1337,"children":1338},{"style":856},[1339],{"type":44,"value":912},{"type":38,"tag":122,"props":1341,"children":1342},{"class":124,"line":152},[1343],{"type":38,"tag":122,"props":1344,"children":1345},{"style":856},[1346],{"type":44,"value":1107},{"type":38,"tag":47,"props":1348,"children":1349},{},[1350,1354],{"type":38,"tag":481,"props":1351,"children":1352},{},[1353],{"type":44,"value":1115},{"type":44,"value":1355},"\nDetect package manager from lockfile and chain with base command:",{"type":38,"tag":60,"props":1357,"children":1358},{},[1359,1375,1391,1407],{"type":38,"tag":64,"props":1360,"children":1361},{},[1362,1368,1369],{"type":38,"tag":118,"props":1363,"children":1365},{"className":1364},[],[1366],{"type":44,"value":1367},"pnpm-lock.yaml",{"type":44,"value":273},{"type":38,"tag":118,"props":1370,"children":1372},{"className":1371},[],[1373],{"type":44,"value":1374},"uv run \u002Fopt\u002Fpost_install.py && pnpm install --frozen-lockfile",{"type":38,"tag":64,"props":1376,"children":1377},{},[1378,1384,1385],{"type":38,"tag":118,"props":1379,"children":1381},{"className":1380},[],[1382],{"type":44,"value":1383},"yarn.lock",{"type":44,"value":273},{"type":38,"tag":118,"props":1386,"children":1388},{"className":1387},[],[1389],{"type":44,"value":1390},"uv run \u002Fopt\u002Fpost_install.py && yarn install --frozen-lockfile",{"type":38,"tag":64,"props":1392,"children":1393},{},[1394,1400,1401],{"type":38,"tag":118,"props":1395,"children":1397},{"className":1396},[],[1398],{"type":44,"value":1399},"package-lock.json",{"type":44,"value":273},{"type":38,"tag":118,"props":1402,"children":1404},{"className":1403},[],[1405],{"type":44,"value":1406},"uv run \u002Fopt\u002Fpost_install.py && npm ci",{"type":38,"tag":64,"props":1408,"children":1409},{},[1410,1412],{"type":44,"value":1411},"No lockfile → ",{"type":38,"tag":118,"props":1413,"children":1415},{"className":1414},[],[1416],{"type":44,"value":1417},"uv run \u002Fopt\u002Fpost_install.py && npm install",{"type":38,"tag":723,"props":1419,"children":1420},{},[],{"type":38,"tag":248,"props":1422,"children":1424},{"id":1423},"rust-projects",[1425],{"type":44,"value":1426},"Rust Projects",{"type":38,"tag":47,"props":1428,"children":1429},{},[1430,1434,1435],{"type":38,"tag":481,"props":1431,"children":1432},{},[1433],{"type":44,"value":745},{"type":44,"value":747},{"type":38,"tag":118,"props":1436,"children":1438},{"className":1437},[],[1439],{"type":44,"value":306},{"type":38,"tag":47,"props":1441,"children":1442},{},[1443],{"type":38,"tag":481,"props":1444,"children":1445},{},[1446],{"type":44,"value":1447},"Features to add:",{"type":38,"tag":110,"props":1449,"children":1451},{"className":844,"code":1450,"language":846,"meta":115,"style":115},"\"ghcr.io\u002Fdevcontainers\u002Ffeatures\u002Frust:1\": {}\n",[1452],{"type":38,"tag":118,"props":1453,"children":1454},{"__ignoreMap":115},[1455],{"type":38,"tag":122,"props":1456,"children":1457},{"class":124,"line":125},[1458,1462,1467,1471,1475],{"type":38,"tag":122,"props":1459,"children":1460},{"style":856},[1461],{"type":44,"value":859},{"type":38,"tag":122,"props":1463,"children":1464},{"style":862},[1465],{"type":44,"value":1466},"ghcr.io\u002Fdevcontainers\u002Ffeatures\u002Frust:1",{"type":38,"tag":122,"props":1468,"children":1469},{"style":856},[1470],{"type":44,"value":859},{"type":38,"tag":122,"props":1472,"children":1473},{"style":872},[1474],{"type":44,"value":672},{"type":38,"tag":122,"props":1476,"children":1477},{"style":856},[1478],{"type":44,"value":1479},"{}\n",{"type":38,"tag":47,"props":1481,"children":1482},{},[1483],{"type":38,"tag":481,"props":1484,"children":1485},{},[1486],{"type":44,"value":828},{"type":38,"tag":47,"props":1488,"children":1489},{},[1490,1491,1496],{"type":44,"value":833},{"type":38,"tag":118,"props":1492,"children":1494},{"className":1493},[],[1495],{"type":44,"value":839},{"type":44,"value":841},{"type":38,"tag":110,"props":1498,"children":1500},{"className":844,"code":1499,"language":846,"meta":115,"style":115},"\"rust-lang.rust-analyzer\",\n\"tamasfe.even-better-toml\"\n",[1501],{"type":38,"tag":118,"props":1502,"children":1503},{"__ignoreMap":115},[1504,1524],{"type":38,"tag":122,"props":1505,"children":1506},{"class":124,"line":125},[1507,1511,1516,1520],{"type":38,"tag":122,"props":1508,"children":1509},{"style":856},[1510],{"type":44,"value":859},{"type":38,"tag":122,"props":1512,"children":1513},{"style":862},[1514],{"type":44,"value":1515},"rust-lang.rust-analyzer",{"type":38,"tag":122,"props":1517,"children":1518},{"style":856},[1519],{"type":44,"value":859},{"type":38,"tag":122,"props":1521,"children":1522},{"style":872},[1523],{"type":44,"value":875},{"type":38,"tag":122,"props":1525,"children":1526},{"class":124,"line":134},[1527,1531,1536],{"type":38,"tag":122,"props":1528,"children":1529},{"style":856},[1530],{"type":44,"value":859},{"type":38,"tag":122,"props":1532,"children":1533},{"style":862},[1534],{"type":44,"value":1535},"tamasfe.even-better-toml",{"type":38,"tag":122,"props":1537,"children":1538},{"style":856},[1539],{"type":44,"value":912},{"type":38,"tag":47,"props":1541,"children":1542},{},[1543,1544,1549],{"type":44,"value":833},{"type":38,"tag":118,"props":1545,"children":1547},{"className":1546},[],[1548],{"type":44,"value":922},{"type":44,"value":841},{"type":38,"tag":110,"props":1551,"children":1553},{"className":844,"code":1552,"language":846,"meta":115,"style":115},"\"[rust]\": {\n  \"editor.defaultFormatter\": \"rust-lang.rust-analyzer\"\n}\n",[1554],{"type":38,"tag":118,"props":1555,"children":1556},{"__ignoreMap":115},[1557,1581,1612],{"type":38,"tag":122,"props":1558,"children":1559},{"class":124,"line":125},[1560,1564,1569,1573,1577],{"type":38,"tag":122,"props":1561,"children":1562},{"style":856},[1563],{"type":44,"value":859},{"type":38,"tag":122,"props":1565,"children":1566},{"style":862},[1567],{"type":44,"value":1568},"[rust]",{"type":38,"tag":122,"props":1570,"children":1571},{"style":856},[1572],{"type":44,"value":859},{"type":38,"tag":122,"props":1574,"children":1575},{"style":872},[1576],{"type":44,"value":672},{"type":38,"tag":122,"props":1578,"children":1579},{"style":856},[1580],{"type":44,"value":992},{"type":38,"tag":122,"props":1582,"children":1583},{"class":124,"line":134},[1584,1588,1592,1596,1600,1604,1608],{"type":38,"tag":122,"props":1585,"children":1586},{"style":856},[1587],{"type":44,"value":1000},{"type":38,"tag":122,"props":1589,"children":1590},{"style":1003},[1591],{"type":44,"value":1006},{"type":38,"tag":122,"props":1593,"children":1594},{"style":856},[1595],{"type":44,"value":859},{"type":38,"tag":122,"props":1597,"children":1598},{"style":856},[1599],{"type":44,"value":841},{"type":38,"tag":122,"props":1601,"children":1602},{"style":856},[1603],{"type":44,"value":1019},{"type":38,"tag":122,"props":1605,"children":1606},{"style":862},[1607],{"type":44,"value":1515},{"type":38,"tag":122,"props":1609,"children":1610},{"style":856},[1611],{"type":44,"value":912},{"type":38,"tag":122,"props":1613,"children":1614},{"class":124,"line":143},[1615],{"type":38,"tag":122,"props":1616,"children":1617},{"style":856},[1618],{"type":44,"value":1107},{"type":38,"tag":47,"props":1620,"children":1621},{},[1622,1626,1627,1633],{"type":38,"tag":481,"props":1623,"children":1624},{},[1625],{"type":44,"value":1115},{"type":44,"value":1117},{"type":38,"tag":118,"props":1628,"children":1630},{"className":1629},[],[1631],{"type":44,"value":1632},"Cargo.lock",{"type":44,"value":1634}," exists, use locked builds:",{"type":38,"tag":110,"props":1636,"children":1639},{"className":1637,"code":1638,"language":44},[528],"uv run \u002Fopt\u002Fpost_install.py && cargo build --locked\n",[1640],{"type":38,"tag":118,"props":1641,"children":1642},{"__ignoreMap":115},[1643],{"type":44,"value":1638},{"type":38,"tag":47,"props":1645,"children":1646},{},[1647],{"type":44,"value":1648},"If no lockfile, use standard build:",{"type":38,"tag":110,"props":1650,"children":1653},{"className":1651,"code":1652,"language":44},[528],"uv run \u002Fopt\u002Fpost_install.py && cargo build\n",[1654],{"type":38,"tag":118,"props":1655,"children":1656},{"__ignoreMap":115},[1657],{"type":44,"value":1652},{"type":38,"tag":723,"props":1659,"children":1660},{},[],{"type":38,"tag":248,"props":1662,"children":1664},{"id":1663},"go-projects",[1665],{"type":44,"value":1666},"Go Projects",{"type":38,"tag":47,"props":1668,"children":1669},{},[1670,1674,1675],{"type":38,"tag":481,"props":1671,"children":1672},{},[1673],{"type":44,"value":745},{"type":44,"value":747},{"type":38,"tag":118,"props":1676,"children":1678},{"className":1677},[],[1679],{"type":44,"value":322},{"type":38,"tag":47,"props":1681,"children":1682},{},[1683],{"type":38,"tag":481,"props":1684,"children":1685},{},[1686],{"type":44,"value":1447},{"type":38,"tag":110,"props":1688,"children":1690},{"className":844,"code":1689,"language":846,"meta":115,"style":115},"\"ghcr.io\u002Fdevcontainers\u002Ffeatures\u002Fgo:1\": {\n  \"version\": \"latest\"\n}\n",[1691],{"type":38,"tag":118,"props":1692,"children":1693},{"__ignoreMap":115},[1694,1718,1751],{"type":38,"tag":122,"props":1695,"children":1696},{"class":124,"line":125},[1697,1701,1706,1710,1714],{"type":38,"tag":122,"props":1698,"children":1699},{"style":856},[1700],{"type":44,"value":859},{"type":38,"tag":122,"props":1702,"children":1703},{"style":862},[1704],{"type":44,"value":1705},"ghcr.io\u002Fdevcontainers\u002Ffeatures\u002Fgo:1",{"type":38,"tag":122,"props":1707,"children":1708},{"style":856},[1709],{"type":44,"value":859},{"type":38,"tag":122,"props":1711,"children":1712},{"style":872},[1713],{"type":44,"value":672},{"type":38,"tag":122,"props":1715,"children":1716},{"style":856},[1717],{"type":44,"value":992},{"type":38,"tag":122,"props":1719,"children":1720},{"class":124,"line":134},[1721,1725,1730,1734,1738,1742,1747],{"type":38,"tag":122,"props":1722,"children":1723},{"style":856},[1724],{"type":44,"value":1000},{"type":38,"tag":122,"props":1726,"children":1727},{"style":1003},[1728],{"type":44,"value":1729},"version",{"type":38,"tag":122,"props":1731,"children":1732},{"style":856},[1733],{"type":44,"value":859},{"type":38,"tag":122,"props":1735,"children":1736},{"style":856},[1737],{"type":44,"value":841},{"type":38,"tag":122,"props":1739,"children":1740},{"style":856},[1741],{"type":44,"value":1019},{"type":38,"tag":122,"props":1743,"children":1744},{"style":862},[1745],{"type":44,"value":1746},"latest",{"type":38,"tag":122,"props":1748,"children":1749},{"style":856},[1750],{"type":44,"value":912},{"type":38,"tag":122,"props":1752,"children":1753},{"class":124,"line":143},[1754],{"type":38,"tag":122,"props":1755,"children":1756},{"style":856},[1757],{"type":44,"value":1107},{"type":38,"tag":47,"props":1759,"children":1760},{},[1761],{"type":38,"tag":481,"props":1762,"children":1763},{},[1764],{"type":44,"value":828},{"type":38,"tag":47,"props":1766,"children":1767},{},[1768,1769,1774],{"type":44,"value":833},{"type":38,"tag":118,"props":1770,"children":1772},{"className":1771},[],[1773],{"type":44,"value":839},{"type":44,"value":841},{"type":38,"tag":110,"props":1776,"children":1778},{"className":844,"code":1777,"language":846,"meta":115,"style":115},"\"golang.go\"\n",[1779],{"type":38,"tag":118,"props":1780,"children":1781},{"__ignoreMap":115},[1782],{"type":38,"tag":122,"props":1783,"children":1784},{"class":124,"line":125},[1785,1789,1794],{"type":38,"tag":122,"props":1786,"children":1787},{"style":856},[1788],{"type":44,"value":859},{"type":38,"tag":122,"props":1790,"children":1791},{"style":862},[1792],{"type":44,"value":1793},"golang.go",{"type":38,"tag":122,"props":1795,"children":1796},{"style":856},[1797],{"type":44,"value":912},{"type":38,"tag":47,"props":1799,"children":1800},{},[1801,1802,1807],{"type":44,"value":833},{"type":38,"tag":118,"props":1803,"children":1805},{"className":1804},[],[1806],{"type":44,"value":922},{"type":44,"value":841},{"type":38,"tag":110,"props":1809,"children":1811},{"className":844,"code":1810,"language":846,"meta":115,"style":115},"\"[go]\": {\n  \"editor.defaultFormatter\": \"golang.go\"\n},\n\"go.useLanguageServer\": true\n",[1812],{"type":38,"tag":118,"props":1813,"children":1814},{"__ignoreMap":115},[1815,1839,1870,1882],{"type":38,"tag":122,"props":1816,"children":1817},{"class":124,"line":125},[1818,1822,1827,1831,1835],{"type":38,"tag":122,"props":1819,"children":1820},{"style":856},[1821],{"type":44,"value":859},{"type":38,"tag":122,"props":1823,"children":1824},{"style":862},[1825],{"type":44,"value":1826},"[go]",{"type":38,"tag":122,"props":1828,"children":1829},{"style":856},[1830],{"type":44,"value":859},{"type":38,"tag":122,"props":1832,"children":1833},{"style":872},[1834],{"type":44,"value":672},{"type":38,"tag":122,"props":1836,"children":1837},{"style":856},[1838],{"type":44,"value":992},{"type":38,"tag":122,"props":1840,"children":1841},{"class":124,"line":134},[1842,1846,1850,1854,1858,1862,1866],{"type":38,"tag":122,"props":1843,"children":1844},{"style":856},[1845],{"type":44,"value":1000},{"type":38,"tag":122,"props":1847,"children":1848},{"style":1003},[1849],{"type":44,"value":1006},{"type":38,"tag":122,"props":1851,"children":1852},{"style":856},[1853],{"type":44,"value":859},{"type":38,"tag":122,"props":1855,"children":1856},{"style":856},[1857],{"type":44,"value":841},{"type":38,"tag":122,"props":1859,"children":1860},{"style":856},[1861],{"type":44,"value":1019},{"type":38,"tag":122,"props":1863,"children":1864},{"style":862},[1865],{"type":44,"value":1793},{"type":38,"tag":122,"props":1867,"children":1868},{"style":856},[1869],{"type":44,"value":912},{"type":38,"tag":122,"props":1871,"children":1872},{"class":124,"line":143},[1873,1878],{"type":38,"tag":122,"props":1874,"children":1875},{"style":856},[1876],{"type":44,"value":1877},"}",{"type":38,"tag":122,"props":1879,"children":1880},{"style":872},[1881],{"type":44,"value":875},{"type":38,"tag":122,"props":1883,"children":1884},{"class":124,"line":152},[1885,1889,1894,1898,1902],{"type":38,"tag":122,"props":1886,"children":1887},{"style":856},[1888],{"type":44,"value":859},{"type":38,"tag":122,"props":1890,"children":1891},{"style":862},[1892],{"type":44,"value":1893},"go.useLanguageServer",{"type":38,"tag":122,"props":1895,"children":1896},{"style":856},[1897],{"type":44,"value":859},{"type":38,"tag":122,"props":1899,"children":1900},{"style":872},[1901],{"type":44,"value":672},{"type":38,"tag":122,"props":1903,"children":1904},{"style":856},[1905],{"type":44,"value":1906},"true\n",{"type":38,"tag":47,"props":1908,"children":1909},{},[1910],{"type":38,"tag":481,"props":1911,"children":1912},{},[1913],{"type":44,"value":1115},{"type":38,"tag":110,"props":1915,"children":1918},{"className":1916,"code":1917,"language":44},[528],"uv run \u002Fopt\u002Fpost_install.py && go mod download\n",[1919],{"type":38,"tag":118,"props":1920,"children":1921},{"__ignoreMap":115},[1922],{"type":44,"value":1917},{"type":38,"tag":723,"props":1924,"children":1925},{},[],{"type":38,"tag":53,"props":1927,"children":1929},{"id":1928},"reference-material",[1930],{"type":44,"value":1931},"Reference Material",{"type":38,"tag":47,"props":1933,"children":1934},{},[1935],{"type":44,"value":1936},"For additional guidance, see:",{"type":38,"tag":60,"props":1938,"children":1939},{},[1940,1951],{"type":38,"tag":64,"props":1941,"children":1942},{},[1943,1949],{"type":38,"tag":118,"props":1944,"children":1946},{"className":1945},[],[1947],{"type":44,"value":1948},"references\u002Fdockerfile-best-practices.md",{"type":44,"value":1950}," - Layer optimization, multi-stage builds, architecture support",{"type":38,"tag":64,"props":1952,"children":1953},{},[1954,1960],{"type":38,"tag":118,"props":1955,"children":1957},{"className":1956},[],[1958],{"type":44,"value":1959},"references\u002Ffeatures-vs-dockerfile.md",{"type":44,"value":1961}," - When to use devcontainer features vs custom Dockerfile",{"type":38,"tag":723,"props":1963,"children":1964},{},[],{"type":38,"tag":53,"props":1966,"children":1968},{"id":1967},"adding-persistent-volumes",[1969],{"type":44,"value":1970},"Adding Persistent Volumes",{"type":38,"tag":47,"props":1972,"children":1973},{},[1974,1976,1982],{"type":44,"value":1975},"Pattern for new mounts in ",{"type":38,"tag":118,"props":1977,"children":1979},{"className":1978},[],[1980],{"type":44,"value":1981},"devcontainer.json",{"type":44,"value":841},{"type":38,"tag":110,"props":1984,"children":1986},{"className":844,"code":1985,"language":846,"meta":115,"style":115},"\"mounts\": [\n  \"source={{PROJECT_SLUG}}-\u003Cpurpose>-${devcontainerId},target=\u003Ccontainer-path>,type=volume\"\n]\n",[1987],{"type":38,"tag":118,"props":1988,"children":1989},{"__ignoreMap":115},[1990,2015,2031],{"type":38,"tag":122,"props":1991,"children":1992},{"class":124,"line":125},[1993,1997,2002,2006,2010],{"type":38,"tag":122,"props":1994,"children":1995},{"style":856},[1996],{"type":44,"value":859},{"type":38,"tag":122,"props":1998,"children":1999},{"style":862},[2000],{"type":44,"value":2001},"mounts",{"type":38,"tag":122,"props":2003,"children":2004},{"style":856},[2005],{"type":44,"value":859},{"type":38,"tag":122,"props":2007,"children":2008},{"style":872},[2009],{"type":44,"value":672},{"type":38,"tag":122,"props":2011,"children":2012},{"style":856},[2013],{"type":44,"value":2014},"[\n",{"type":38,"tag":122,"props":2016,"children":2017},{"class":124,"line":134},[2018,2022,2027],{"type":38,"tag":122,"props":2019,"children":2020},{"style":856},[2021],{"type":44,"value":1000},{"type":38,"tag":122,"props":2023,"children":2024},{"style":862},[2025],{"type":44,"value":2026},"source={{PROJECT_SLUG}}-\u003Cpurpose>-${devcontainerId},target=\u003Ccontainer-path>,type=volume",{"type":38,"tag":122,"props":2028,"children":2029},{"style":856},[2030],{"type":44,"value":912},{"type":38,"tag":122,"props":2032,"children":2033},{"class":124,"line":143},[2034],{"type":38,"tag":122,"props":2035,"children":2036},{"style":856},[2037],{"type":44,"value":2038},"]\n",{"type":38,"tag":47,"props":2040,"children":2041},{},[2042],{"type":44,"value":2043},"Common additions:",{"type":38,"tag":60,"props":2045,"children":2046},{},[2047,2058],{"type":38,"tag":64,"props":2048,"children":2049},{},[2050,2056],{"type":38,"tag":118,"props":2051,"children":2053},{"className":2052},[],[2054],{"type":44,"value":2055},"source={{PROJECT_SLUG}}-cargo-${devcontainerId},target=\u002Fhome\u002Fvscode\u002F.cargo,type=volume",{"type":44,"value":2057}," (Rust)",{"type":38,"tag":64,"props":2059,"children":2060},{},[2061,2067],{"type":38,"tag":118,"props":2062,"children":2064},{"className":2063},[],[2065],{"type":44,"value":2066},"source={{PROJECT_SLUG}}-go-${devcontainerId},target=\u002Fhome\u002Fvscode\u002Fgo,type=volume",{"type":44,"value":2068}," (Go)",{"type":38,"tag":723,"props":2070,"children":2071},{},[],{"type":38,"tag":53,"props":2073,"children":2075},{"id":2074},"output-files",[2076],{"type":44,"value":2077},"Output Files",{"type":38,"tag":47,"props":2079,"children":2080},{},[2081,2083,2088],{"type":44,"value":2082},"Generate these files in the project's ",{"type":38,"tag":118,"props":2084,"children":2086},{"className":2085},[],[2087],{"type":44,"value":678},{"type":44,"value":2089}," directory:",{"type":38,"tag":260,"props":2091,"children":2092},{},[2093,2104,2114,2125,2136],{"type":38,"tag":64,"props":2094,"children":2095},{},[2096,2102],{"type":38,"tag":118,"props":2097,"children":2099},{"className":2098},[],[2100],{"type":44,"value":2101},"Dockerfile",{"type":44,"value":2103}," - Container build instructions",{"type":38,"tag":64,"props":2105,"children":2106},{},[2107,2112],{"type":38,"tag":118,"props":2108,"children":2110},{"className":2109},[],[2111],{"type":44,"value":1981},{"type":44,"value":2113}," - VS Code\u002Fdevcontainer configuration",{"type":38,"tag":64,"props":2115,"children":2116},{},[2117,2123],{"type":38,"tag":118,"props":2118,"children":2120},{"className":2119},[],[2121],{"type":44,"value":2122},"post_install.py",{"type":44,"value":2124}," - Post-creation setup script",{"type":38,"tag":64,"props":2126,"children":2127},{},[2128,2134],{"type":38,"tag":118,"props":2129,"children":2131},{"className":2130},[],[2132],{"type":44,"value":2133},".zshrc",{"type":44,"value":2135}," - Shell configuration",{"type":38,"tag":64,"props":2137,"children":2138},{},[2139,2145,2147,2153],{"type":38,"tag":118,"props":2140,"children":2142},{"className":2141},[],[2143],{"type":44,"value":2144},"install.sh",{"type":44,"value":2146}," - CLI helper for managing the devcontainer (",{"type":38,"tag":118,"props":2148,"children":2150},{"className":2149},[],[2151],{"type":44,"value":2152},"devc",{"type":44,"value":2154}," command)",{"type":38,"tag":723,"props":2156,"children":2157},{},[],{"type":38,"tag":53,"props":2159,"children":2161},{"id":2160},"validation-checklist",[2162],{"type":44,"value":2163},"Validation Checklist",{"type":38,"tag":47,"props":2165,"children":2166},{},[2167],{"type":44,"value":2168},"Before presenting files to the user, verify:",{"type":38,"tag":260,"props":2170,"children":2171},{},[2172,2184,2195,2207,2212],{"type":38,"tag":64,"props":2173,"children":2174},{},[2175,2177,2182],{"type":44,"value":2176},"All ",{"type":38,"tag":118,"props":2178,"children":2180},{"className":2179},[],[2181],{"type":44,"value":570},{"type":44,"value":2183}," placeholders are replaced with the human-readable name",{"type":38,"tag":64,"props":2185,"children":2186},{},[2187,2188,2193],{"type":44,"value":2176},{"type":38,"tag":118,"props":2189,"children":2191},{"className":2190},[],[2192],{"type":44,"value":581},{"type":44,"value":2194}," placeholders are replaced with the slugified name",{"type":38,"tag":64,"props":2196,"children":2197},{},[2198,2200,2205],{"type":44,"value":2199},"JSON syntax is valid in ",{"type":38,"tag":118,"props":2201,"children":2203},{"className":2202},[],[2204],{"type":44,"value":1981},{"type":44,"value":2206}," (no trailing commas, proper nesting)",{"type":38,"tag":64,"props":2208,"children":2209},{},[2210],{"type":44,"value":2211},"Language-specific extensions are added for all detected languages",{"type":38,"tag":64,"props":2213,"children":2214},{},[2215,2220,2222,2228],{"type":38,"tag":118,"props":2216,"children":2218},{"className":2217},[],[2219],{"type":44,"value":522},{"type":44,"value":2221}," includes all required setup commands (chained with ",{"type":38,"tag":118,"props":2223,"children":2225},{"className":2224},[],[2226],{"type":44,"value":2227},"&&",{"type":44,"value":332},{"type":38,"tag":723,"props":2230,"children":2231},{},[],{"type":38,"tag":53,"props":2233,"children":2235},{"id":2234},"user-instructions",[2236],{"type":44,"value":2237},"User Instructions",{"type":38,"tag":47,"props":2239,"children":2240},{},[2241],{"type":44,"value":2242},"After generating, inform the user:",{"type":38,"tag":260,"props":2244,"children":2245},{},[2246,2251,2262],{"type":38,"tag":64,"props":2247,"children":2248},{},[2249],{"type":44,"value":2250},"How to start: \"Open in VS Code and select 'Reopen in Container'\"",{"type":38,"tag":64,"props":2252,"children":2253},{},[2254,2256],{"type":44,"value":2255},"Alternative: ",{"type":38,"tag":118,"props":2257,"children":2259},{"className":2258},[],[2260],{"type":44,"value":2261},"devcontainer up --workspace-folder .",{"type":38,"tag":64,"props":2263,"children":2264},{},[2265,2267,2273,2275,2280],{"type":44,"value":2266},"CLI helper: Run ",{"type":38,"tag":118,"props":2268,"children":2270},{"className":2269},[],[2271],{"type":44,"value":2272},".devcontainer\u002Finstall.sh self-install",{"type":44,"value":2274}," to add the ",{"type":38,"tag":118,"props":2276,"children":2278},{"className":2277},[],[2279],{"type":44,"value":2152},{"type":44,"value":2281}," command to PATH",{"type":38,"tag":2283,"props":2284,"children":2285},"style",{},[2286],{"type":44,"value":2287},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2289,"total":2446},[2290,2309,2319,2339,2354,2367,2378,2388,2401,2412,2424,2435],{"slug":2291,"name":2291,"fn":2292,"description":2293,"org":2294,"tags":2295,"stars":20,"repoUrl":21,"updatedAt":2308},"address-sanitizer","detect memory errors during fuzzing","AddressSanitizer detects memory errors during fuzzing. Use when fuzzing C\u002FC++ code to find buffer overflows and use-after-free bugs.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2296,2299,2302,2305],{"name":2297,"slug":2298,"type":16},"C#","c",{"name":2300,"slug":2301,"type":16},"Debugging","debugging",{"name":2303,"slug":2304,"type":16},"Security","security",{"name":2306,"slug":2307,"type":16},"Testing","testing","2026-07-17T06:05:14.925095",{"slug":2310,"name":2310,"fn":2311,"description":2312,"org":2313,"tags":2314,"stars":20,"repoUrl":21,"updatedAt":2318},"aflpp","perform multi-core fuzzing of C\u002FC++ projects","AFL++ is a fork of AFL with better fuzzing performance and advanced features. Use for multi-core fuzzing of C\u002FC++ projects.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2315,2316,2317],{"name":2297,"slug":2298,"type":16},{"name":2303,"slug":2304,"type":16},{"name":2306,"slug":2307,"type":16},"2026-07-17T06:05:12.433192",{"slug":2320,"name":2320,"fn":2321,"description":2322,"org":2323,"tags":2324,"stars":20,"repoUrl":21,"updatedAt":2338},"agentic-actions-auditor","audit GitHub Actions for security vulnerabilities","Audits GitHub Actions workflows for security vulnerabilities in AI agent integrations including Claude Code Action, Gemini CLI, OpenAI Codex, and GitHub AI Inference. Detects attack vectors where attacker-controlled input reaches AI agents running in CI\u002FCD pipelines, including env var intermediary patterns, direct expression injection, dangerous sandbox configurations, and wildcard user allowlists. Use when reviewing workflow files that invoke AI coding agents, auditing CI\u002FCD pipeline security for prompt injection risks, or evaluating agentic action configurations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2325,2328,2331,2334,2337],{"name":2326,"slug":2327,"type":16},"Agents","agents",{"name":2329,"slug":2330,"type":16},"CI\u002FCD","ci-cd",{"name":2332,"slug":2333,"type":16},"Code Analysis","code-analysis",{"name":2335,"slug":2336,"type":16},"GitHub Actions","github-actions",{"name":2303,"slug":2304,"type":16},"2026-07-18T05:47:48.564744",{"slug":2340,"name":2340,"fn":2341,"description":2342,"org":2343,"tags":2344,"stars":20,"repoUrl":21,"updatedAt":2353},"algorand-vulnerability-scanner","scan Algorand smart contracts for vulnerabilities","Scans Algorand smart contracts for 11 common vulnerabilities including rekeying attacks, unchecked transaction fees, missing field validations, and access control issues. Use when auditing Algorand projects (TEAL\u002FPyTeal).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2345,2348,2349,2350],{"name":2346,"slug":2347,"type":16},"Audit","audit",{"name":2332,"slug":2333,"type":16},{"name":2303,"slug":2304,"type":16},{"name":2351,"slug":2352,"type":16},"Smart Contracts","smart-contracts","2026-07-18T05:47:43.989063",{"slug":2355,"name":2355,"fn":2356,"description":2357,"org":2358,"tags":2359,"stars":20,"repoUrl":21,"updatedAt":2366},"ask-questions-if-underspecified","clarify requirements before implementation","Clarify requirements before implementing. Use when serious doubts arise.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2360,2363],{"name":2361,"slug":2362,"type":16},"Engineering","engineering",{"name":2364,"slug":2365,"type":16},"Productivity","productivity","2026-07-17T06:05:33.543262",{"slug":2368,"name":2368,"fn":2369,"description":2370,"org":2371,"tags":2372,"stars":20,"repoUrl":21,"updatedAt":2377},"atheris","fuzz Python code with Atheris","Atheris is a coverage-guided Python fuzzer based on libFuzzer. Use for fuzzing pure Python code and Python C extensions.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2373,2375,2376],{"name":384,"slug":2374,"type":16},"python",{"name":2303,"slug":2304,"type":16},{"name":2306,"slug":2307,"type":16},"2026-07-17T06:05:14.575191",{"slug":2379,"name":2379,"fn":2380,"description":2381,"org":2382,"tags":2383,"stars":20,"repoUrl":21,"updatedAt":2387},"audit-augmentation","augment code graphs with audit findings","Augments Trailmark code graphs with external audit findings from SARIF static analysis results, weAudit annotation files, and version-gated Trailmark 0.4.x binary-analysis graph exports. Maps findings to graph nodes by file and line overlap, creates severity-based subgraphs, and enables cross-referencing findings with pre-analysis data (blast radius, taint, etc.). Use when projecting SARIF results onto a code graph, overlaying weAudit annotations, importing binary graph findings, cross-referencing Semgrep, CodeQL, or binary-analysis findings with call graph data, or visualizing audit findings in the context of code structure.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2384,2385,2386],{"name":2346,"slug":2347,"type":16},{"name":2332,"slug":2333,"type":16},{"name":2303,"slug":2304,"type":16},"2026-08-01T05:44:54.920542",{"slug":2389,"name":2389,"fn":2390,"description":2391,"org":2392,"tags":2393,"stars":20,"repoUrl":21,"updatedAt":2400},"audit-context-building","build architectural context for code analysis","Enables ultra-granular, line-by-line code analysis to build deep architectural context before vulnerability or bug finding.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2394,2397,2398,2399],{"name":2395,"slug":2396,"type":16},"Architecture","architecture",{"name":2346,"slug":2347,"type":16},{"name":2332,"slug":2333,"type":16},{"name":2361,"slug":2362,"type":16},"2026-07-18T05:47:40.122449",{"slug":2402,"name":2402,"fn":2403,"description":2404,"org":2405,"tags":2406,"stars":20,"repoUrl":21,"updatedAt":2411},"audit-prep-assistant","prepare codebases for security audits","Prepares codebases for security review using Trail of Bits' checklist. Helps set review goals, runs static analysis tools, increases test coverage, removes dead code, ensures accessibility, and generates documentation (flowcharts, user stories, inline comments).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2407,2408,2409,2410],{"name":2346,"slug":2347,"type":16},{"name":2332,"slug":2333,"type":16},{"name":2361,"slug":2362,"type":16},{"name":2303,"slug":2304,"type":16},"2026-07-18T05:47:39.210985",{"slug":2413,"name":2413,"fn":2414,"description":2415,"org":2416,"tags":2417,"stars":20,"repoUrl":21,"updatedAt":2423},"burpsuite-project-parser","parse Burp Suite project files","Searches and explores Burp Suite project files (.burp) from the command line. Use when searching response headers or bodies with regex patterns, extracting security audit findings, dumping proxy history or site map data, or analyzing HTTP traffic captured in a Burp project.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2418,2419,2422],{"name":2346,"slug":2347,"type":16},{"name":2420,"slug":2421,"type":16},"CLI","cli",{"name":2303,"slug":2304,"type":16},"2026-07-17T06:05:33.198077",{"slug":2425,"name":2425,"fn":2426,"description":2427,"org":2428,"tags":2429,"stars":20,"repoUrl":21,"updatedAt":2434},"c-review","audit C and C++ code","Performs comprehensive C\u002FC++ security review for memory corruption, integer overflows, race conditions, and platform-specific vulnerabilities. Use when auditing native C\u002FC++ applications, reviewing daemons or services for memory safety, or hunting integer overflow \u002F use-after-free \u002F race conditions in userspace code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2430,2431,2432,2433],{"name":2346,"slug":2347,"type":16},{"name":2297,"slug":2298,"type":16},{"name":2332,"slug":2333,"type":16},{"name":2303,"slug":2304,"type":16},"2026-07-17T06:05:11.333374",{"slug":2436,"name":2436,"fn":2437,"description":2438,"org":2439,"tags":2440,"stars":20,"repoUrl":21,"updatedAt":2445},"cairo-vulnerability-scanner","scan Cairo and StarkNet contracts for vulnerabilities","Scans Cairo\u002FStarkNet smart contracts for 6 critical vulnerabilities including felt252 arithmetic overflow, L1-L2 messaging issues, address conversion problems, and signature replay. Use when auditing StarkNet projects.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2441,2442,2443,2444],{"name":2346,"slug":2347,"type":16},{"name":2332,"slug":2333,"type":16},{"name":2303,"slug":2304,"type":16},{"name":2351,"slug":2352,"type":16},"2026-07-18T05:47:42.84568",111,{"items":2448,"total":2494},[2449,2456,2462,2470,2477,2482,2488],{"slug":2291,"name":2291,"fn":2292,"description":2293,"org":2450,"tags":2451,"stars":20,"repoUrl":21,"updatedAt":2308},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2452,2453,2454,2455],{"name":2297,"slug":2298,"type":16},{"name":2300,"slug":2301,"type":16},{"name":2303,"slug":2304,"type":16},{"name":2306,"slug":2307,"type":16},{"slug":2310,"name":2310,"fn":2311,"description":2312,"org":2457,"tags":2458,"stars":20,"repoUrl":21,"updatedAt":2318},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2459,2460,2461],{"name":2297,"slug":2298,"type":16},{"name":2303,"slug":2304,"type":16},{"name":2306,"slug":2307,"type":16},{"slug":2320,"name":2320,"fn":2321,"description":2322,"org":2463,"tags":2464,"stars":20,"repoUrl":21,"updatedAt":2338},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2465,2466,2467,2468,2469],{"name":2326,"slug":2327,"type":16},{"name":2329,"slug":2330,"type":16},{"name":2332,"slug":2333,"type":16},{"name":2335,"slug":2336,"type":16},{"name":2303,"slug":2304,"type":16},{"slug":2340,"name":2340,"fn":2341,"description":2342,"org":2471,"tags":2472,"stars":20,"repoUrl":21,"updatedAt":2353},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2473,2474,2475,2476],{"name":2346,"slug":2347,"type":16},{"name":2332,"slug":2333,"type":16},{"name":2303,"slug":2304,"type":16},{"name":2351,"slug":2352,"type":16},{"slug":2355,"name":2355,"fn":2356,"description":2357,"org":2478,"tags":2479,"stars":20,"repoUrl":21,"updatedAt":2366},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2480,2481],{"name":2361,"slug":2362,"type":16},{"name":2364,"slug":2365,"type":16},{"slug":2368,"name":2368,"fn":2369,"description":2370,"org":2483,"tags":2484,"stars":20,"repoUrl":21,"updatedAt":2377},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2485,2486,2487],{"name":384,"slug":2374,"type":16},{"name":2303,"slug":2304,"type":16},{"name":2306,"slug":2307,"type":16},{"slug":2379,"name":2379,"fn":2380,"description":2381,"org":2489,"tags":2490,"stars":20,"repoUrl":21,"updatedAt":2387},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2491,2492,2493],{"name":2346,"slug":2347,"type":16},{"name":2332,"slug":2333,"type":16},{"name":2303,"slug":2304,"type":16},77]