#!/usr/bin/env bash # Deployment manifest — sourced by install.sh. # All paths: src relative to REPO_ROOT, dest relative to HOME. # Format: "src:dest" # shellcheck disable=SC2034 # Individual files — copied verbatim DEPLOY_FILES=( "providers/claude-code/CLAUDE.md:.claude/CLAUDE.md" "providers/claude-code/settings.json:.claude/settings.json" "core/AGENTS.md:.agents/AGENTS.md" ) # Files that also need the executable bit set DEPLOY_EXECUTABLES=( "providers/claude-code/statusline-command.sh:.claude/statusline-command.sh" ) # Directories — destination is fully replaced on each deploy (rm -rf + cp -r) DEPLOY_DIRS=( "core:.claude/core" ) # Provider skill adapters are declared in providers/*/provider-manifest.sh, not here.