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

moviepilot-update电影飞行员更新

Agent Skill

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

总安装

869

周安装

51

GitHub Stars

11,022

下载量

420
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jxxghp/moviepilot --skill moviepilot-update

简介

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

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

SKILL.md

MoviePilot System Update & Restart

All script paths are relative to this skill file.

This skill provides capabilities to restart MoviePilot service, check for updates, and perform manual upgrades.

Restart MoviePilot

Method 1: Using REST API (Recommended)

Call the restart endpoint with admin authentication:

# Using moviepilot-api skill
python scripts/mp-api.py GET /api/v1/system/restart

Or with curl:

curl -X GET "http://localhost:3000/api/v1/system/restart" \
  -H "X-API-KEY: <YOUR_API_TOKEN>"

Note: This API will restart the Docker container internally. The service will be briefly unavailable during restart.

Method 2: Using execute_command tool

If you have admin privileges, you can execute the restart command directly:

docker restart moviepilot

Check for Updates

Method 1: Using REST API

python scripts/mp-api.py GET /api/v1/system/versions

This returns all available GitHub releases.

Method 2: Check current version

# Check current version
cat /app/version.py

Upgrade MoviePilot

Option 1: Automatic Update (Recommended)

Set the environment variable MOVIEPILOT_AUTO_UPDATE and restart:

  1. For Docker Compose users: # Edit docker-compose.yml, add environment variable: environment: - MOVIEPILOT_AUTO_UPDATE=release # or "dev" for dev版本 # Then restart docker-compose down && docker-compose up -d
  2. For Docker run users: docker stop moviepilot docker rm moviepilot docker run -d... -e MOVIEPILOT_AUTO_UPDATE=release jxxghp/moviepilot

The update script (/usr/local/bin/mp_update.sh or /app/docker/update.sh) will automatically:

  • Check GitHub for latest release
  • Download new backend code
  • Update dependencies if changed
  • Download new frontend
  • Update site resources
  • Restart the service

Option 2: Manual Upgrade

If you need to manually download and apply updates:

  1. Get latest release version: curl -s https://api.github.com/repos/jxxghp/MoviePilot/releases | grep '"tag_name"' | grep "v2" | head -1
  2. Download and extract backend: # Replace v2.x.x with actual version curl -L -o /tmp/backend.zip https://github.com/jxxghp/MoviePilot/archive/refs/tags/v2.x.x.zip unzip -d /tmp/backend /tmp/backend.zip
  3. Backup and replace: # Backup current installation cp -r /app /app_backup # Replace files (exclude config and plugins) cp -r /tmp/backend/MoviePilot-*/* /app/
  4. Restart MoviePilot: # Use API or docker restart python scripts/mp-api.py GET /api/v1/system/restart

Important Notes

  • Backup first: Before upgrading, backup your configuration and database
  • Dependencies: Check if requirements.in has changes; if so, update virtual environment
  • Plugins: The update script automatically backs up and restores plugins
  • Non-Docker: For non-Docker installations, use git pull or pip install -U moviepilot

Troubleshooting

IssueSolution
Restart failsCheck if Docker daemon is running; verify container has restart policy
Update failsCheck network connectivity to GitHub; ensure sufficient disk space
Version unchangedVerify MOVIEPILOT_AUTO_UPDATE environment variable is set correctly
Dependency errorsMay need to rebuild virtual environment: pip-compile requirements.in && pip install -r requirements.txt

Environment Variables for Auto-Update

VariableValueDescription
MOVIEPILOT_AUTO_UPDATEreleaseAuto-update to latest stable release
MOVIEPILOT_AUTO_UPDATEdevAuto-update to latest dev version
MOVIEPILOT_AUTO_UPDATEfalseDisable auto-update (default)
GITHUB_TOKEN(token)GitHub token for higher rate limits
GITHUB_PROXY(url)GitHub proxy URL for China users
PROXY_HOST(url)Global proxy host

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.41%
按下载量换算157

Claude

30.57%
按下载量换算128

Cursor

17.77%
按下载量换算75

Gemini CLI

9.97%
按下载量换算42

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills