Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

moviepilot-climoviepilot CLI 搜索

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

792

周安装

34

GitHub Stars

公开资料未说明

下载量

277
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:moviepilot-cli(moviepilot CLI 搜索)
来源仓库:https://github.com/pkc278/moviepilot
仓库路径:skills/moviepilot-cli
安装命令:
npx skills add https://github.com/pkc278/moviepilot --skill moviepilot-cli
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/pkc278/moviepilot --skill moviepilot-cli

简介

moviepilot-cli 用于辅助视频生成、动画合成和 Remotion 项目开发。

  • 适合组织镜头、生成素材说明和维护合成代码。
  • 使用时需要确认分辨率、时长、素材路径和导出格式。
  • 涉及外部素材或商业发布时应先核对版权授权和内容审核要求。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

MoviePilot CLI

All script paths are relative to this skill file.

Use scripts/mp-cli.js to interact with the MoviePilot backend.

Discover Commands

List all available commands: node scripts/mp-cli.js list

Show parameters and usage for a specific command: node scripts/mp-cli.js show <command>

Always run show <command> before calling a command — parameter names are not inferable, do not guess.

Command Groups

CategoryCommands
Media Searchsearch_media, recognize_media, query_media_detail, get_recommendations, search_person, search_person_credits
Torrentsearch_torrents, get_search_results
Downloadadd_download, query_download_tasks, delete_download, query_downloaders
Subscriptionadd_subscribe, query_subscribes, update_subscribe, delete_subscribe, search_subscribe, query_subscribe_history, query_popular_subscribes, query_subscribe_shares
Libraryquery_library_exists, query_library_latest, transfer_file, scrape_metadata, query_transfer_history
Fileslist_directory, query_directory_settings
Sitesquery_sites, query_site_userdata, test_site, update_site, update_site_cookie
Systemquery_schedulers, run_scheduler, query_workflows, run_workflow, query_rule_groups, query_episode_schedule, send_message

Workflows

Search and Download

1. Search TMDB

Search for a movie or TV show by title: node scripts/mp-cli.js search_media title="..." media_type="movie"

If the user specifies a TV season, run Season Validation step first — the season number provided by the user may not match TMDB.

2. Search torrents

Prefer tmdb_id; use douban_id only when tmdb_id is unavailable.

Omitting sites= uses the user's default sites. If the user specifies sites, first retrieve site IDs: node scripts/mp-cli.js query_sites

Search torrents using default sites: node scripts/mp-cli.js search_torrents tmdb_id=791373 media_type="movie"

Search torrents using user-specified sites (pass site IDs from query_sites): node scripts/mp-cli.js search_torrents tmdb_id=791373 media_type="movie" sites='1,3'

When search_torrents returns:

  1. Stop — do not call get_search_results yet.
  2. Present all filter_options fields and every value within each field to the user verbatim.
  3. Do not pre-select, summarize, or omit any field or value.
  4. Wait for the user to select filters or confirm no filters are needed before moving to the next step.

3. Get filtered results (only after user has responded to filter_options)

Run node scripts/mp-cli.js show get_search_results to check available parameters. Filter logic: OR within a field, AND across fields.

Filter values must come from the filter_options returned by search_torrents — do not invent, translate, normalize, or use values from any other source. Note: filter_options keys are camelCase (e.g., freeState), but get_search_results params are snake_case (e.g., free_state).

Fetch results with selected filters: node scripts/mp-cli.js get_search_results resolution='1080p,2160p' free_state='免费,50%'

If empty, tell the user which filter to relax and ask before retrying.

4. Present results as a numbered list

Show all results without pre-selection. Each row: index, title, size, seeders, resolution, release group, volume_factor, freedate_diff.

volume_factorMeaning
免费Free download
50%50% download size
2XDouble upload
2X免费Double upload + free
普通No discount

freedate_diff: remaining free window (e.g., 2天3小时).

5. Check before downloading

After the user picks torrents: Run Check Library and Subscriptions step.

