with one click
deploy
Clone and configure all 4 SAR repos from GitHub
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Clone and configure all 4 SAR repos from GitHub
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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 | deploy |
| description | Clone and configure all 4 SAR repos from GitHub |
| user_invocable | true |
Clone the supervisor, research loop, RAG target, and harness-core as sibling directories.
If .env does not exist, create it from .env.example:
if [ ! -f .env ]; then
cp .env.example .env
echo "Created .env from .env.example"
fi
Then auto-detect Claude config directories and update CLAUDE_CONFIG_DIRS:
DETECTED=$(ls -d ~/.claude-* 2>/dev/null | sort | paste -sd ':' -)
if grep -q '^CLAUDE_CONFIG_DIRS=' .env; then
sed -i '' "s|^CLAUDE_CONFIG_DIRS=.*|CLAUDE_CONFIG_DIRS=${DETECTED}|" .env
else
echo "CLAUDE_CONFIG_DIRS=${DETECTED}" >> .env
fi
Parse all variables from .env:
GITHUB_OWNER — GitHub org/userSUPERVISOR_REPO / SUPERVISOR_REPO_NAMERESEARCH_LOOP_REPO / RESEARCH_LOOP_REPO_NAMERAG_TARGET_REPO / RAG_TARGET_REPO_NAMEHARNESS_CORE_REPO / HARNESS_CORE_REPO_NAMEIf any required variable is missing, STOP and report which variable is missing and that it should be set in .env.
If any configured paths already exist, STOP and tell the user to run /delete first.
gh repo clone ${GITHUB_OWNER}/${HARNESS_CORE_REPO_NAME} ${HARNESS_CORE_REPO}
gh repo clone ${GITHUB_OWNER}/${SUPERVISOR_REPO_NAME} ${SUPERVISOR_REPO}
gh repo clone ${GITHUB_OWNER}/${RESEARCH_LOOP_REPO_NAME} ${RESEARCH_LOOP_REPO}
gh repo clone ${GITHUB_OWNER}/${RAG_TARGET_REPO_NAME} ${RAG_TARGET_REPO}
Harness-core first since others depend on it:
cd ${HARNESS_CORE_REPO} && pixi install
cd ${SUPERVISOR_REPO} && pixi install
cd ${RESEARCH_LOOP_REPO} && pixi install
cd ${RAG_TARGET_REPO} && pixi install
${SUPERVISOR_REPO}/harness.toml supervised.repo should resolve to ${RESEARCH_LOOP_REPO}${RESEARCH_LOOP_REPO}/.claude/agents/evaluator.md should reference a path resolving to ${RAG_TARGET_REPO}Which repos were cloned, installed, and any issues found.