Skip to content

Commit 21baf0a

Browse files
committed
✏️ Correct skill path
1 parent 1963fa8 commit 21baf0a

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ You can add `yutu` as a MCP server in VS Code or Cursor by clicking correspondin
250250

251251
```shell
252252
# Install a single skill (e.g. video management)
253-
❯ npx skills add https://github.com/eat-pray-ai/yutu/tree/main/skills/yutu-video
253+
❯ npx skills add https://github.com/eat-pray-ai/yutu/tree/main/skills/youtube-video
254254

255255
# Install all skills at once
256256
❯ npx skills add https://github.com/eat-pray-ai/yutu/tree/main/skills

README_zh.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116

117117
### GitHub Actions
118118

119-
yutu 有两个可用的 GutHub Action,一个是通用 action,另一个专用于上传视频到 YouTube。更多信息请参考 [youtube-action](https://github.com/eat-pray-ai/youtube-action)[youtube-uploader](https://github.com/eat-pray-ai/youtube-uploader)
119+
yutu 有两个可用的 GitHub Action,一个是通用 action,另一个专用于上传视频到 YouTube。更多信息请参考 [youtube-action](https://github.com/eat-pray-ai/youtube-action)[youtube-uploader](https://github.com/eat-pray-ai/youtube-uploader)
120120

121121
### Node.js
122122

@@ -258,7 +258,7 @@ yutu 有两个可用的 GutHub Action,一个是通用 action,另一个专用
258258

259259
```shell
260260
# 安装单个 skill(例如视频管理)
261-
❯ npx skills add https://github.com/eat-pray-ai/yutu/tree/main/skills/yutu-video
261+
❯ npx skills add https://github.com/eat-pray-ai/yutu/tree/main/skills/youtube-video
262262

263263
# 一次安装所有 skills
264264
❯ npx skills add https://github.com/eat-pray-ai/yutu/tree/main/skills

cmd/agent/agent.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ func launch(ctx context.Context, writer io.Writer, args []string) {
153153
)
154154
if err != nil {
155155
slog.ErrorContext(ctx, "failed to create MCP tool set", "error", err)
156+
os.Exit(1)
156157
}
157158

158159
orchestrator, err := buildOrchestrator(advancedModel, liteModel, mcpToolSet)

pkg/playlistItem/playlistItem.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ func (pi *PlaylistItem) Delete(writer io.Writer) error {
262262
return errors.Join(errDeletePlaylistItem, err)
263263
}
264264

265-
_, _ = fmt.Fprintf(writer, "Playlsit Item %s deleted", id)
265+
_, _ = fmt.Fprintf(writer, "Playlist Item %s deleted\n", id)
266266
}
267267
return nil
268268
}

0 commit comments

Comments
 (0)