plugin-creator
Scaffold ghosty local plugin directories and activation notes. Use when the user asks to create, package, or sketch a plugin for ghosty.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Scaffold ghosty local plugin directories and activation notes. Use when the user asks to create, package, or sketch a plugin for ghosty.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Design, build, configure, or debug Model Context Protocol servers for ghosty, including stdio and HTTP/SSE transports.
Create or improve ghosty skills. Use when the user wants a new skill, wants to update an existing skill, or needs guidance on when a skill should be a skill versus MCP, hooks, tools, or a plugin scaffold.
| name | plugin-creator |
| description | Scaffold ghosty local plugin directories and activation notes. Use when the user asks to create, package, or sketch a plugin for ghosty. |
Use this skill when a user wants a DeepSeek plugin scaffold or a plan for a plugin-style extension.
DeepSeek plugins are currently a documented packaging convention, not an auto-loaded runtime. Be explicit about that. A plugin becomes active only when it is referenced from a skill, hook, MCP server, or future plugin loader.
~/.deepseek/plugins/<plugin-name>/<workspace>/plugins/<plugin-name>/PLUGIN.md with frontmatter:---
name: my-plugin
description: What this plugin packages or enables.
status: draft
---
# My Plugin
What it does, how to enable it, and any scripts or MCP servers it expects.
skills/ for model instructionsscripts/ for helpers invoked by a skill or hookmcp/ for an MCP server package or config notesassets/ for templates, examples, or fixturesPLUGIN.md that says exactly how the user
should turn it on today.PLUGIN.md has
name and description frontmatter.Do not claim that dropping a folder into plugins/ changes runtime behavior by
itself. If the user asks for a live plugin system, propose a loader design
separately and keep the scaffold honest.