Multi-Machine-Sync: Alle Claude-Konfigurationen ins Repo aufnehmen #2

Merged
martin merged 4 commits from feat/multi-machine-sync into main 2026-04-19 11:32:41 +02:00
4 changed files with 4 additions and 3 deletions
Showing only changes of commit d9890b05ef - Show all commits
+4 -3
View File
@@ -5,10 +5,11 @@ REPO="/mnt/projekte/claude-workflow"
echo "=== Claude-Workflow Bootstrap ===" echo "=== Claude-Workflow Bootstrap ==="
# Skills # Skills (als Verzeichnis-Symlinks: ~/.claude/skills/<name> → repo/skills/<name>/)
mkdir -p ~/.claude/skills mkdir -p ~/.claude/skills
for f in "$REPO/skills/"*.md; do for d in "$REPO/skills/"/*/; do
ln -sf "$f" ~/.claude/skills/ name=$(basename "$d")
ln -sf "$d" ~/.claude/skills/"$name"
done done
echo "✓ Skills verlinkt" echo "✓ Skills verlinkt"
View File