From 4a774228fcafd566a4173f3dc8efeec629d8929f Mon Sep 17 00:00:00 2001 From: tiehongji Date: Thu, 4 Jun 2026 20:16:20 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=96=87=E6=A1=A3=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 19 +++++++++++++++++++ internal/commands/root.go | 14 +++++++++++++- 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bc28835..6158b4a 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/internal/commands/root.go b/internal/commands/root.go index b1a2f17..da78b88 100644 --- a/internal/commands/root.go +++ b/internal/commands/root.go @@ -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,