If the media already exists in the library or is already subscribed, stop and report the finding to the user.

6. Add download

Download one or more torrents (torrent_url comes from get_search_results output): node scripts/mp-cli.js add_download torrent_url="abc1234:1,def5678:2"

Error handling

StepAction
search_media emptyRetry with alternative title (English/original), inform user. Still empty → ask for title or TMDB ID.
search_torrents emptyInform user, ask whether to retry with different sites.
get_search_results emptyDo not silently broaden filters. Suggest which filter to relax, ask before retrying.
add_download failsRun query_downloaders + query_download_tasks to diagnose, then report to user.

Add Subscription

  1. Search for the media to get tmdb_id: Run search_media.
  2. Run Check Library and Subscriptions step, if media already exists or is subscribed, stop and report to user.
  3. If the user specifies a TV season, run Season Validation step first.

Subscribe to a movie or TV show: node scripts/mp-cli.js add_subscribe title="..." year="2011" media_type="tv" tmdb_id=42009

Subscribe to a specific season: node scripts/mp-cli.js add_subscribe title="..." year="2011" media_type="tv" tmdb_id=42009 season=4

Subscribe starting from a specific episode: node scripts/mp-cli.js add_subscribe title="..." year="2024" media_type="tv" tmdb_id=12345 season=1 start_episode=13

Manage Downloads

List download tasks and get hash for further operations: node scripts/mp-cli.js query_download_tasks status=downloading

Delete a download task (confirm with user first — irreversible): node scripts/mp-cli.js delete_download hash=<hash>

Delete a download task and also remove its files (confirm with user first — irreversible): node scripts/mp-cli.js delete_download hash=<hash> delete_files=true

Manage Subscriptions

List active subscriptions: node scripts/mp-cli.js query_subscribes status=R

Update subscription filters: node scripts/mp-cli.js update_subscribe subscribe_id=123 resolution="1080p"

Trigger a search for missing episodes (confirm with user first): node scripts/mp-cli.js search_subscribe subscribe_id=123

Remove a subscription (confirm with user first): node scripts/mp-cli.js delete_subscribe subscribe_id=123

Check Library and Subscriptions

Run before any download or subscription to avoid duplicates.

Check if the media already exists in the library: node scripts/mp-cli.js query_library_exists tmdb_id=123456 media_type="movie"

Check if the media is already subscribed: node scripts/mp-cli.js query_subscribes tmdb_id=123456

Season Validation

Mandatory when user specifies a season. Productions sometimes release a show in multiple parts under one TMDB season; online communities and torrent sites may label each part as a separate "season".

1. Verify season exists

Fetch media detail to check available seasons: node scripts/mp-cli.js query_media_detail tmdb_id=<id> media_type="tv"

Compare season_info with the user's requested season:

  1. If the season exists in season_info → use that season number directly and return to the calling workflow.
  2. If the season does not exist → the user's "season" likely maps to a later episode range within an existing TMDB season. Note the latest (highest-numbered) season from season_info, then continue to next step.

2. Identify the correct episode range

Fetch episode schedule for the latest season from season_info: node scripts/mp-cli.js query_episode_schedule tmdb_id=<id> season=<latest_season_number>

Use air_date to find a block of recently-aired episodes that likely corresponds to what the user calls the missing season. Look for a gap in air_date between episodes — the gap indicates a part break, and the episodes after the gap are what the user likely refers to as the next "season". For example, if TMDB Season 1 has episodes 1–24 and there is a multi-month gap between episode 12 and 13, then episodes 13–24 correspond to the user's "Season 2". If no such gap exists, tell user content is unavailable. Otherwise confirm the episode range with user.

Error handling

Missing configuration: Ask the user for the backend host and API key. Once provided, save the config persistently — subsequent commands will use it automatically: node scripts/mp-cli.js -h <HOST> -k <KEY>

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.7%
按下载量换算102

Claude

29.69%
按下载量换算82

Cursor

19.26%
按下载量换算53

Gemini CLI

8.63%
按下载量换算24

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills