Back to list
ManuelKugelmann

devcontainer-help

by ManuelKugelmann

2🍴 0📅 Dec 2, 2025

SKILL.md


name: devcontainer-help description: Help users customize devcontainers by adding packages, extensions, features, and settings. Use when users ask about adding tools, languages, or configuring their development environment. Focus on practical devcontainer customization, not BitBot internals.

DevContainer Customization Helper

This skill helps users customize their devcontainer by providing examples and guidance for common tasks.

Common Customization Patterns

Adding Packages to Dockerfile

RUN apt-get update && apt-get install -y \
    package-name \
    && apt-get clean && rm -rf /var/lib/apt/lists/*

Adding VS Code Extensions

{
  "customizations": {
    "vscode": {
      "extensions": ["publisher.extension-name"]
    }
  }
}

Adding DevContainer Features

{
  "features": {
    "ghcr.io/devcontainers/features/feature-name:version": {}
  }
}

Setting Environment Variables

{
  "remoteEnv": {
    "VAR_NAME": "value"
  }
}

Language-Specific Examples

Python Development

  • Feature: ghcr.io/devcontainers/features/python:1
  • Extensions: ms-python.python, ms-python.vscode-pylance
  • Tools: python3-pip, python3-venv

Node.js Development

  • Feature: ghcr.io/devcontainers/features/node:1
  • Extensions: dbaeumer.vscode-eslint, esbenp.prettier-vscode
  • Tools: npm, yarn, pnpm

Database Tools

  • PostgreSQL: ghcr.io/devcontainers/features/postgres:1
  • Extensions: ms-ossdata.vscode-postgresql

Docker-in-Docker

  • Feature: ghcr.io/devcontainers/features/docker-in-docker:2

When to Use This Skill

  • User asks "how do I add Python to my devcontainer?"
  • User wants to install a specific tool or language
  • User needs help with VS Code extensions
  • User wants to set up databases or services
  • User asks about devcontainer configuration

What NOT to Explain

  • BitBot's internal template merging system
  • How BitBot copies files during init
  • Container orchestration internals
  • SPARC methodology or BitBot development

Focus

Help users accomplish their customization goals with practical, working examples that follow devcontainer standards.

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon