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

wordpress-plugin-to-emdashWordPress plugin TO emdash 命令行

Agent Skill

wordpress-plugin-to-emdash 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

306

周安装

13

GitHub Stars

10,065

下载量

107
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/emdash-cms/emdash --skill wordpress-plugin-to-emdash

简介

WordPress plugin TO emdash 命令行将普通连字符转换为 en/em dash 符号。

  • 适用于排版校对、出版物导出和 PDF 生成等需要精确标点的场景。
  • 支持批量替换和正则表达式匹配,保留原有 HTML 结构不变。
  • 转换结果需经人工复核,避免误改数字范围或 URL 地址。
  • 建议集成到 CI/CD 流程,作为文本预处理步骤之一。

SKILL.md

Porting WordPress Plugins to EmDash

This skill maps WordPress concepts to their EmDash equivalents for plugin porting. For general plugin authoring details (plugin structure, definePlugin(), hooks, storage, admin UI, etc.), use the creating-plugins skill.

Migration Approach

  1. Understand the plugin — What does it do, not how
  2. Identify concepts — Content types, admin pages, hooks, shortcodes
  3. Map to EmDash — Use the tables below
  4. Implement in TypeScript — Clean room, not line-by-line port. Use the creating-plugins skill for implementation details.
  5. Test behaviour — Same result, different implementation

Concept Mapping

Content & Data

WordPressEmDashNotes
register_post_type()SchemaRegistry.createCollection()Via Admin API or seed file
register_taxonomy()_emdash_taxonomy_defs tableHierarchical or flat, attached to collections
register_meta() / ACFCollection fields via SchemaRegistryAll become typed schema fields
get_post_meta()entry.data.fieldNameDirect typed access
get_option()getSiteSetting() / ctx.kvSite settings or plugin-namespaced KV
WP_QuerygetEmDashCollection()Runtime queries with filters
get_post($id)getEmDashEntry(collection, slug)Returns entry or null
wp_insert_post()POST /_emdash/api/content/{type}REST API
wp_update_post()PUT /_emdash/api/content/{type}/{id}REST API
wp_delete_post()DELETE /_emdash/api/content/{type}/{id}Soft delete
Custom tablesPlugin storage collectionsctx.storage.collectionName.put/get/query

Site Configuration

WordPressEmDashNotes
get_bloginfo('name')getSiteSetting('title')From options table with site: prefix
get_option('blogdesc')getSiteSetting('tagline')Site settings API
Theme CustomizerSite Settings admin page/_emdash/admin/settings
site_icongetSiteSetting('favicon')Media reference
custom_logogetSiteSetting('logo')Media reference

Navigation Menus

WordPressEmDashNotes
register_nav_menu()Create menu via admin or seed_emdash_menus table
wp_nav_menu()getMenu(name)Returns {items: MenuItem[]}
wp_nav_menu_item_emdash_menu_items tableType: custom, page, post, taxonomy
_menu_item_object_idreference_id + reference_collectionLinks to content entries
Menu locationsQuery by name in templatesNo locations concept — direct query

Taxonomies

WordPressEmDashNotes
register_taxonomy()_emdash_taxonomy_defs tableDefine via admin, seed, or API
get_terms()getTaxonomyTerms(name)Returns tree for hierarchical
get_the_terms()getEntryTerms(collection, id, name)Terms for specific entry
wp_set_post_terms()TaxonomyRepository.setTermsForEntry()Replace terms for entry
Hierarchical taxonomyhierarchical: true in definitionCategories-style
Flat taxonomyhierarchical: falseTags-style

Widgets & Sidebars

WordPressEmDashNotes
register_sidebar()_emdash_widget_areas tableCreate via admin or seed
dynamic_sidebar()getWidgetArea(name)Returns {widgets: Widget[]}
WP_Widget classWidget types: content, menu, componentSimplified — 3 types only
Text widgettype: 'content' + Portable TextRich text widget
Nav Menu widgettype: 'menu' + menuNameReferences a menu
Custom widgetstype: 'component' + componentIdPlugin-registered components

