Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

boilerplate-update样板更新

Agent Skill

boilerplate-update 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

297

周安装

12

GitHub Stars

9

下载量

93
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/juvojustin/wordpress-plugin-boilerplate --skill boilerplate-update

简介

boilerplate-update 用于更新 WordPress 插件样板代码至最新版本,包含 Loader.php 和主类重构等变更。

  • 它会同步 QA 配置文件和 .opencode 指令,但不自动替换核心功能模块。
  • 涉及重大结构调整时会请求用户确认,避免意外破坏现有逻辑。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Boilerplate Update Skill

Update WordPress plugins to the latest plugin-boilerplate features.

User Confirmation Rules

ASK for confirmation before:

  • Replacing or significantly restructuring files (Loader.php, main plugin class)
  • Changing build tools or asset pipeline
  • Modifying CI/CD workflows
  • Adding new architectural patterns (Abilities API, Blocks)
  • Deleting resources belonging to plugin features

Proceed without confirmation for:

  • Updating dependency versions
  • Adding/renaming scripts with equivalent functionality
  • Syncing QA config files
  • Copying.opencode commands and.agents/skills

Identity Replacement Script

Use scripts/boilerplate-replace.php (bundled with this skill) for deterministic placeholder replacement. This avoids manual AI search-and-replace across copied upstream files.

Determine the target plugin identity

