@mindstudio-ai/agent 0.1.20 → 0.1.22
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/dist/cli.js +220 -19
- package/dist/index.d.ts +65 -14
- package/dist/index.js +85 -7
- package/dist/index.js.map +1 -1
- package/dist/postinstall.js +220 -19
- package/llms.txt +3 -3
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -1446,7 +1446,7 @@ Retrieve metadata and recent videos for a YouTube channel.
|
|
|
1446
1446
|
- Accepts a YouTube channel URL (e.g. https://www.youtube.com/@ChannelName or /channel/ID).
|
|
1447
1447
|
- Returns channel info and video listings as a JSON object.
|
|
1448
1448
|
- Input: `{ channelUrl: string }`
|
|
1449
|
-
- Output: `
|
|
1449
|
+
- Output: `object`
|
|
1450
1450
|
|
|
1451
1451
|
#### fetchYoutubeComments
|
|
1452
1452
|
Retrieve comments for a YouTube video.
|
|
@@ -1460,7 +1460,7 @@ Retrieve metadata for a YouTube video (title, description, stats, channel info).
|
|
|
1460
1460
|
- Returns video metadata, channel info, and engagement stats.
|
|
1461
1461
|
- Video format data is excluded from the response.
|
|
1462
1462
|
- Input: `{ videoUrl: string }`
|
|
1463
|
-
- Output: `
|
|
1463
|
+
- Output: `object`
|
|
1464
1464
|
|
|
1465
1465
|
#### searchYoutube
|
|
1466
1466
|
Search for YouTube videos by keyword.
|
|
@@ -1474,7 +1474,7 @@ Retrieve trending videos on YouTube by category and region.
|
|
|
1474
1474
|
- Categories: "now" (trending now), "music", "gaming", "films".
|
|
1475
1475
|
- Supports country and language filtering.
|
|
1476
1476
|
- Input: `{ bp: "now" | "music" | "gaming" | "films", hl: string, gl: string }`
|
|
1477
|
-
- Output: `
|
|
1477
|
+
- Output: `object`
|
|
1478
1478
|
|
|
1479
1479
|
### Helpers
|
|
1480
1480
|
|