원클릭으로
deploy
Clone and configure all 4 SAR repos from GitHub
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Clone and configure all 4 SAR repos from GitHub
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 | 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.