Create Moviepilot Skill logo

Create Moviepilot Skill

CommunityPopular
jxxghp
create-moviepilot-skill

Use this skill when the user asks to create, scaffold, update, or review a MoviePilot agent skill. This includes adding a new built-in skill under the repository `skills/` directory, editing an existing built-in skill, writing `SKILL.md` frontmatter and workflow instructions, choosing `allowed-tools`, adding helper scripts when needed, and bumping the built-in skill `version` so changes can sync into `config/agent/skills`.

Overview

Publisherjxxghp
RepositoryMoviePilot
Skill namecreate-moviepilot-skill
Stars
11.8K
Forks
1.5K
Bundled files
Instructions only
LicenseGPL-3.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by jxxghp on GitHub. Read the source before you install it.

Installation

Install the Create Moviepilot Skill AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/jxxghp/MoviePilot.git /tmp/MoviePilot
mkdir -p .claude/skills
cp -r /tmp/MoviePilot/skills/create-moviepilot-skill .claude/skills/create-moviepilot-skill
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Create Moviepilot Skill in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Create Moviepilot Skill on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Create Moviepilot Skill is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

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:

markdown
---
name: create-moviepilot-skill
version: 1
description: >-
  Explain what the skill does and exactly when to use it.
allowed-tools: 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?

Frequently asked questions

What does the Create Moviepilot Skill AI skill do?

Use this skill when the user asks to create, scaffold, update, or review a MoviePilot agent skill. This includes adding a new built-in skill under the repository `skills/` directory, editing an existing built-in skill, writing `SKILL.md` frontmatter and workflow instructions, choosing `allowed-tools`, adding helper scripts when needed, and bumping the built-in skill `version` so changes can sync into `config/agent/skills`.

Why use Create Moviepilot Skill on TypingMind?

Because you install it once and use it with any model. Create Moviepilot Skill is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Create Moviepilot Skill in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/jxxghp/MoviePilot/tree/v3/skills/create-moviepilot-skill. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Create Moviepilot Skill?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Create Moviepilot Skill?

As many as you like. As long as a model supports skills, you can use Create Moviepilot Skill with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Create Moviepilot Skill AI skill free?

Yes. It is published on GitHub by jxxghp under the GPL-3.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