Admin UI

WordPressEmDashNotes
add_menu_page()admin.pages in definePlugin()Plugin config
add_submenu_page()Nested admin pagesParent determines hierarchy
add_settings_section()admin.settingsSchemaAuto-generated settings page
add_meta_box()Field groups in collection schemaUI config in schema
wp_enqueue_script()ESM imports in admin componentsReact (trusted) or Block Kit (sandboxed)
Admin noticesToast notificationsVia admin UI framework

Hooks

WordPressEmDashNotes
add_action('init')plugin:install hookRuns once on first install
add_action('save_post')content:afterSave hookFilter by event.collection
add_action('before_delete_post')content:beforeDelete hookReturn false to prevent
add_action('wp_head')page:metadata / page:fragments hookMetadata is sandbox-safe; scripts need trusted plugin
add_action('rest_api_init')definePlugin({routes})Trusted only
add_filter('the_content')Portable Text componentsCustom block renderers
add_filter('the_title')Template logicHandle in Astro component

Frontend Output

WordPressEmDashNotes
add_shortcode()Portable Text custom blockContent → block. Template → component. Trusted only.
register_block_type()PT block + componentsEntryBlock data → Astro component props. Trusted only.
Template tagsAstro expressionsget_the_title(){post.data.title}
WidgetsWidget area + componentsQuery with getWidgetArea()

Plugin Storage

WordPressEmDashNotes
get_option('plugin_*')ctx.kv.get(key)Namespaced to plugin automatically
update_option()ctx.kv.set(key, value)Scoped KV storage
delete_option()ctx.kv.delete(key)Delete single key
Custom tablesctx.storage.collectionDocument collections with indexes
TransientsPlugin KVNo TTL yet

Porting-Specific Patterns

These patterns cover WordPress-specific concepts that don't have a direct 1:1 mapping. For general plugin patterns (defining hooks, storage, routes, admin UI), see the creating-plugins skill.

Shortcodes → Portable Text Blocks

WordPress shortcodes ([youtube id="xxx"]) become Portable Text custom block types. The block data replaces shortcode attributes, and an Astro component replaces the shortcode render function. This is a trusted-only feature.

// WordPress
add_shortcode('youtube', function($atts) {
    return '<iframe src="https://youtube.com/embed/' . $atts['id'] . '"></iframe>';
});

// EmDash — block type declaration in definePlugin()
admin: {
	portableTextBlocks: [{
		type: "youtube",
		label: "YouTube Video",
		icon: "video",
		fields: [
			{ type: "text_input", action_id: "id", label: "YouTube URL" },
			{ type: "text_input", action_id: "title", label: "Title" },
		],
	}],
}

// EmDash — Astro component for rendering
// src/astro/YouTube.astro
const { id, title } = Astro.props.node;
const videoId = id?.match(/(?:v=|youtu\.be\/)([^&]+)/)?.[1] ?? id;
// <iframe src={`https://youtube-nocookie.com/embed/${videoId}`} ... />

Options API → Plugin KV

WordPress's get_option/update_option maps to the plugin KV store. The key difference: WordPress options are global, EmDash KV is automatically scoped to the plugin.

// WordPress
$count = get_option("myplugin_post_count", 0);
update_option("myplugin_post_count", $count + 1);
delete_option("myplugin_temp_data");

// EmDash — no prefix needed, automatically scoped
const count = (await ctx.kv.get<number>("post-count")) ?? 0;
await ctx.kv.set("post-count", count + 1);
await ctx.kv.delete("temp-data");

Custom Database Tables → Storage Collections

WordPress plugins that create custom tables with $wpdb->query("CREATE TABLE...") should use EmDash's storage collections instead. No migrations needed — declare the schema in definePlugin() and it's automatically provisioned.

