mirror of
https://github.com/modelstudioai/cli.git
synced 2026-09-14 19:49:23 +08:00
97e47f7054
- Modified the `sync:skill-assets` script in `package.json` to remove the dependency on building `bailian-cli-core` before generating references and syncing skill versions.
11 lines
268 B
Bash
Executable File
11 lines
268 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -eu
|
|
|
|
# Regenerate skill reference + SKILL metadata from source (no package build).
|
|
pnpm run sync:skill-assets
|
|
|
|
# Stage generator output so it is included in this commit.
|
|
git add skills/bailian-cli/reference skills/bailian-cli/SKILL.md
|
|
|
|
vp staged
|