Agent Skillsdmccreary/ibook-skills › docker-python-lab

docker-python-lab

GitHub

为 MkDocs 教材页面生成基于 Docker 的交互式 Python 实验模块,支持代码运行与隔离环境。

skills/archived/docker-python-lab/SKILL.md dmccreary/ibook-skills

Trigger Scenarios

添加 Python 实验或代码练习 配置 Docker 实验室基础设施

Install

npx skills add dmccreary/ibook-skills --skill docker-python-lab -g -y
More Options

Non-standard path

npx skills add https://github.com/dmccreary/ibook-skills/tree/main/skills/archived/docker-python-lab -g -y

Use without installing

npx skills use dmccreary/ibook-skills@docker-python-lab

指定 Agent (Claude Code)

npx skills add dmccreary/ibook-skills --skill docker-python-lab -a claude-code -g -y

安装 repo 全部 skill

npx skills add dmccreary/ibook-skills --all -g -y

预览 repo 内 skill

npx skills add dmccreary/ibook-skills --list

SKILL.md

Frontmatter
{
    "name": "docker-python-lab",
    "description": "Generates an interactive Docker Python lab block for MkDocs textbook pages, where students write and run real Python code inside an isolated Docker container. Use this skill whenever someone asks to add a Python lab, code runner, interactive Python exercise, or runnable code block to a textbook page that uses Docker (not Skulpt). Also use it when adding multiple labs to a single page, setting up the shared CSS\/JS infrastructure, or creating a timing\/benchmark lab that shows students how long each phase takes. Always invoke this skill instead of writing docker lab HTML by hand."
}

Docker Python Lab Generator

What This Skill Does

Generates interactive Python lab blocks for MkDocs pages in the learning-python textbook (or any MkDocs project following the same pattern). Each lab shows a code editor, Run and Reset buttons, and an output area. Code runs inside a fresh, isolated Docker container via a local HTTP service on port 5001.

This is the Docker counterpart to the Skulpt lab pattern — same look and feel, but students run real Python (not browser-emulated Python) with access to the full standard library and third-party packages.


Prerequisites: Shared Infrastructure

Before generating any lab block, make sure the shared files exist. Check once per session; skip if already in place.

1. Check / create docs/css/docker-lab.css

If the file is missing, copy from the skill's assets:

cp ~/.claude/skills/docker-python-lab/assets/docker-lab.css \
   docs/css/docker-lab.css

2. Check / create docs/js/docker-lab.js

cp ~/.claude/skills/docker-python-lab/assets/docker-lab.js \
   docs/js/docker-lab.js

3. Add to mkdocs.yml (if not already present)

Check extra_css and extra_javascript in mkdocs.yml. If the entries are missing, add them:

extra_css:
  - css/docker-lab.css      # ← add this line

extra_javascript:
  - js/docker-lab.js        # ← add this line

Do not duplicate entries that are already there.

4. Verify the service script exists

The runtime service lives at scripts/run-python-docker.sh. If it is missing from the project, tell the user — the labs won't work without it.


Lab HTML Template

Each lab needs a unique suffix — a short string that distinguishes it from other labs on the same page. Use "1" for the first lab, "2" for the second, and so on. The suffix appears in every element ID so the JS can find the right elements.

Standard lab (text output only)

<div id="docker-lab-SUFFIX">
<div id="docker-editor-SUFFIX">
<textarea id="docker-code-SUFFIX" spellcheck="false">PYTHON_CODE_HERE
</textarea>
<div id="docker-buttons-SUFFIX">
  <button id="docker-run-SUFFIX" onclick="runDocker('SUFFIX')">&#9654; Run</button>
  <button id="docker-reset-SUFFIX" onclick="resetDocker('SUFFIX')">&#8635; Reset</button>
</div>
<pre id="docker-output-SUFFIX" class="docker-output">Output will appear here after you click Run.</pre>
</div>
</div>

Rules:

  • Replace every SUFFIX with the same string (e.g., 1, 2, hello-world).
  • Put the Python code directly inside the <textarea> tag — no extra indentation relative to column 0, because leading spaces become part of the code.
  • The </textarea> closing tag must be on its own line with no trailing spaces before it; any blank line between the code and </textarea> adds an empty line in the editor.
  • Do not add rows="N" — the JS auto-sizes the textarea to fit the code.
  • Do not add id="main" to any element — that conflicts with the p5.js canvas parent convention used elsewhere in this project.

Timed lab (shows phase-by-phase timing breakdown)

Only add this variant when the lesson is specifically about how Docker execution works. It requires suffix "4" by convention and adds a timing table below the buttons.

<div id="docker-lab-4">
<div id="docker-editor-4">
<textarea id="docker-code-4" spellcheck="false">PYTHON_CODE_HERE
</textarea>
<div id="docker-buttons-4">
  <button id="docker-run-4" onclick="runDockerTimed()">&#9654; Run + Time</button>
  <button id="docker-reset-4" onclick="resetDockerTimed()">&#8635; Reset</button>
