Community edition generated from private repo via sync pipeline. Includes 9 plugins (WordPress, WooCommerce, WP Advanced, Gitea, n8n, Supabase, OpenPanel, Appwrite, Directus) with ~587 tools. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
353 B
Python
20 lines
353 B
Python
"""
|
|
WooCommerce Plugin
|
|
|
|
E-commerce management plugin for WordPress WooCommerce stores.
|
|
Split from WordPress Core in Phase D.1.
|
|
|
|
Provides:
|
|
- Products (12 tools)
|
|
- Orders (5 tools)
|
|
- Customers (4 tools)
|
|
- Coupons (4 tools)
|
|
- Reports (3 tools)
|
|
|
|
Total: 28 tools
|
|
"""
|
|
|
|
from plugins.woocommerce.plugin import WooCommercePlugin
|
|
|
|
__all__ = ["WooCommercePlugin"]
|