Create a modern WordPress block theme.
59
42%
Does it follow best practices?
Impact
81%
1.19xAverage score across 3 eval scenarios
Passed
No known issues
Optimize this skill with Tessl
npx tessl skill review --optimize ./plugins/codex/plugins/wordpress-studio/skills/theme-creator/SKILL.mdUse 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.htmlOnce 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.
1c076c2
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.