fix: resolve skill loading warnings and correct video-toolkit naming

This commit is contained in:
Harsh Dadiya Wappnet
2026-06-25 19:00:47 +05:30
parent 7ee36dd6b6
commit 3656222356
10 changed files with 19 additions and 11 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ class AudioMixer(BaseTool):
"FFmpeg is required. pydub is optional for advanced mixing:\n"
"pip install pydub"
)
agent_skills = ["ffmpeg", "video_toolkit"]
agent_skills = ["ffmpeg", "video-toolkit"]
capabilities = ["mix", "duck", "fade", "normalize", "extract_audio", "segmented_music"]
+1 -1
View File
@@ -35,7 +35,7 @@ class ShowcaseCard(BaseTool):
dependencies = ["cmd:ffmpeg", "cmd:ffprobe"]
install_instructions = "Install FFmpeg: https://ffmpeg.org/download.html"
agent_skills = ["ffmpeg", "video_toolkit"]
agent_skills = ["ffmpeg", "video-toolkit"]
capabilities = ["create_showcase_card"]
+1 -1
View File
@@ -43,7 +43,7 @@ class VideoStitch(BaseTool):
"macOS: brew install ffmpeg\n"
"Linux: sudo apt install ffmpeg"
)
agent_skills = ["ffmpeg", "video_toolkit"]
agent_skills = ["ffmpeg", "video-toolkit"]
capabilities = [
"validate_clips",
+1 -1
View File
@@ -42,7 +42,7 @@ class VideoTrimmer(BaseTool):
"macOS: brew install ffmpeg\n"
"Linux: sudo apt install ffmpeg"
)
agent_skills = ["ffmpeg", "video_toolkit"]
agent_skills = ["ffmpeg", "video-toolkit"]
capabilities = ["cut", "trim", "speed_adjust", "concat"]