readme
allowed-tools: Read, Glob
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
allowed-tools: Read, Glob
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create a new Gutenberg block with scaffolding
Use when working with the WordPress Abilities API (wp_register_ability, wp_register_ability_category, /wp-json/wp-abilities/v1/*, @wordpress/abilities) including defining abilities, categories, meta, REST exposure, and permissions checks for clients.
Prepare plugin for WordPress.org deployment
Use when generating responses containing factual claims, API details, configuration specifics, version compatibility, or recalled knowledge that could be hallucinated - especially when not working directly from source code or command output
Use when executing implementation plans with independent tasks in the current session
Create a block extension to enhance core WordPress blocks
| name | README |
| description | null |
| allowed-tools | Read, Glob |
/add-block → develop → /refactor (if > 300 lines) → /test → commit
Checklist:
useBlockProps() and useInnerBlocksProps()ColorGradientSettingsDropdownsupports in block.json__() for translation/add-extension → develop → /review-extension → /test → commit
Checklist:
/lint → /test → /security-audit → /plugin-review → /i18n-update → /deploy
Checklist:
/check-compat → /block-supports-audit → /refactor (identified blocks)
Checklist:
→ /quick-fix (select option 1)
→ /quick-fix (select option 2)
→ /quick-fix (select option 3)
→ /quick-fix (select option 4)
→ /quick-fix (select option 5)
→ /color-controls-migrate
→ /i18n-update
→ /refactor or /block-supports-audit
→ /deploy
→ /security-audit
→ /plugin-review
/buildBuild the plugin for development or production.
Development mode:
npm run start
Production mode:
npm run build
What it does:
/testRun all plugin tests.
Run tests:
npm test
Watch mode:
npm run test:watch
With coverage:
npm run test:coverage
/lintLint and auto-fix code.
All linters:
npm run lint:js
npm run lint:css
npm run lint:php
Auto-fix:
npm run lint:js -- --fix
npm run lint:css -- --fix
/add-blockCreate a new Gutenberg block with complete scaffolding.
Creates:
Follows:
/add-extensionCreate an extension to enhance WordPress core blocks.
Use when:
Avoid when:
/add-variationCreate a block variation with preset configurations.
Examples:
Uses:
/refactorRefactor code following WordPress and project best practices.
Handles:
<InnerBlocks /> usageOutput:
/block-supports-auditFind opportunities to replace custom controls with WordPress Block Supports.
Identifies:
supports.colorsupports.typographysupports.spacingsupports.__experimentalBorderBenefits:
/color-controls-migrateMigrate from deprecated PanelColorSettings to modern ColorGradientSettingsDropdown.
Why:
Migration:
/plugin-reviewComprehensive plugin audit covering all aspects.
Reviews:
Output:
/security-auditSecurity-focused audit.
Checks:
Output:
/check-compatCheck compatibility with WordPress and Gutenberg versions.
Verifies:
Output:
/review-prReview pull request against DesignSetGo plugin standards.
Checks:
Process:
Output:
Use before:
/deployPrepare plugin for WordPress.org deployment.
Process:
Output:
/i18n-updateUpdate translation files.
Workflow:
Languages:
/plugin-infoDisplay plugin architecture and structure.
Shows:
Use watch mode during development:
npm run start
Lint on save:
Configure your editor to auto-fix on save:
Before every commit:
npm run lint:js -- --fix && npm run lint:css -- --fix && npm test
Use pre-commit hooks:
Add to .git/hooks/pre-commit:
#!/bin/sh
npm run lint:js && npm run lint:css && npm test
Check build output:
ls -lh build/
cat build/style-index.css | grep "your-class"
Check for errors:
npx wp-env logsCommon issues:
<InnerBlocks /> instead of useInnerBlocksPropsWhen adding new commands:
Add frontmatter:
---
description: Brief description of command
---
Follow structure:
Update this README:
Documentation:
Quick fixes:
/quick-fix - Common problemsnpx wp-env logs - PHP errorsResources:
Last Updated: 2025-11-20 Plugin Version: 1.0.0 Total Commands: 18