Files
feynman/prompts/replicate.md
Advait Paliwal 9b1e04f128 Add system resource detection, Docker execution skill, and environment-aware recommendations
- TUI header now shows CPU cores, RAM, GPU, and Docker availability
- System prompt uses resource info to recommend execution environments
- Docker skill for running experiment code in isolated containers
- Renamed docker-sandbox skill to docker (Feynman stays on host, code runs in containers)
- Updated README and website to cite Docker alongside Agent Computer

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-23 18:31:37 -07:00

1.3 KiB

description, args, section, topLevelCli
description args section topLevelCli
Plan or execute a replication workflow for a paper, claim, or benchmark. <paper> Research Workflows true

Design a replication plan for: $@

Workflow

  1. Extract — Use the researcher subagent to pull implementation details from the target paper and any linked code.
  2. Plan — Determine what code, datasets, metrics, and environment are needed. Be explicit about what is verified, what is inferred, and what is still missing.
  3. Environment — Before running anything, ask the user where to execute:
    • Local — run in the current working directory
    • Virtual environment — create an isolated venv/conda env first
    • Docker — run experiment code inside an isolated Docker container
    • Cloud — delegate to a remote Agent Computer machine via /delegate
    • Plan only — produce the replication plan without executing
  4. Execute — If the user chose an execution environment, implement and run the replication steps there. Save notes, scripts, and results to disk in a reproducible layout.
  5. Report — End with a Sources section containing paper and repository URLs.

Do not install packages, run training, or execute experiments without confirming the execution environment first.