// WordPress
$wpdb->insert($table, ['form_id' => $id, 'data' => json_encode($data), 'created_at' => current_time('mysql')]);
$results = $wpdb->get_results("SELECT * FROM $table WHERE form_id = '$id' ORDER BY created_at DESC LIMIT 50");

// EmDash — declared in definePlugin()
storage: {
	submissions: {
		indexes: ["formId", "createdAt", ["formId", "createdAt"]],
	},
},

// In a hook or route handler
await ctx.storage.submissions!.put(entryId, { formId, data, createdAt: new Date().toISOString() });
const result = await ctx.storage.submissions!.query({
	where: { formId },
	orderBy: { createdAt: "desc" },
	limit: 50,
});

Seeding Data (replaces starter content, theme setup)

WordPress plugins that call wp_insert_term(), register_nav_menu(), or insert default content on activation should use a seed file:

{
	"version": "1",
	"settings": { "title": "My Site", "tagline": "Welcome" },
	"taxonomies": [
		{
			"name": "category",
			"label": "Categories",
			"hierarchical": true,
			"collections": ["posts"],
			"terms": [
				{ "slug": "news", "label": "News" },
				{ "slug": "tutorials", "label": "Tutorials" }
			]
		}
	],
	"menus": [
		{
			"name": "primary",
			"label": "Primary Navigation",
			"items": [
				{ "type": "custom", "label": "Home", "url": "/" },
				{ "type": "page", "ref": "about", "collection": "pages" }
			]
		}
	],
	"redirects": [
		{ "source": "/?p=123", "destination": "/about" },
		{ "source": "/old-contact", "destination": "/contact", "type": 301 }
	]
}
npx emdash seed .emdash/seed.json

Use redirects for legacy WordPress URLs that still receive traffic after migration.

Querying Content (replaces WP_Query)

// WordPress
$query = new WP_Query(['post_type' => 'post', 'category_name' => 'tech', 'posts_per_page' => 10]);

// EmDash — in Astro component frontmatter
import { getEmDashCollection, getEntryTerms } from "emdash";
const { entries } = await getEmDashCollection("posts", {
	where: { category: "technology" },
	limit: 10,
});

Menus (replaces wp_nav_menu)

// WordPress
wp_nav_menu(['theme_location' => 'primary']);

// EmDash — in Astro component
import { getMenu } from "emdash";
const nav = await getMenu("primary");
// nav.items[].label, nav.items[].url, nav.items[].children

Widget Areas (replaces dynamic_sidebar)

// WordPress
dynamic_sidebar("sidebar-1");

// EmDash — in Astro component
import { getWidgetArea } from "emdash";
const sidebar = await getWidgetArea("sidebar");
// sidebar.widgets[].type: "content" | "menu" | "component"

Red Flags (Need Human Decision)

Flag these for review — they may need architectural decisions:

  1. Deep WP integration — Hooks into WP core features not in EmDash
  2. Theme dependencies — Assumes specific theme structure
  3. Multisite features — Not supported
  4. Complex WP_Query — Meta queries may need custom implementation
  5. Direct SQL — Schema differs, use Kysely or plugin storage
  6. Session/transient abuse — Needs proper caching layer
  7. User capability checks — Review role mapping (future)
  8. ob_start() buffering — PHP pattern, rethink for streaming
  9. Cron jobswp_schedule_event() has no direct equivalent; needs platform cron

Output Format

When porting a plugin, provide:

  1. Analysis — What the WP plugin does (concepts, not code)
  2. Concept mapping — Which WP concepts map to which EmDash features
  3. Plugin codesrc/descriptor.ts and src/index.ts (use creating-plugins skill for structure)
  4. Seed data — If plugin needs default taxonomies/menus/widgets
  5. Astro components — For frontend output
  6. Flags — Anything needing human decision

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.4%
按下载量换算39

Claude

27.56%
按下载量换算29

Cursor

18.61%
按下载量换算20

Gemini CLI

10.05%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills