feat: 文档更新

* feat: 文档更新
* chore: release v0.1.1
* chore: release beta
* feat: 同步
* chore: add mediakit cli release pipeline
* feat: 产物同步
* license 变更
* 增加本地路处理

See merge request: !5
This commit is contained in:
铁鸿基
2026-06-05 07:06:17 +00:00
parent 938ee3bc24
commit 44137517d2
4 changed files with 40 additions and 3 deletions
+7 -1
View File
@@ -68,4 +68,10 @@ jobs:
- name: Publish npm package
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm publish --access public
run: |
PACKAGE_VERSION="$(node -p "require('./package.json').version")"
if [[ "$PACKAGE_VERSION" == *-* ]]; then
npm publish --access public --tag beta
else
npm publish --access public
fi
+19
View File
@@ -31,6 +31,25 @@ VERSION=v0.1.0 INSTALL_DIR="$HOME/.local/bin" \
curl -fsSL https://raw.githubusercontent.com/volcengine/mediakit-cli/main/scripts/install.sh | bash
```
## AI Agent Skills
`mediakit-cli` pairs with AI agent skills (Claude Code, etc.) that
teach the agent MediaKit CLI patterns, best practices, and workflows.
Install all skills:
```bash
npx skills add volcengine/mediakit-cli -g -y
```
Or pick specific domains:
```bash
npx skills add volcengine/mediakit-cli -s byted-mediakit-editing -y
npx skills add volcengine/mediakit-cli -s byted-mediakit-video -y
npx skills add volcengine/mediakit-cli -s byted-mediakit-shared -y
```
## Commands
```bash
+13 -1
View File
@@ -21,7 +21,19 @@ func newRootCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "mediakit-cli",
Short: "MediaKit command line interface",
Long: "MediaKit CLI provides system commands, domain navigation, and generated capability commands.",
Long: `MediaKit CLI provides system commands, domain navigation, and generated capability commands.
AI Agent Skills:
mediakit-cli pairs with AI agent skills (Claude Code, etc.) that
teach the agent MediaKit CLI patterns, best practices, and workflows.
Install all skills:
npx skills add volcengine/mediakit-cli -g -y
Or pick specific domains:
npx skills add volcengine/mediakit-cli -s byted-mediakit-editing -y
npx skills add volcengine/mediakit-cli -s byted-mediakit-video -y
npx skills add volcengine/mediakit-cli -s byted-mediakit-shared -y`,
SilenceUsage: true,
DisableAutoGenTag: true,
Version: buildinfo.Version,
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@volcengine/mediakit-cli",
"version": "0.1.0",
"version": "0.1.1",
"description": "MediaKit CLI with multi-platform binary distribution via npm",
"license": "MIT",
"bin": {