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

docs-plugin文档插件

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

445

周安装

18

GitHub Stars

16,227

下载量

140
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/udecode/plate --skill docs-plugin

简介

用于 Plate 编辑器插件的官方文档编写指南。

  • 保持 shadcn-like 直白详尽的写作风格。
  • 采用 headless 方式,不假设用户使用 Plate UI 组件。
  • 适用于 Plate 生态系统插件开发者的文档规范。
  • 强调核心编辑器和插件使用的文档重点。docs-plugin 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Plugin Documentation Guide

General Principles

  1. Writing Style:

- Maintain a "shadcn-like straight to the point (but exhaustive is good) simple english easy to read for average english speakers" writing style. - Adhere to the conciseness, tone, and style of existing key documentation files like index.mdx/index.mdx), installation.mdx/installation.mdx), and especially plate-ui.mdx. When mentioning Plate UI for the first time in a document, ensure it is linked.

  1. Headless Approach:

- Plugin documentation is headless. Do not assume users are using Plate UI files or components directly. - Focus on documenting core editor/plugin usage, APIs, and transforms based only on actual plugin capabilities confirmed from the source code. - When mentioning UI components, refer to them as examples of how a plugin's functionality can be rendered. Link to their Plate UI registry entries or component documentation pages if available (e.g., /docs/components/component-name). - Note for Style Plugins: Some plugins, particularly "Style" plugins (e.g., for line height, font color), primarily function by injecting props into existing elements (like paragraphs or headings) rather than defining entirely new, distinct UI components. Their documentation in "Kit Usage" and "Manual Usage" sections will reflect this emphasis on configuration and prop injection. See documentation in /docs/(guides)/plugin.mdx if needed.

  1. Structure and Formatting:

- Use <Steps> for procedural instructions (e.g., installation, usage steps). - Use ### for sub-headings within <Steps>. - Refer to dnd.mdx/(functionality)/dnd.mdx) as a primary example for structure and formatting. - Employ <API name="ApiName">, <APIOptions>, <APIParameters>, and <APIReturns> for documenting plugin options, API methods, and transforms. Ensure all documented options and behaviors are accurate and sourced from the code. - Important: When updating existing documentation, preserve existing API formatting. Do not change <APIOptions> to <APIParameters> or vice versa if they already exist and are working correctly.

Standard Section Order

Plugin documentation should generally follow this order:

  1. **** (Optional): If a relevant visual demo exists in the project.
  2. ****:

- Features: Bullet points summarizing key capabilities (derived from understanding the plugin).

  1. ## Kit Usage (If applicable and comes first since it's the fastest approach):

- Enclose steps within <Steps>. - ### Installation: - The fastest way to add the... plugin is with the ...Kit, which includes pre-configured ...Plugin along with... and their Plate UI components. - Include <ComponentSource name="relevant-kit-name" />. - Immediately follow with a bullet list of UI components from the kit relevant to the documented plugin, with links: - Example: - SpecificElement: Renders the main element. - SpecificToolbarButton: Provides a toolbar button. - ### Add Kit: - Show how to add the kit to plugins: import {createPlateEditor} from 'platejs/react'; import {RelevantKit} from '@/components/editor/plugins/relevant-kit-name'; const editor = createPlateEditor({plugins: [//...otherPlugins,...RelevantKit,],});

  1. ## Manual Usage:

