Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
A comprehensive collection of Agent Skills for context engineering, multi-agent architectures, and production agent systems.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
researcher/orchestration/launchd/uninstall.sh
1#!/usr/bin/env bash2# Remove the autonomous research loop launchd jobs.3set -euo pipefail45TARGET_DIR="${HOME}/Library/LaunchAgents"6for label in com.context-engineering.loop-step com.context-engineering.loop-discover com.context-engineering.loop-daily; do7dst="${TARGET_DIR}/${label}.plist"8launchctl bootout "gui/$(id -u)" "${dst}" >/dev/null 2>&1 || true9rm -f "${dst}"10done1112echo "Removed launchd jobs from ${TARGET_DIR}."13