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

wp-theme-dev可湿性粉剂主题开发

Agent Skill

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

总安装

396

周安装

16

GitHub Stars

53

下载量

124
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:wp-theme-dev(可湿性粉剂主题开发)
来源仓库:https://github.com/wpacademy/wordpress-dev-skills
仓库路径:skills/wp-theme-dev
安装命令:
npx skills add https://github.com/wpacademy/wordpress-dev-skills --skill wp-theme-dev
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/wpacademy/wordpress-dev-skills --skill wp-theme-dev

简介

该技能用于处理 WordPress 主题开发相关的 GitHub 协作信息。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中围绕代码变更与 Issue 管理的场景。
  • 支持 Pull Request 状态跟踪与协作事项整理。
  • 通过 GitHub 仓库安装,使用前需确认是否触发文件读写或命令执行。
  • 建议参考原始 README 了解具体功能与限制条件。

SKILL.md

WordPress Theme Development

Overview

Create production-ready WordPress themes that follow official WordPress coding standards, the WordPress.org theme review requirements, WCAG 2.1 Level AA accessibility standards, and modern web development best practices. Every theme produced by this skill is accessible, secure, translatable, performant, and ready for WordPress.org submission.

Quick Start Workflow

  1. Read references — Before writing any code, read the relevant reference files:

- references/block-theme-architecture.md — Block theme structure, theme.json, templates, patterns - references/classic-theme-architecture.md — Classic theme structure, template hierarchy, The Loop - references/accessibility.md — WCAG 2.1 AA requirements, WordPress accessibility-ready standards - references/review-requirements.md — WordPress.org theme review checklist (14 categories)

  1. Determine theme type — Ask if the user wants a block theme (recommended), classic theme, or child theme
  2. Gather requirements — Design goals, color palette, typography, features needed
  3. Scaffold — Generate the directory structure, required files, and theme.json
  4. Build templates & patterns — Create each template/pattern as a separate file
  5. Generate readme.txt — Always include a WordPress.org-compliant readme.txt
  6. Deliver — Ask user if they want files for download or a custom path

Core Principles — ALWAYS Follow These

1. Block Themes Are the Default

Unless the user explicitly asks for a classic theme, always build a block theme (Full Site Editing). Block themes:

  • Use HTML template files (not PHP template files)
  • Configure design through theme.json (not PHP/CSS)
  • Support the Site Editor for full visual editing
  • Use block patterns for reusable layouts
  • Use template parts for headers, footers, sidebars

Only build a classic theme when the user specifically requests it or needs features only available in classic themes.

2. Clean functions.php

The functions.php file should ONLY contain:

  • Theme setup (after_setup_theme hook) — declaring support for theme features
  • Asset enqueueing (wp_enqueue_scripts hook)
  • Registering block patterns, pattern categories, and block styles
  • Registering navigation menus (classic themes)
  • Registering widget areas (classic themes)
  • Loading additional PHP files from inc/ directory

NEVER put lengthy logic, output HTML, or complex functionality directly in functions.php. Split additional functionality into files in the inc/ directory.

3. Accessibility — Non-Negotiable

Every theme MUST meet WCAG 2.1 Level AA and WordPress accessibility requirements. This is not optional.

Read references/accessibility.md for complete requirements. Key mandatory items:

Skip links: First focusable element, visible on focus, jumps to main content.

Keyboard navigation: All interactive elements reachable and operable via keyboard. Visible focus indicators on all focusable elements. Focus order follows logical reading order.

Semantic HTML: Use proper HTML5 landmark elements (<header>, <main>, <nav>, <aside>, <footer>). Use ARIA landmark roles as reinforcement. Proper heading hierarchy (one H1 per page, no skipped levels).

Color contrast: All text meets 4.5:1 ratio against background (3:1 for large text 18px+ bold or 24px+ regular). UI components and focus indicators meet 3:1 ratio.

Content links: Links within body content MUST be underlined. Bold/italic/color-only is not acceptable.

Forms: All form inputs must have explicit <label> elements. No placeholder-only labels. Error states must be perceivable by screen readers.

Images: All <img> tags must have meaningful alt attributes. Decorative images use alt="".

Screen reader text: Use .screen-reader-text class for visually hidden but accessible text. Apply to "Read more" links, icon-only buttons, and repetitive link text.

Repetitive link text: "Read more" links must include the post title (visually hidden is OK).

Media: Embedded media must not auto-play. Provide controls for all media.

4. Security

  • Escape ALL output: esc_html(), esc_attr(), esc_url(), wp_kses_post()
  • Sanitize ALL input: sanitize_text_field(), absint(), etc.
  • Use nonces for any form submissions
  • Validate and check capabilities before privileged operations
  • Never use eval(), base64_decode() on user data, or direct $_GET/$_POST without sanitization

5. WordPress Coding Standards

  • Prefix ALL functions, classes, hooks, handles with a unique theme prefix (minimum 4 characters)
  • All user-facing strings must be translatable: __(), _e(), esc_html__(), esc_html_e(), etc.
  • Text domain must match the theme slug
  • Use wp_enqueue_script() / wp_enqueue_style() — never hardcode <script> or <link> tags
  • Use WordPress bundled libraries (jQuery, etc.) — never bundle your own copies
  • Include original source when using minified files
  • No PHP errors, warnings, or notices with WP_DEBUG enabled
  • No deprecated functions or constants

6. WordPress.org Theme Review Compliance

Every theme MUST comply with all 14 review categories. Read references/review-requirements.md.

Key rules:

  • GPLv2 or later license for ALL code, images, fonts, and assets
  • Include copyright and license for ALL bundled resources in readme.txt
  • No tracking/remote resources without explicit user consent (Google Fonts exception)
  • No plugin territory functionality (CPTs, shortcodes, SEO, analytics, contact forms)
  • No admin dashboard hijacking; notices must be dismissible
  • No redirect on theme activation
  • Do not remove/hide the admin bar
  • Theme names must not use "WordPress", "Theme", or "Twenty*"
  • Screenshot must represent actual theme output, not be an advertisement
  • Complete readme.txt with all required headers

7. Modern CSS & Performance

  • Use CSS custom properties (variables) for theming — align with theme.json presets
  • Use modern layout: CSS Grid and Flexbox (no floats for layout)
  • Use clamp() for fluid responsive typography and spacing
  • Use logical properties (margin-inline, padding-block) for RTL support
  • Mobile-first responsive design with min-width media queries
  • Minimize render-blocking resources
  • Use loading="lazy" on images and iframes below the fold
  • Use font-display: swap for custom fonts
  • Prefer system font stacks or locally hosted fonts over Google Fonts for privacy/performance

Theme Type Reference

User WantsTheme TypeKey Reference
Block theme / FSE themeBlock themereferences/block-theme-architecture.md
Classic PHP themeClassic themereferences/classic-theme-architecture.md
Modify existing themeChild themeBoth references depending on parent type
Hybrid approachClassic + block featuresBoth references

Naming Conventions

Derive all names from the theme name the user provides:

| Element | Convention | Example (theme: "Starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter Blue starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter starter"starter starter --> Let me fix the table. |

ElementConventionExample (theme: "Starter Blue")
Theme sluglowercase-hyphenatedstarter-blue
Text domainsame as slugstarter-blue
Function prefixlowercase underscore (4+ chars)stbl_
Constant prefixUPPER_SNAKESTBL_
Class prefixUpper_SnakeStarter_Blue_
Handle namesslug prefixstarter-blue-style
Pattern categoryslug prefixstarter-blue
Block style namesslug prefixstarter-blue/card-shadow

Choose a short prefix (4+ characters) derived from the theme name.

Delivery

After building the theme:

  1. Ask the user where they want the files:

- Download: Copy to /mnt/user-data/outputs/{theme-slug}/ and present as downloadable - Custom path: Write to the path the user specifies

  1. Always include readme.txt and style.css with all required headers
  2. Provide a brief summary of generated files
  3. If using a build process (block theme with custom blocks), note npm install && npm run build is needed

Checklist Before Delivery

  • style.css has ALL required headers (Theme Name, Author, Version, License, etc.)
  • readme.txt is present, complete, and includes resource credits
  • ALL output is escaped (esc_html, esc_attr, esc_url, wp_kses_post)
  • ALL input is sanitized
  • ALL strings are translatable with correct text domain
  • ALL functions/classes/handles are prefixed (4+ characters)
  • Skip link is present, first focusable element, visible on focus
  • Keyboard navigation works for all interactive elements
  • Visible focus indicators on all focusable elements
  • Proper heading hierarchy (one H1, no skipped levels)
  • Content links are underlined
  • Color contrast meets WCAG 2.1 AA (4.5:1 text, 3:1 large text/UI)
  • All images have appropriate alt attributes
  • ARIA landmarks are present and unique labels on duplicates
  • "Read more" links include post title (screen-reader-text)
  • Forms have explicit <label> elements
  • No PHP errors/warnings/notices with WP_DEBUG
  • No deprecated functions
  • No bundled WP default libraries
  • No plugin territory functionality
  • No remote resources without consent
  • No admin redirect on activation
  • Assets properly enqueued (not hardcoded)
  • Responsive design works at all breakpoints
  • RTL support via logical properties or RTL stylesheet
  • License is GPLv2 or later
  • Screenshot is 1200×900, represents actual theme output

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

33.39%
按下载量换算41

Codex

32.44%
按下载量换算40

Cursor

20.7%
按下载量换算26

Gemini CLI

9.28%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills