一键导入
studio
Use WordPress Studio for local WordPress development, preferring MCP and falling back to the Studio CLI when needed.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use WordPress Studio for local WordPress development, preferring MCP and falling back to the Studio CLI when needed.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Audit a Studio-backed WordPress site for performance, accessibility, and visible frontend quality issues, then recommend or validate improvements.
Create a modern WordPress block theme.
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.
| name | studio |
| description | Use WordPress Studio for local WordPress development, preferring MCP and falling back to the Studio CLI when needed. |
Use this skill whenever the user wants to work with a local WordPress site in WordPress Studio.
This skill is the canonical source for:
Other skills should reference this skill for review and iteration instead of restating those steps.
Prefer WordPress Studio MCP tools over shell commands for WordPress operations.
Use the Studio CLI only when MCP is unavailable, failing, or explicitly required.
Keep this skill minimal. Do not duplicate command syntax or generic WordPress guidance that can be inferred from the tool surface.
Use MCP for:
wp_clivalidate_blockstake_screenshot and inspect_designUse the CLI for:
studio wp actionsUse direct file edits for theme and plugin files when writing code.
studio site listSTUDIO_HOME from the common parent of existing site paths, or default to ~/Studio if no sites exist yet.mcp.json entry for normal usesite_list or site_info when you need to confirm connectivitysite_list or site_info.<site-path> as the root for generated artifacts rather than the agent launch directory.wp_cli, block validation, or audit tools.wp_cli for arbitrary WordPress operations instead of dropping to the shell.studio CLI command that gets the job done.wp_cli content update that contains serialized WordPress block markup, run validate_blocks. Prefer the filePath argument when the content lives in a template, template part, pattern, or other file.validate_blocks issue as a required fix step:core/html policy reports invalid HTML blocks, rewrite those blocks as editable core or plugin blocks before calling validate_blocks againvalidate_blocks applies an auto-fix to a file, do not manually replace the file content; review the returned diff only for class, nesting, or CSS-selector follow-uptake_screenshot to review the result on desktop and mobile when layout or styling matters.inspect_design before editing CSS so the fix targets the element carrying the rendered style.validate_blocks is mandatory after block-content writes or updates.auditing rather than embedding that workflow here.record_workflow_event only for meaningful workflow milestones such as started or completed when a specialist skill asks for it.