| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: ZIP AI |
| 4 |
* Description: ZIP AI is a conversational AI agent that builds, edits, and manages your WordPress site by chat - create pages, edit blocks, and run site operations right inside wp-admin. Requires a block (FSE) theme; does not work with classic themes. |
| 5 |
* Author: Brainstorm Force |
| 6 |
* Author URI: https://brainstormforce.com/ |
| 7 |
* Plugin URI: https://zipwp.com/ |
| 8 |
* Version: 0.0.10 |
| 9 |
* Requires at least: 6.4 |
| 10 |
* Tested up to: 7.0 |
| 11 |
* Requires PHP: 7.4 |
| 12 |
* License: GPLv2 or later |
| 13 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html |
| 14 |
* Text Domain: zip-ai |
| 15 |
* Domain Path: /languages |
| 16 |
* |
| 17 |
* External Services: |
| 18 |
* This plugin connects to the ZIP AI platform (https://credits.zipwp.com) |
| 19 |
* to provide AI-powered site management. Chat messages, site structure data (page titles, |
| 20 |
* plugin names, post counts), and site identity are sent to this service after user |
| 21 |
* authentication. No page/post content, visitor data, or payment details are transmitted. |
| 22 |
* Terms of Service: https://store.brainstormforce.com/terms-and-conditions/ |
| 23 |
* Privacy Policy: https://store.brainstormforce.com/privacy-policy/ |
| 24 |
* |
| 25 |
* @package zip-ai |
| 26 |
*/ |
| 27 |
|
| 28 |
// Exit if accessed directly. |
| 29 |
if ( ! defined( 'ABSPATH' ) ) { |
| 30 |
exit; |
| 31 |
} |
| 32 |
|
| 33 |
// Exit if ZipWP MCP is already loaded. |
| 34 |
if ( defined( 'ZIPAI_MCP_DIR' ) ) { |
| 35 |
return; |
| 36 |
} |
| 37 |
|
| 38 |
// Load the plugin (registers the autoloader and boots everything). |
| 39 |
require_once __DIR__ . '/loader.php'; |
| 40 |
|