</div>
</div>
<div id="docker-timing-display" style="display:none; margin-top:12px;">
  <table id="docker-timing-table">
    <thead>
      <tr><th>#</th><th>Phase</th><th style="text-align:right">Time (ms)</th><th>Bar</th></tr>
    </thead>
    <tbody>
      <tr><td>1</td><td>Send to service (network)</td>
          <td id="td-network-send" style="text-align:right">—</td>
          <td><div class="timing-bar" id="bar-network-send"></div></td></tr>
      <tr><td>2</td><td>Container startup</td>
          <td id="td-startup" style="text-align:right">—</td>
          <td><div class="timing-bar" id="bar-startup"></div></td></tr>
      <tr><td>3</td><td>Python execution</td>
          <td id="td-exec" style="text-align:right">—</td>
          <td><div class="timing-bar" id="bar-exec"></div></td></tr>
      <tr><td>4</td><td>Return to browser (network)</td>
          <td id="td-network-return" style="text-align:right">—</td>
          <td><div class="timing-bar" id="bar-network-return"></div></td></tr>
      <tr style="font-weight:bold; border-top: 2px solid #642580;">
          <td colspan="2">Total round-trip</td>
          <td id="td-total" style="text-align:right">—</td>
          <td></td></tr>
    </tbody>
  </table>
  <p id="docker-timing-note" style="font-size:0.85em; color:#666; margin-top:6px;"></p>
</div>
<pre id="docker-output-4" class="docker-output" style="margin-top:10px;">Output will appear here after you click Run + Time.</pre>
</div>

Complete Page Pattern

A page with three labs looks like this:

# Page Title

Intro text explaining what the page covers and that students must run
`bash scripts/run-python-docker.sh` in a separate terminal first.

## Lab 1 — Hello, World!

Brief explanation of what this lab demonstrates.

<div id="docker-lab-1">
<div id="docker-editor-1">
<textarea id="docker-code-1" spellcheck="false">print("Hello, World!")
</textarea>
<div id="docker-buttons-1">
  <button id="docker-run-1" onclick="runDocker('1')">&#9654; Run</button>
  <button id="docker-reset-1" onclick="resetDocker('1')">&#8635; Reset</button>
</div>
<pre id="docker-output-1" class="docker-output">Output will appear here after you click Run.</pre>
</div>
</div>

**Try these experiments:**
- Change the message and run again.

---

## Lab 2 — Variables

<div id="docker-lab-2">
<div id="docker-editor-2">
<textarea id="docker-code-2" spellcheck="false">x = 42
print("The answer is", x)
</textarea>
<div id="docker-buttons-2">
  <button id="docker-run-2" onclick="runDocker('2')">&#9654; Run</button>
  <button id="docker-reset-2" onclick="resetDocker('2')">&#8635; Reset</button>
</div>
<pre id="docker-output-2" class="docker-output">Output will appear here after you click Run.</pre>
</div>
</div>

Choosing Good Lab Code

  • Keep starter code short (5–15 lines) so students can read it at a glance.
  • Every lab should produce visible output — at least one print() call.
  • Avoid input() — there is no stdin in the Docker runner.
  • Avoid file I/O — the container has no persistent filesystem.
  • Avoid import of non-stdlib packages unless python:3.11-alpine includes them (it ships only the stdlib).
  • Match the "See It — Run It — Modify It" rhythm from the Skulpt labs: starter code runs and shows something, then "Try these experiments" gives specific, achievable modifications.

Service Not Running — User-Facing Error

If a student clicks Run before starting the service, the lab shows:

Cannot connect to the Python Docker service. Please open a terminal and run: bash scripts/run-python-docker.sh Then reload this page and try again.

No extra error handling is needed in the page markdown — docker-lab.js handles this automatically.


Multiple Labs per Page — Checklist

When generating labs for a single page:

  • Each lab has a unique suffix1, 2, 3, …
  • Every element ID includes that suffix (docker-lab-1, docker-code-1, etc.)
  • Button onclick passes the matching suffix string: runDocker('2')
  • No two labs share a suffix on the same page
  • The page opens with a "Start the Docker service" instruction block
  • docs/css/docker-lab.css and docs/js/docker-lab.js are in mkdocs.yml

Version History

  • fa205dc Current 2026-08-20 08:59

Same Skill Collection

skills/archived/causal-loop-diagram-generator/SKILL.md
skills/archived/chapter-image-enhancer/SKILL.md
skills/archived/diagram-reports-generator/SKILL.md
skills/archived/init-textbook/SKILL.md
skills/archived/interactive-infographic-overlay/SKILL.md
skills/archived/linkedin-announcement-generator/SKILL.md
skills/archived/linkedin-carousel-generator/SKILL.md
skills/archived/press-release-generator/SKILL.md
skills/archived/pronounce-button/SKILL.md
skills/archived/readme-generator/SKILL.md
skills/archived/register-book-analytics/SKILL.md
skills/archived/story-generator/SKILL.md
skills/archived/text-to-speech/SKILL.md
skills/archived/textbook-to-presentation-generator/SKILL.md
skills/archived/verified-infographic-generator/SKILL.md
skills/book-chapter-generator/SKILL.md
skills/book-installer/SKILL.md
skills/book-media-generator/SKILL.md
skills/book-publisher/SKILL.md
skills/chapter-content-generator/SKILL.md
skills/course-description-analyzer/SKILL.md
skills/docx-to-web-publisher/SKILL.md
skills/faq-generator/SKILL.md
skills/glossary-generator/SKILL.md
skills/learning-graph-generator/SKILL.md
skills/microsim-utils/SKILL.md
skills/quiz-generator/SKILL.md
skills/reference-generator/SKILL.md
skills/archived/marp-generator/SKILL.md
skills/microsim-generator/SKILL.md

Metadata

Files
0
Version
163bb4a
Hash
0e747634
Indexed
2026-08-20 08:59

Accueil - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-30 09:26
浙ICP备14020137号-1 $Carte des visiteurs$