From bc826e2267a36d98a2dcf5231e16c30ff546770f Mon Sep 17 00:00:00 2001 From: lodderjasper99-lang Date: Thu, 20 Aug 2026 13:49:06 +0200 Subject: [PATCH] docs: fix outdated manual sync steps in CONTRIBUTING.md (#450) The manual cp commands only synced cli/assets/, skipping the .claude/skills/ui-ux-pro-max/ mirror that the sync-assets tooling also updates. Following the doc literally left that copy stale and would fail the "Check asset sync" CI check. Use the actual npm run sync:assets script (as documented in CLAUDE.md) instead. --- CONTRIBUTING.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9f92f17..1993744 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -99,10 +99,8 @@ git checkout -b feat/your-feature-name # 2. Make your changes in src/ui-ux-pro-max/ -# 3. Sync changes to CLI assets -cp -r src/ui-ux-pro-max/data/* cli/assets/data/ -cp -r src/ui-ux-pro-max/scripts/* cli/assets/scripts/ -cp -r src/ui-ux-pro-max/templates/* cli/assets/templates/ +# 3. Sync changes to CLI assets and the Claude Code skill +cd cli && npm run sync:assets && cd .. # 4. Build and test the CLI locally cd cli && bun run build