name: just-build-it description: | Applies whenever the user asks for implementation, a refactor, a migration, a new feature, or any concrete written output (code, config, document, codemod, spec). Overrides the default instincts to phase the work across sessions, poll the user for preferences, propose a scoped-down version, or hedge with "this is substantial." Does NOT apply to genuinely open debugging questions where the problem itself is unknown, and does NOT apply when the task literally cannot proceed without code or credentials the user has not provided — see "The guardrail" below.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://playground.wordpress.net/blueprint-schema.json", | |
| "preferredVersions": { | |
| "php": "8.3", | |
| "wp": "latest" | |
| }, | |
| "features": { | |
| "networking": true | |
| }, | |
| "landingPage": "/doom-block/", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://playground.wordpress.net/blueprint-schema.json", | |
| "preferredVersions": { | |
| "php": "8.3", | |
| "wp": "latest" | |
| }, | |
| "features": { | |
| "networking": true | |
| }, | |
| "landingPage": "/doom-block/", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://playground.wordpress.net/blueprint-schema.json", | |
| "preferredVersions": { | |
| "php": "8.3", | |
| "wp": "latest" | |
| }, | |
| "features": { | |
| "networking": true | |
| }, | |
| "landingPage": "/doom-block/", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://playground.wordpress.net/blueprint-schema.json", | |
| "meta": { | |
| "title": "WP Doom Block demo", | |
| "author": "Bero / Gil", | |
| "description": "Installs the WP Doom Block plugin and creates a page with the DOOM block already inserted." | |
| }, | |
| "landingPage": "/doom-block/", | |
| "preferredVersions": { | |
| "php": "8.3", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: Admin Email Sender | |
| * Description: Adds a wp-admin page that lets administrators send plain-text emails using WordPress wp_mail(). | |
| * Version: 1.0.0 | |
| * Author: Your Name | |
| * License: GPL-2.0-or-later | |
| */ | |
| if (!defined('ABSPATH')) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "landingPage": "/", | |
| "preferredVersions": { | |
| "php": "8.2", | |
| "wp": "latest" | |
| }, | |
| "steps": [ | |
| { | |
| "step": "mkdir", | |
| "path": "/wordpress/wp-content/plugins/test-cjs-mjs/assets" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: Cron Sleep Test | |
| * Description: A 15-second cron job that runs on every page load. | |
| * Version: 3.1.0 | |
| */ | |
| if ( ! defined( 'WP_CRON_LOCK_TIMEOUT' ) ) { | |
| define( 'WP_CRON_LOCK_TIMEOUT', 1 ); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "landingPage": "/intl-test.php", | |
| "preferredVersions": { | |
| "php": "latest", | |
| "wp": "latest" | |
| }, | |
| "steps": [ | |
| { | |
| "step": "writeFile", | |
| "path": "/wordpress/intl-test.php", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "steps": [ | |
| { | |
| "step": "setSiteOptions", | |
| "options": { | |
| "blogname": "My Blog", | |
| "blogdescription": "A great blog" | |
| } | |
| } | |
| ] |
NewerOlder