원클릭으로
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.