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.
This commit is contained in:
lodderjasper99-lang 2026-08-20 13:49:06 +02:00 committed by GitHub
parent 8a1a6d8573
commit bc826e2267
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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