원클릭으로
theme-creator
Create a modern WordPress block theme.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a modern WordPress block theme.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | theme-creator |
| description | Create a modern WordPress block theme. |
Use this skill when the user wants a new WordPress theme or a substantial visual overhaul for a local Studio site.
This skill owns:
Use studio for the review loop after making changes. Use auditing when the user wants performance, accessibility, or broader frontend QA after the theme work.
theme.json, template parts, templates, core blocks.At minimum:
<theme-slug>/
├── theme.json
├── style.css
├── functions.php
├── templates/
│ ├── index.html
│ └── page.html
└── parts/
├── header.html
└── footer.html
Once you are committed to the theme implementation workflow and before the main file-writing phase, call record_workflow_event with workflow: "theme-build" and stage: "started".
core/html blocks for layout sections or normal text content.style.css.style.css on the front end. You must explicitly enqueue it in functions.php with wp_enqueue_style( '<slug>-style', get_stylesheet_uri() ) on the wp_enqueue_scripts hook.prefers-reduced-motion handling when using animations.core/group block use {"align":"full","layout":{"type":"default"}}.core/group with align:"full" and layout.type:"default"core/group with align:"wide"core/columns inside that shell should also use align:"wide" when the section is meant to feel expansivetheme.json layout settings aligned with the design, including sensible contentSize and wideSize values.theme.json before adding custom breakout CSS.After writing or updating block theme files:
studio block validation loop on every template or template-part file containing serialized block markupwp_cliwp_clistudiorecord_workflow_event with workflow: "theme-build" and stage: "completed"If the user asks whether the result is fast, accessible, or polished beyond the normal review loop, use auditing.
Use WordPress Studio for local WordPress development, preferring MCP and falling back to the Studio CLI when needed.
Audit a Studio-backed WordPress site for performance, accessibility, and visible frontend quality issues, then recommend or validate improvements.
Create, edit, build, and review a custom WordPress Gutenberg block plugin inside a Studio-backed site.
Generate three parallel design preview options for a Studio-backed site and collect the user's preferred direction before theme implementation.
Create or update a custom WordPress plugin for site functionality that should not live in a theme or a block. Use when the user needs reusable behavior, admin/settings UI, hooks, REST endpoints, scheduled tasks, integrations, or server-side logic for a Studio-backed site.
Create a WordPress site from a rough idea using Studio and shared WordPress skills.