一键导入
target-reset
Reset the target to its initial seed state
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Reset the target to its initial seed state
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Stop the running supervisor and all researcher variants
Live tree view of supervisor via cron — agent collects stats every 30s
Dashboard: supervisor status, researcher variants, and metric history
Remove all supervisor leftovers: clones, logs, state, backups
Start the supervisor as a background process
Delete all deployed SAR repos and clean temp files
| name | target-reset |
| description | Reset the target to its initial seed state |
| user_invocable | true |
Reset the target repo to the seed git tag (the original initial commit, before any research changes).
Read .env from the workspace root for RAG_TARGET_REPO.
cd <RAG_TARGET_REPO> && git reset --hard seed && git tag -f baseline seed && rm -rf /tmp/rag-index-cache && rm -f /tmp/rag-eval-report.json
This resets all code to the seed, resets the baseline cursor to match, cleans USearch index cache, and removes stale eval reports.
seed — IMMUTABLE. Points to the original initial commit. Never moves. This is the starting point for a fresh research cycle.baseline — MOVING CURSOR. Points to the last merged state. Used by merge_cherry_pick to find new commits since the last merge. Moves after each merge operation./target-reset resets both HEAD and baseline to seed.