Loading...
Loading...
Search cloud drives for downloadable film and TV resources (movies, TV series, anime). Use this skill when the user wants to download a specific movie or TV show. Do NOT use for general movie information, schedules, reviews, or recommendations.
npx skill4agent add netease-youdao/lobsterai films-searchbash "$SKILLS_ROOT/films-search/scripts/film-search.sh" search "keyword" [options]| Parameter | Description | Default Value |
|---|---|---|
| Filter by cloud drive type: | |
| Filter by video quality: | |
| Maximum number of results per platform | |
| Search engine: | |
deepweb# Search resources on all platforms (uses deep search by default)
bash "$SKILLS_ROOT/films-search/scripts/film-search.sh" search "The Wandering Earth 2"
# Only search for 4K resources on Quark cloud drive
bash "$SKILLS_ROOT/films-search/scripts/film-search.sh" search "The Wandering Earth 2" --pan quark --quality 4k
# Limit the number of results
bash "$SKILLS_ROOT/films-search/scripts/film-search.sh" search "The Wandering Earth 2" --limit 10
# Use shallow search (no deep page crawling)
bash "$SKILLS_ROOT/films-search/scripts/film-search.sh" search "The Wandering Earth 2" --engine webpowershell -File "$SKILLS_ROOT/films-search/scripts/film-search.ps1" search "The Wandering Earth 2" --pan quarkbash "$SKILLS_ROOT/films-search/scripts/film-search.sh" hot "2025 Popular Movies"bash "$SKILLS_ROOT/films-search/scripts/film-search.sh" resolve "https://example.com/goto/xxx"search "XXX"extractCodepageUrlurlresolveUser: Help me find 4K Quark cloud drive resources for The Wandering Earth 2Agent:
- Execute
search "The Wandering Earth 2" --pan quark --quality 4k- Extract matching items from the JSON results
- Return: Title + Video Quality + Quark Cloud Drive Link + Access Code (if any)
{
"success": true,
"data": {
"query": "The Wandering Earth 2",
"total": 5,
"results": [
{
"title": "Resource Title",
"pan": "quark",
"url": "https://pan.quark.cn/s/xxx",
"quality": "4K",
"extractCode": "ab12",
"source": "deep-search",
"pageUrl": "https://example.com/resource/123"
}
]
}
}panquarkbaidualiyunucmagnetquality4K1080P720Psourcedeep-searchweb-searchurlextractCodepageUrlfilms-search/.env# Preferred cloud drive types (comma-separated, earlier ones are prioritized)
FILM_SEARCH_PREFERRED_PAN=quark,aliyun,baidu,uc
# Deep search toggle (recommended to enable)
FILM_SEARCH_DEEP_ENABLED=true
# Maximum number of result pages accessed per search
FILM_SEARCH_DEEP_MAX_PAGES=6
# Number of concurrent page crawls
FILM_SEARCH_DEEP_CONCURRENCY=4--engine deep