mirror of
https://github.com/magnus919/agent-skills.git
synced 2026-09-12 20:16:29 +03:00
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)
17 lines
428 B
Docker
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 . .
|