Files
srbhr--resume-matcher/apps/backend/e2e_monitor/install_skill.sh
T
wehub-resource-sync 5bdf4cc89a
Publish Docker Image / publish (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:39:36 +08:00

10 lines
431 B
Bash
Executable File

#!/usr/bin/env bash
# Install the (gitignored) monitor-e2e Claude Code skill from its committed
# source-of-truth playbook. Run once per clone if you want the agent layer.
set -euo pipefail
root="$(cd "$(dirname "$0")/../../.." && pwd)"
dest="$root/.claude/skills/monitor-e2e"
mkdir -p "$dest"
cp "$root/apps/backend/e2e_monitor/AGENT_PLAYBOOK.md" "$dest/SKILL.md"
echo "installed monitor-e2e skill -> $dest/SKILL.md (gitignored)"