free-pro-contract-check

Analyze WordPress plugin file diffs to verify Pro contract interface compatibility.

224|121|Updated Aug 18, 2012
One-click install
npx skills add https://github.com/weDevsOfficial/wp-project-manager --skill free-pro-contract-check
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: free-pro-contract-check
Source: https://github.com/weDevsOfficial/wp-project-manager/tree/main/.claude/skills/free-pro-contract-check
Command: npx skills add https://github.com/weDevsOfficial/wp-project-manager --skill free-pro-contract-check

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

It verifies that changes to the Free WordPress plugin do not inadvertently break the contract interface with the Pro plugin, preventing integration issues.

Core Features & Use Cases

  • Contract Diff Analysis: Compares the current and previous versions of key files like index.jsx to detect additions, removals, or modifications in the window.PM object.
  • Dependency Verification: Checks that external libraries like React, Redux, and Radix UI continue to resolve correctly in Webpack configurations.
  • Usage Scenario: When updating plugin code, quickly identify potential break points in the interface with the Pro plugin, ensuring stability during deployment.

Quick Start

Run the diff analysis to confirm that no breaking changes have been introduced in the window.PM shape or external dependencies.

Frequently Asked Questions about free-pro-contract-check

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check WordPress plugin updates for Pro contract compatibility?

To verify WordPress plugin updates for Pro contract compatibility, analyze file diffs and component registrations to detect modifications in the window.PM object and external dependencies. This prevents integration breakages between Free and Pro versions.

What is a WordPress Pro contract interface breakage?

A WordPress Pro contract interface breakage occurs when updates to the Free plugin alter the expected window.PM object or external dependency resolutions, causing the Pro plugin integration to fail. Contract diff analysis detects these changes before deployment.

How do I detect breaking changes in window.PM object modifications?

To detect breaking changes in the window.PM object, run a contract diff analysis comparing current and previous versions of key files like index.jsx. This identifies any additions, removals, or modifications that could break Pro plugin integration.

Does this contract diff analysis verify Webpack dependency resolution?

Yes, the contract diff analysis verifies Webpack dependency resolution by checking that external libraries like React, Redux, and Radix UI continue to resolve correctly in the configuration during WordPress plugin updates, ensuring component registrations remain stable.

Can I use this to prevent integration issues when updating plugin code?

Yes, you can use this to prevent integration issues when updating plugin code by quickly identifying potential break points in the interface with the Pro plugin. It ensures stability during deployment by verifying external dependencies and file diffs.

What are the limitations of automated WordPress plugin compatibility checks?

Automated WordPress plugin compatibility checks focus specifically on file diffs, the window.PM object, and Webpack dependency resolution for React, Redux, and Radix UI. They may not detect runtime logic errors or dynamic integration issues outside these component registrations.