Auto-deep-researcher-24x7 experiment-status
Check status of running autonomous experiment loops
install
source · Clone the upstream repo
git clone https://github.com/Xiangyue-Zhang/auto-deep-researcher-24x7
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/Xiangyue-Zhang/auto-deep-researcher-24x7 "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/experiment-status" ~/.claude/skills/xiangyue-zhang-auto-deep-researcher-24x7-experiment-status && rm -rf "$T"
manifest:
skills/experiment-status/SKILL.mdsource content
/experiment-status
Check the current status of your autonomous experiment agent.
Usage
/experiment-status /experiment-status --project /path/to/project
Behavior
- Read
— show the research goalPROJECT_BRIEF.md - Read
— show key results and recent decisionsMEMORY_LOG.md - Read
— show how many cycles completed.cycle_counter - Check for running training processes via the configured execution backend
- If training is running, tail the log file for latest output
- Show GPU utilization through the configured backend
- Check if
exists (pending directive)HUMAN_DIRECTIVE.md
If
execution.mode=ssh, controller state still comes from the local project
directory, but PID checks, training logs, and GPU status come from the
configured remote host.
Output Format
# Experiment Status — my-project ## Goal Train ViT-B/16 on ImageNet to 78%+ accuracy ## Progress - Cycles completed: 4 - Current best: 78.3% (Exp004, ViT-B/16 + cosine + mixup) - Status: TRAINING (PID 12345, GPU 0, running 3.2h) ## Latest Training Log Epoch 45/90 | loss: 2.134 | acc: 77.1% | lr: 1.2e-4 ## Recent Decisions 1. [04-08 14:45] Target reached with mixup, trying stronger augmentation 2. [04-08 06:00] Cosine schedule helped, adding regularization ## Pending Directive None (drop a file at workspace/HUMAN_DIRECTIVE.md to intervene)