Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计通过

create-moviepilot-skill创建电影飞行员技能

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

10,984

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

引导创建 MoviePilot 内置代理技能,规范存放于 skills/ 目录并参与启动同步。

  • 适用于视频项目开发中的镜头组织、素材说明维护和合成代码管理任务。
  • 需明确分辨率、时长、素材路径和导出格式参数,涉及版权内容时应先核对授权许可。
  • 操作前应确认项目结构是否符合 MoviePilot 约定,避免误覆盖关键配置文件。
  • create-moviepilot-skill 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Create MoviePilot Skill

This skill guides you through creating or updating a built-in MoviePilot agent skill in this repository.

Scope

Use this workflow for repository built-in skills:

  • Create or update files under skills/<skill-id>/
  • Commit the skill as part of the MoviePilot repository
  • Do not place the implementation only in config/agent/skills unless the user explicitly asks for a local override instead of a built-in skill

MoviePilot-Specific Rules

  • The repository root skills/ directory is the bundled source of truth for built-in skills.
  • On agent startup, bundled skills are synced into config/agent/skills.
  • Sync overwrite depends on the version field in SKILL.md. If you update an existing built-in skill, increment version, or users may continue using an older copied version.
  • Keep the folder name and frontmatter name identical. Use lowercase letters, digits, and hyphens only.
  • Prefer extending an existing skill instead of creating an overlapping duplicate.

Workflow

Step 1: Understand the Request

  • Determine whether the user wants a new skill or a change to an existing one.
  • Extract the target task, likely trigger phrases, needed tools, and whether helper scripts are necessary.
  • If the goal is still ambiguous after reading the request and local context, ask one focused clarification question. Otherwise proceed with a reasonable default.

Step 2: Check Existing Skills First

  • Inspect the repository skills/ directory before creating anything new.
  • If an existing skill already covers most of the workflow, update it instead of adding a near-duplicate.
  • Reuse the repository style: concise YAML frontmatter, trigger-rich description, and procedural body sections.

Step 3: Choose the Skill ID and Path

  • New built-in skill path: skills/<skill-id>/SKILL.md
  • Keep <skill-id> short, hyphen-case, and under 64 characters.
  • Use a verb-led or domain-led name that makes the trigger obvious, such as transfer-failed-retry, moviepilot-api, or create-moviepilot-skill.

Step 4: Write Frontmatter Correctly

Use this shape:

---
name: create-moviepilot-skill
version: 1
description: >-
  Explain what the skill does and exactly when to use it.
allowed-tools: list_directory read_file write_file edit_file execute_command
---

Rules:

  • description is the primary trigger surface. Put concrete "when to use" scenarios there.
  • Include version for built-in skills. Increment it whenever you ship a new built-in revision.
  • Add allowed-tools when the workflow depends on a small, well-defined tool set.
  • Add compatibility only when environment constraints actually matter.

Step 5: Write the Body

The body should contain:

  • A short purpose statement
  • MoviePilot-specific rules or guardrails
  • A step-by-step workflow
  • Concrete examples of matching user requests
  • References to supporting files when they exist

Prefer:

  • Imperative instructions
  • Concrete file paths
  • Examples aligned with actual MoviePilot conventions

Avoid:

  • Generic theory that does not change execution
  • Large duplicated documentation
  • Extra files like README.md or CHANGELOG.md inside the skill directory

Step 6: Add Supporting Files Only When They Help

  • Add scripts/ only when the same deterministic work would otherwise be rewritten repeatedly.
  • Keep helper files inside the same skill directory.
  • Reference helper paths explicitly from SKILL.md.
  • If the skill is instructions-only, keep it to a single SKILL.md.

Step 7: Implement the Skill

For a new built-in skill:

  1. Create skills/<skill-id>/
  2. Create SKILL.md
  3. Add helper scripts only if they are justified

For an existing built-in skill:

  1. Edit skills/<skill-id>/SKILL.md
  2. Increment version
  3. Update helper files in the same directory if needed

Step 8: Validate Before Finishing

  • Re-read the frontmatter and confirm name matches the directory name.
  • Confirm description mentions real trigger scenarios.
  • If you changed an existing built-in skill, confirm version increased.
  • If possible, validate the file can be parsed by the MoviePilot skills loader.
  • Report the final path and note whether the agent needs a restart to sync the latest built-in skill into config/agent/skills.

Minimal Example

User request:

给 MoviePilot agent 加一个处理站点 Cookie 更新的内置技能

Expected outcome:

  • Create or update a directory such as skills/update-site-cookie/
  • Write SKILL.md with a trigger-rich description
  • Include only the tools needed for that workflow
  • Increment version when revising an existing built-in skill

Final Checklist

  • Is the skill under the repository skills/ directory?
  • Does the folder name equal frontmatter name?
  • Does description clearly say when the skill should trigger?
  • Did you avoid duplicating an existing skill unnecessarily?
  • Did you increment version for built-in skill updates?
  • Did you keep the skill lean and procedural?

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.74%
按下载量换算24

Claude

28.89%
按下载量换算19

Cursor

18.72%
按下载量换算12

Gemini CLI

9.2%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills