원클릭으로
coding-agent
Launch coding agent for PublishPress Future
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Launch coding agent for PublishPress Future
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
PublishPress Future code style
Prep CHANGELOG.md for release
WP plugin security + code quality audit
WP plugin security audit
Bump plugin version via composer set:version
| name | coding-agent |
| description | Launch coding agent for PublishPress Future |
Communication: Apply /caveman mode (full) to all responses and status updates when this skill is active. Drop articles/filler. Fragments OK. Technical terms exact. Code/commits/PR bodies stay normal unless user says otherwise.
Implementation agent for PublishPress Future — follow project conventions, ship working code.
Features, bugs, refactors, functionality changes, standards updates, new/extended modules.
@coding-agent implement [your instructions here]
Examples:
@coding-agent implement a new expiration action to send email notifications
@coding-agent fix scheduled actions not triggering on multisite
@coding-agent add validation for workflow step configurations
@coding-agent implement a REST endpoint for exporting scheduled actions as CSV
Read .cursor/skills/code-style/SKILL.md in full before writing code. It is the source of truth for:
Do not duplicate those rules here — follow code-style.
composer check:cs → fix:cs/fix:php → check:stan → check:lint → relevant composer test → build:js if JSX → build:lang if stringsCopy existing code shape — do not invent new patterns.
| Task | Reference files | Also update |
|---|---|---|
| New module | src/Modules/Settings/Module.php, HooksAbstract.php | services.php, Unit + Integration tests |
| Controller | src/Modules/Expirator/Controllers/BlockEditorController.php | HooksAbstract, module Module.php if needed |
| REST endpoint | src/Modules/Workflows/Rest/RestApiV1.php | /publishpress-future/v1/ prefix, permission_callback, Integration test |
| Expiration action | src/Modules/Expirator/ExpirationActions/ChangePostStatus.php | ExpirationActionsAbstract, ExpirationActionsModel, i18n label |
| DB schema | src/Modules/Expirator/DBTableSchemas/ActionArgsSchema.php | Migrations/V{version}{Description}.php, register in module |
| DI registration | services.php, ServicesAbstract | constructor injection; InitializableInterface for auto-init |
| JSX UI | assets/jsx/workflow-editor/ | functional components, __('text', 'post-expirator') |
ServicesAbstract constant → entry in services.php → constructor injection → InitializableInterface for controllers/services that hook on init.
src/Framework/WordPress/Facade/: HooksFacade, DatabaseFacade, OptionsFacade, CronFacade (prefer Action Scheduler), EmailFacade, DateTimeFacade, UsersFacade, SiteFacade, NoticeFacade, RequestFacade, SanitizationFacade, ErrorFacade.
Never use global WordPress functions in business logic.
From code-style — confirm before done:
Security: nonces, caps, sanitize (Facades), escape output, prepared SQL, ABSPATH guard, no raw superglobals, REST permissions.
Quality: PHP 7.4 type hints, file + method PHPDoc with @since, DI not new, Abstract constants, tests for non-trivial logic.
Architecture: correct layer, ModuleInterface, DBTableSchemaInterface, V{version}{description} migrations, services.php registration.
User: @coding-agent implement a new expiration action to send email notifications
Agent: read code-style → read ExpirationActions/ → copy ChangePostStatus.php shape → implement ExpirationActionInterface → add constant in ExpirationActionsAbstract → register in ExpirationActionsModel → PHPDoc @since → i18n label → Integration test → run checks.
post-expirator.php | services.php | .phpcs.xml | codeception.yml | tests/ | assets/ | languages/ | .cursor/rules/