baa-conductor


baa-conductor / scripts / runtime
im_wower  ·  2026-03-28

install-claude-coded.sh

 1#!/usr/bin/env bash
 2# Convenience wrapper: install only the claude-coded launchd service.
 3# Delegates to install-launchd.sh with --service claude-coded.
 4set -euo pipefail
 5
 6script_dir="$(cd -- "$(dirname -- "$0")" && pwd)"
 7source "${script_dir}/common.sh"
 8
 9runtime_log "Installing claude-coded launchd service..."
10
11exec "${script_dir}/install-launchd.sh" \
12  --service claude-coded \
13  "$@"