add claw-skills: scripts and workflows folders, update-skills, promote-improvements

This commit is contained in:
lyn
2026-04-17 13:23:10 +00:00
parent 3e342e1162
commit 5ad82369a8
3 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#!/usr/bin/env bash
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
CLAW_DIR="$(cd "${SCRIPT_DIR}/../.." && pwd)"
GIT_LAB_DIR="${CLAW_DIR}/git-hangman-lab"
# Pull latest ClawSkills from git-hangman-lab
echo "Fetching latest ClawSkills..."
"${GIT_LAB_DIR}/scripts/git-ctrl" repo get-latest ClawSkills
# Run learn.sh to install skills
echo "Running learn.sh..."
"${CLAW_DIR}/ClawSkills/learn.sh"
echo "Done."