Before running the script, read these sources from the target plugin to determine the three required parameters:

  • plugin-namePlugin Name: header in the main plugin PHP file (the root .php file containing @wordpress-plugin headers)
  • plugin-text-domainText Domain: header in the same file
  • plugin-namespace — the PSR-4 namespace mapped to src/ in composer.json (autoload.psr-4), or the namespace declaration in src/*.php files

Apply replacements on the cloned boilerplate

Run the script against the cloned boilerplate directory so every file in the reference copy already carries the target plugin's identity before you compare or copy anything:

php tmp/boilerplate-ref/.agents/skills/boilerplate-update/scripts/boilerplate-replace.php \
  --path tmp/boilerplate-ref \
  --plugin-name "My Awesome Plugin" \
  --plugin-namespace "My_Awesome_Plugin" \
  --plugin-text-domain "my-awesome-plugin" \
  --cleanup-setup

This does three things in one pass:

  1. Replaces all boilerplate placeholders (demo-plugin, Demo_Plugin, etc.)
  2. Strips all BOILERPLATE-DOCS marker sections
  3. Removes setup-only artifacts (setup.php, src/Cli/Setup.php, composer autoload/hook entries)

After this step every diff between tmp/boilerplate-ref/ and the target plugin shows only real upstream changes -- no placeholder noise and no setup-only files.

Rename an already-customised plugin

The script also supports renaming a plugin that has already been set up (i.e. the boilerplate defaults have already been replaced). Pass the current identity as --source-plugin-* options and the desired new identity as the regular --plugin-* options:

php boilerplate-replace.php \
  --path /path/to/plugin \
  --source-plugin-name "My Awesome Plugin" \
  --source-plugin-namespace "My_Awesome_Plugin" \
  --source-plugin-text-domain "my-awesome-plugin" \
  --plugin-name "Better Plugin" \
  --plugin-namespace "Better_Plugin" \
  --plugin-text-domain "better-plugin"

When --source-plugin-* options are omitted, the script falls back to the boilerplate defaults (Demo Plugin / Demo_Plugin / demo-plugin), which is the correct behaviour for a fresh clone.

Workflow

  1. Clone fresh boilerplate for comparison: git clone --depth 1 https://github.com/JUVOJustin/wordpress-plugin-boilerplate.git./tmp/boilerplate-ref
  2. Determine target plugin identity (see above).
  3. Run the replacement script on tmp/boilerplate-ref with --cleanup-setup (see above).
  4. Use one subtask/subagent per key area. Delegate comparison using diff against tmp/boilerplate-ref/.
  5. Present findings to user, categorized by confirmation requirement.
  6. Apply changes incrementally.
  7. Cleanup: rm -rf tmp/boilerplate-ref

Documentation Reference

The boilerplate includes detailed docs at tmp/boilerplate-ref/docs/:

FileCovers
abilities.mdxAbilities API interfaces, category/ability creation, Loader registration
bundeling.mdxwp-scripts bundling, entry points, asset enqueueing, localization
i18n.mdxTranslation workflow, extract/compile scripts, JSON translations, caveats
create-blocks.mdxBlock scaffolding, auto-registration via manifest, editor style sharing
wp-env.mdxDocker-based dev environment, script structure, CI/CD usage
acf-json-sync.mdxACF field group JSON storage patterns
work-with-ai.mdxAI integration: commands, skills, AGENTS.md, WordPress agent skills
documentation.mdxDocumentation structure, front matter metadata, heading rules

Read these docs for implementation details. This skill only provides high-level guidance.

Key Areas to Compare

1. PHP (composer.json & QA)

Compare: diff composer.json tmp/boilerplate-ref/composer.json

See docs for details: i18n.mdx, bundeling.mdx

Key items:

  • wp-cli/i18n-command - Translation extraction/compilation
  • Scripts: i18n:extract, i18n:compile, phpstan, phpcs, phpcbf
  • Strauss config in extra.strauss for namespace prefixing
  • QA config files: phpcs.xml, phpstan.neon

2. JS & Bundling (package.json, webpack.config.js)

Compare:

  • diff package.json tmp/boilerplate-ref/package.json
  • diff webpack.config.js tmp/boilerplate-ref/webpack.config.js

See docs for details: bundeling.mdx, wp-env.mdx, create-blocks.mdx

Key items:

  • @wordpress/scripts - Bundling, linting, formatting
  • @wordpress/env - Containerized WordPress for dev/CI
  • Scripts: start, build (with --blocks-manifest), lint:*, format, create-block, env:*
  • QA config: .eslintrc

3. GitHub Actions (.github/workflows/)

Compare: diff -r.github/workflows tmp/boilerplate-ref/.github/workflows

  • setup.yml - Reusable workflow with dependency caching
  • test-analyse.yml - PHPStan, PHPCS, JS linting on push
  • deploy.yml - Release automation, translation compilation via wp-env

4. Loader.php

Compare: diff src/Loader.php tmp/boilerplate-ref/src/Loader.php

New methods:

  • add_shortcode($tag, $component, $callback)
  • add_cli($name, $instance, $args)
  • add_ability($ability_class) - Categories auto-register

5. Main Plugin Class

Compare: diff src/*.php tmp/boilerplate-ref/src/Demo_Plugin.php

New patterns:

  • enqueue_entrypoint($entry) - See tmp/boilerplate-ref/docs/bundeling.mdx
  • register_blocks() - See tmp/boilerplate-ref/docs/create-blocks.mdx

6. i18n Workflow

Scripts: i18n:extract (creates.pot, updates.po) and i18n:compile (generates.mo,.json,.php)

See tmp/boilerplate-ref/docs/i18n.mdx for workflow, caveats, and AI command.

7. Abilities API (WordPress 6.9+)

See tmp/boilerplate-ref/docs/abilities.mdx for interface reference and examples.

Key pattern: $this->loader->add_ability(Abilities\My_Ability::class)

8. Agent Configuration

Compare:

  • diff -r.opencode/command tmp/boilerplate-ref/.opencode/command
  • diff -r.agents/skills tmp/boilerplate-ref/.agents/skills

See tmp/boilerplate-ref/docs/work-with-ai.mdx for AI integration details.

Sync strategy:

  • Add new items from upstream
  • Update existing (ask user if diff is significant)
  • Ask user before removing local-only items
  • Adapt text domain and paths after copying
  • Remove redundant skills/commands if upstream now includes them or they are possibly renamed

9. File Control files

Compare:

  • diff.distignore tmp/boilerplate-ref/.distignore
  • diff.gitignore tmp/boilerplate-ref/.gitignore

Verification

  1. Ran composer install && npm install after changes
  2. Ran npm run build after changes
  3. Ran composer phpstan && composer phpcs after changes
  4. Ran npm run lint:js && npm run lint:style after changes
  5. Test plugin functionality

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.73%
按下载量换算35

Claude

28.01%
按下载量换算26

Cursor

16.72%
按下载量换算16

Gemini CLI

9.47%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills