mirror of
https://github.com/volcengine/mediakit-cli.git
synced 2026-09-14 20:06:30 +08:00
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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
@@ -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": {
|
||||
|
||||
Reference in New Issue
Block a user