Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
If the build fails, log the error to workspace/raw/runtime/build-log.txt and mark runtime mode as unavailable. The pipeline continues with other modes.
Container is running: $RUNTIME inspect --format='{{.State.Running}}' greenfield-${WORKSPACE}-target
Output directory is mounted: $RUNTIME exec greenfield-${WORKSPACE}-target test -d /output
Exploration Patterns
CLI Exploration
# Help and version discoverytimeout 30 $RUNTIMEexec$CONTAINER sh -c 'target --help 2>&1' > cli/help.txt
timeout 30 $RUNTIMEexec$CONTAINER sh -c 'target --version 2>&1' > cli/version.txt
# Subcommand enumeration: parse help output, try each subcommand# Error exploration: invalid flags, missing args, bad input# Config discovery: env vars, config files, default paths
Web Endpoint Discovery
# Probe root and common API paths
curl -s -D- http://127.0.0.1:3000/ > web/root-response.txt
for endpoint in /api /health /swagger.json /openapi.json; do
STATUS=$(curl -s -o /dev/null -w '%{http_code}'"http://127.0.0.1:3000${endpoint}")
echo"${endpoint} -> ${STATUS}" >> web/endpoint-scan.txt
done
File Extraction
# Copy a file from the container$RUNTIMEcp greenfield-${WORKSPACE}-target:/path/to/file \
workspace/raw/runtime/extracted/
# List files inside the container$RUNTIMEexec greenfield-${WORKSPACE}-target find /app -type f -name '*.log' 2>/dev/null
Error Handling
Build failure: Log to build-log.txt, skip runtime mode, continue with static analysis.
Command timeout (exit 124): Capture partial output, note timeout, move to next command.