@eat-pray-ai/yutu 0.10.7 → 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.
Files changed (2) hide show
  1. package/README.md +3 -35
  2. 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 set of [skills](https://opencode.ai/docs/skills) that extend AI agents with YouTube domain knowledge. Install individual skills to give your agent specialized capabilities for specific YouTube resources.
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
- # Install a single skill (e.g. video management)
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
- <details>
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eat-pray-ai/yutu",
3
- "version": "0.10.7",
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.7",
35
- "@eat-pray-ai/yutu-darwin-x64": "0.10.7",
36
- "@eat-pray-ai/yutu-linux-arm64": "0.10.7",
37
- "@eat-pray-ai/yutu-linux-x64": "0.10.7",
38
- "@eat-pray-ai/yutu-win32-arm64": "0.10.7",
39
- "@eat-pray-ai/yutu-win32-x64": "0.10.7"
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
  }