@eat-pray-ai/yutu 0.10.7-dev1 → 0.10.8-dev1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -35
- package/bin/yutu +7 -7
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -246,45 +246,13 @@ You can add `yutu` as a MCP server in VS Code or Cursor by clicking correspondin
|
|
|
246
246
|
|
|
247
247
|
## Skills
|
|
248
248
|
|
|
249
|
-
`yutu` provides a
|
|
249
|
+
`yutu` provides a unified [skill](https://opencode.ai/docs/skills) that extends AI agents with YouTube domain knowledge, common workflows, and SEO best practices — covering videos, playlists, comments, channels, captions, subscriptions, and more.
|
|
250
250
|
|
|
251
251
|
```shell
|
|
252
|
-
|
|
253
|
-
❯ npx skills add https://github.com/eat-pray-ai/yutu/tree/main/skills/youtube-video
|
|
254
|
-
|
|
255
|
-
# Install all skills at once
|
|
256
|
-
❯ npx skills add https://github.com/eat-pray-ai/yutu/tree/main/skills
|
|
252
|
+
❯ npx skills add https://github.com/eat-pray-ai/yutu/tree/main/skills/youtube
|
|
257
253
|
```
|
|
258
254
|
|
|
259
|
-
|
|
260
|
-
<summary>Available Skills</summary>
|
|
261
|
-
|
|
262
|
-
| Skill | Description |
|
|
263
|
-
|----------------------------------------------------------------------------|-------------------------------------------|
|
|
264
|
-
| [youtube-activity](skills/youtube-activity) | Manage activities on YouTube |
|
|
265
|
-
| [youtube-caption](skills/youtube-caption) | Manage YouTube video captions |
|
|
266
|
-
| [youtube-channel](skills/youtube-channel) | Manage YouTube channels |
|
|
267
|
-
| [youtube-channelBanner](skills/youtube-channel-banner) | Manage YouTube channel banners |
|
|
268
|
-
| [youtube-channelSection](skills/youtube-channel-section) | Manage YouTube channel sections |
|
|
269
|
-
| [youtube-comment](skills/youtube-comment) | Manage YouTube comments |
|
|
270
|
-
| [youtube-commentThread](skills/youtube-comment-thread) | Manage YouTube comment threads |
|
|
271
|
-
| [youtube-i18nLanguage](skills/youtube-i18n-language) | Manage YouTube i18n languages |
|
|
272
|
-
| [youtube-i18nRegion](skills/youtube-i18n-region) | Manage YouTube i18n regions |
|
|
273
|
-
| [youtube-member](skills/youtube-member) | Manage YouTube channel members |
|
|
274
|
-
| [youtube-membershipsLevel](skills/youtube-memberships-level) | Manage YouTube memberships levels |
|
|
275
|
-
| [youtube-playlist](skills/youtube-playlist) | Manage YouTube playlists |
|
|
276
|
-
| [youtube-playlistImage](skills/youtube-playlist-image) | Manage YouTube playlist images |
|
|
277
|
-
| [youtube-playlistItem](skills/youtube-playlist-item) | Manage YouTube playlist items |
|
|
278
|
-
| [youtube-search](skills/youtube-search) | Manage YouTube search |
|
|
279
|
-
| [youtube-subscription](skills/youtube-subscription) | Manage YouTube subscriptions |
|
|
280
|
-
| [youtube-superChatEvent](skills/youtube-super-chat-event) | Manage YouTube Super Chat events |
|
|
281
|
-
| [youtube-thumbnail](skills/youtube-thumbnail) | Manage YouTube video thumbnails |
|
|
282
|
-
| [youtube-video](skills/youtube-video) | Manage YouTube videos |
|
|
283
|
-
| [youtube-videoAbuseReportReason](skills/youtube-video-abuse-report-reason) | Manage YouTube video abuse report reasons |
|
|
284
|
-
| [youtube-videoCategory](skills/youtube-video-category) | Manage YouTube video categories |
|
|
285
|
-
| [youtube-watermark](skills/youtube-watermark) | Manage YouTube watermarks |
|
|
286
|
-
|
|
287
|
-
</details>
|
|
255
|
+
See [skills/youtube/SKILL.md](skills/youtube/SKILL.md) for the full list of supported operations.
|
|
288
256
|
|
|
289
257
|
## Usage
|
|
290
258
|
|
package/bin/yutu
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
"use strict";
|
|
4
4
|
|
|
5
|
-
const {
|
|
5
|
+
const {execFileSync} = require("child_process");
|
|
6
6
|
const os = require("os");
|
|
7
7
|
|
|
8
8
|
const PLATFORMS = {
|
|
@@ -21,7 +21,7 @@ function getBinaryPath() {
|
|
|
21
21
|
if (!pkg) {
|
|
22
22
|
throw new Error(
|
|
23
23
|
`Unsupported platform: ${platformKey}. ` +
|
|
24
|
-
|
|
24
|
+
`yutu supports: ${Object.keys(PLATFORMS).join(", ")}`
|
|
25
25
|
);
|
|
26
26
|
}
|
|
27
27
|
|
|
@@ -40,16 +40,16 @@ function getBinaryPath() {
|
|
|
40
40
|
}
|
|
41
41
|
throw new Error(
|
|
42
42
|
`You installed yutu for ${key} but this platform is ${platformKey}.\n` +
|
|
43
|
-
|
|
44
|
-
|
|
43
|
+
`This can happen when copying node_modules between platforms.\n` +
|
|
44
|
+
`Run "npm install" on this platform to fix.`
|
|
45
45
|
);
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
throw new Error(
|
|
49
49
|
`The package "${pkg}" could not be found, and is needed by yutu.\n\n` +
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
50
|
+
`If you installed with npm, make sure you don't use the "--no-optional"\n` +
|
|
51
|
+
`or "--omit=optional" flags. The "optionalDependencies" feature is used\n` +
|
|
52
|
+
`by yutu to install the correct binary for your platform.`
|
|
53
53
|
);
|
|
54
54
|
}
|
|
55
55
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eat-pray-ai/yutu",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.8-dev1",
|
|
4
4
|
"description": "The AI-powered toolkit that grows your YouTube channel on autopilot",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"node": ">=18"
|
|
32
32
|
},
|
|
33
33
|
"optionalDependencies": {
|
|
34
|
-
"@eat-pray-ai/yutu-darwin-arm64": "0.10.
|
|
35
|
-
"@eat-pray-ai/yutu-darwin-x64": "0.10.
|
|
36
|
-
"@eat-pray-ai/yutu-linux-arm64": "0.10.
|
|
37
|
-
"@eat-pray-ai/yutu-linux-x64": "0.10.
|
|
38
|
-
"@eat-pray-ai/yutu-win32-arm64": "0.10.
|
|
39
|
-
"@eat-pray-ai/yutu-win32-x64": "0.10.
|
|
34
|
+
"@eat-pray-ai/yutu-darwin-arm64": "0.10.8-dev1",
|
|
35
|
+
"@eat-pray-ai/yutu-darwin-x64": "0.10.8-dev1",
|
|
36
|
+
"@eat-pray-ai/yutu-linux-arm64": "0.10.8-dev1",
|
|
37
|
+
"@eat-pray-ai/yutu-linux-x64": "0.10.8-dev1",
|
|
38
|
+
"@eat-pray-ai/yutu-win32-arm64": "0.10.8-dev1",
|
|
39
|
+
"@eat-pray-ai/yutu-win32-x64": "0.10.8-dev1"
|
|
40
40
|
}
|
|
41
41
|
}
|