- Enclose steps within <Steps>. - ### Installation: - The npm install @platejs/package-name command for the core plugin package. - ### Add Plugin (or Add Plugins if documenting multiple plugins in this step): - Show the import statement for the specific plugin(s) being documented. - Provide a basic code snippet demonstrating how to add the plugin to the plugins array within createPlateEditor. import {SpecificPlugin} from '@platejs/specific-package/react'; import {createPlateEditor} from 'platejs/react'; const editor = createPlateEditor({plugins: [//...otherPlugins, SpecificPlugin, // Or SpecificPlugin.configure({}) if options are common at this stage],}); - Note: ParagraphPlugin from platejs/react is included by default and usually doesn't need to be explicitly added unless overriding its component (e.g., ParagraphPlugin.withComponent(CustomParagraph)). - ### Configure Plugin (or Configure Plugins if documenting multiple plugins in this step): For Element Plugins (with components): For Style Plugins (without distinct components): - Detail essential configuration options for the specific plugin using code examples, based on what is available in the plugin's source. - Prioritize withComponent when only assigning a component without other options: import {SpecificPlugin} from '@platejs/specific-package/react'; import {createPlateEditor} from 'platejs/react'; import {SpecificElement} from '@/components/ui/specific-node'; const editor = createPlateEditor({plugins: [//...otherPlugins, SpecificPlugin.withComponent(SpecificElement),],}); - withComponent: Assigns SpecificElement to render the plugin's elements. - Use .configure() when there are additional options beyond the component: import {SpecificPlugin} from '@platejs/specific-package/react'; import {createPlateEditor} from 'platejs/react'; import {SpecificElement} from '@/components/ui/specific-node'; const editor = createPlateEditor({plugins: [//...otherPlugins, SpecificPlugin.configure({node: {component: SpecificElement}, shortcuts: {toggle: 'mod+alt+s'}, //...other actual options from the plugin source}),],}); - node.component: Assigns SpecificElement to render the plugin's elements. - shortcuts.toggle: Defines a keyboard shortcut to toggle the feature. - (Explain other demonstrated options based on their actual function in the plugin) - Focus on configuration options like inject.nodeProps, default values, and target elements: import {SpecificPlugin} from '@platejs/specific-package/react'; import {createPlateEditor} from 'platejs/react'; const editor = createPlateEditor({plugins: [//...otherPlugins, SpecificPlugin.configure({inject: {nodeProps: {defaultNodeValue: 'defaultValue', //...other nodeProps options}, targetPlugins: ['p', 'h1', 'h2'],},}),],}); - inject.nodeProps.defaultNodeValue: Sets the default value for the styling property. - inject.targetPlugins: Specifies which element types receive the styling. - ### Add to Toolbar Buttons (For Element Plugins): Turn Into Toolbar Button: ``` ### Turn Into Toolbar Button You can add these items to the [Turn Into Toolbar Button](/docs/toolbar#turn-into-toolbar-button) to convert blocks into [elements]: `tsx {icon: <SpecificIcon />, keywords: ['keyword1', 'keyword2', 'symbol'], label: 'Element Name', value: KEYS.elementKey,} ` `` **Insert Toolbar Button:** `` ### Insert Toolbar Button You can add these items to the [Insert Toolbar Button](/docs/toolbar#insert-toolbar-button) to insert [element] elements: `tsx {icon: <SpecificIcon />, label: 'Element Name', value: KEYS.elementKey,} ` `` - For element plugins that can be turned into or inserted, add sections showing how to integrate with specialized toolbar buttons: - Only include these sections for element plugins that make sense in these contexts (blocks, lists, etc.) - Use appropriate action verbs: "toggle" for turn-into, "insert" for insert - **### Add Toolbar Button** (If the kit includes a toolbar button): - Include "You can add [*ToolbarButton](https://github.com/docs/components/*-toolbar-button) to your [Toolbar](https://github.com/docs/toolbar) to." - Check registry-kits.ts to see if a *-toolbar-button` is part of the kit's dependencies.

  1. ## Plugins:

- ### PluginName: Document each relevant plugin with a simple description (e.g., "Plugin for H1 heading elements"). - For plugins with significant configuration options, optionally use <API name="PluginName"> and <APIOptions> to detail actual, existing configurable options as found in the source code. - Do not extend this section with invented options if the user didn't ask for it.

  1. ## API (If applicable):

- Document actual, existing editor.api.pluginName.* functions as found in the source code. - Use ### api.<name> for each function. - Do not extend this section if the user didn't ask for it.

  1. ## Transforms (If applicable):

- Document actual, existing editor.tf.pluginName.* functions, describing their precise behavior as observed in the source code. - Use ### tf.<name> for each function. - Do not extend this section if the user didn't ask for it.

Linking and Redundancy

  • Prioritize linking to individual, specific documentation pages (e.g., for a sub-plugin or a related concept) to avoid content duplication. Instead of a generic "See plugin guide", try to smartly link a relevant word or phrase within a sentence to the target page.
  • All docs: Get Started: Installation Details: Guides: Plugins (Overview & Individual - see apps/www/src/config/docs-plugins.ts for full list): Components: Kits: API Reference:

- /docs/index.mdx): Introduction to Plate - /docs/installation/installation.mdx): Getting Started / Installation Overview - /docs/installation/plate-ui: Plate UI Installation - /docs/installation/next: Next.js Setup - /docs/installation/rsc: React Server Components (RSC) - /docs/installation/node: Node.js Usage - /docs/installation/mcp: MCP Server - /docs/plugin: Plugin System Overview - /docs/plugin-methods: Plugin Methods - /docs/plugin-shortcuts: Plugin Shortcuts - /docs/plugin-context: Plugin Context - /docs/plugin-components: Plugin Components Guide - /docs/editor: Editor Configuration - /docs/editor-methods: Editor Methods - /docs/controlled: Controlled Editor Value - /docs/static: Static Rendering - /docs/html/(serializing)/html.mdx): HTML Serialization (Guide) - /docs/markdown/(serializing)/markdown.mdx): Markdown Serialization (Guide) - /docs/form: Form Integration - /docs/typescript: TypeScript Usage - /docs/debugging: Debugging - /docs/troubleshooting: Troubleshooting - /docs/plugins: Plugins Overview (links to specific plugin docs) - /docs/components: UI Components Overview (Toolbar, Nodes, etc.) - Links to individual component pages like /docs/components/blockquote-node, etc. - Plugin Kits: All plugin kits - Links to individual kit pages like /docs/kits/basic-blocks-kit, etc. - /docs/api: API Overview - *Core:* /docs/api/core/plate-editor, /docs/api/core/plate-plugin, /docs/api/core/plate-components, /docs/api/core/plate-store, /docs/api/core/plate-controller - *Slate Extensions:* /docs/api/slate (and its sub-pages like /docs/api/slate/editor-api - *Utilities:* /docs/api/utils, /docs/api/cn, /docs/api/floating, /docs/api/react-utils, /docs/api/resizable

By following this guide, plugin documentation will be consistent, informative, and align with the project's overall documentation strategy.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.89%
按下载量换算50

Claude

29.39%
按下载量换算41

Cursor

20.65%
按下载量换算29

Gemini CLI

9.38%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills