Files
magnus919_agent-skills/data-scientist/scripts/Dockerfile
T
Magnus Hedemark b601ba0f13 feat: add subagent supervision, Docker isolation, final SKILL.md wiring
Closes #22

Features:
- references/subagent-experiment-supervision.md: self-healing experiment
  pattern with 10-failure catalog, auto-fix implementations, escalation
  to Telegram, and harness-specific notes
- references/docker-experiment-isolation.md: resource limits, log
  collection, multi-container sweeps, cleanup patterns, Docker Compose
- scripts/Dockerfile: test image for the skill's Docker-based tests
- SKILL.md: CAMPAIGN type in question classifier, Principle #9,
  Infrastructure Awareness section, all new references in Available
  Resources, updated compatibility field

Test results: 22/22 passing (supervision + Docker build)
2026-05-23 17:12:45 -04:00

17 lines
428 B
Docker

# Data Scientist Skill — Test Image
# Build: docker build -t ds-test -f scripts/Dockerfile .
# Use: docker run --rm ds-test bash scripts/test_detect_compute.sh
FROM python:3.12-slim
# Install baseline ML deps (no torch — tests verify graceful degradation)
RUN pip install --quiet --no-cache-dir \
scipy>=1.10 \
numpy>=1.24 \
scikit-learn>=1.4 \
pandas>=2.0 \
psutil
WORKDIR /data-scientist
COPY . .