From e0c82d4fa31e71558766b7e6f75e3ad64b25626a Mon Sep 17 00:00:00 2001 From: Matt Van Horn <455140+mvanhorn@users.noreply.github.com> Date: Mon, 22 Jun 2026 18:20:08 -0700 Subject: [PATCH] fix: repair make sync target paths and document all reference copies make sync copied to skills/make-paper-demo (renamed to auto-paper-demo), so it failed; and a 4th copy (implement-paper-auto) was never synced. Fix the paths, add the missing copy, and complete the CLAUDE.md references table. --- CLAUDE.md | 2 ++ Makefile | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CLAUDE.md b/CLAUDE.md index 4ac11de..d609459 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -10,6 +10,8 @@ Current shared references: | Source | Copied to | |--------|-----------| | `skills/anywidget/SKILL.md` | `skills/marimo-notebook/references/ANYWIDGET.md` | +| `skills/anywidget/SKILL.md` | `skills/auto-paper-demo/references/ANYWIDGET.md` | +| `skills/anywidget/SKILL.md` | `skills/implement-paper-auto/references/ANYWIDGET.md` | | `skills/anywidget/SKILL.md` | `skills/implement-paper/references/anywidget.md` | After editing `skills/anywidget/SKILL.md`, run: diff --git a/Makefile b/Makefile index c7f28fa..e27c92d 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ sync: cp skills/anywidget/SKILL.md skills/marimo-notebook/references/ANYWIDGET.md - cp skills/anywidget/SKILL.md skills/make-paper-demo/references/ANYWIDGET.md + cp skills/anywidget/SKILL.md skills/auto-paper-demo/references/ANYWIDGET.md + cp skills/anywidget/SKILL.md skills/implement-paper-auto/references/ANYWIDGET.md cp skills/anywidget/SKILL.md skills/implement-paper/references/anywidget.md