Core Generators
Core generators are the plumbing every plugin eventually needs — hooks, wp-config constants, enqueued scripts, cron events, REST routes, activation hooks and the plugin file header itself. The ones you write from muscle memory, except generated correctly the first time.
readme.txtReadme StudioDrag-and-drop editor for the plugin directory readme file, with a live listing preview.add_action() / add_filter()HooksCorrectly signed callbacks with priority and accepted args.define()wp-config.phpEnvironment-aware config with salts, debug flags and memory limits.wp_enqueue_script()Scripts & StylesRegister and enqueue assets with deps, versions and conditionals.wp_schedule_event()Cron EventScheduled events with custom intervals and clean deactivation.register_rest_route()REST RouteNamespaced endpoints with args schema and permission callbacks.register_activation_hook()Activation HooksActivation, deactivation and uninstall routines that clean up after themselves.Plugin Name:Plugin HeaderThe file header WordPress reads, plus a starter bootstrap class.wp_oembed_add_provider()oEmbed ProviderRegister providers so bare URLs auto-embed.