Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.maxicore.ai/llms.txt

Use this file to discover all available pages before exploring further.

Maxi AI Core ships in two paid tiers: Lite and Pro. There is no free tier — every install requires an active license to use abilities beyond session bootstrap and license activation. Abilities are gated by feature groups, so your plan determines exactly which operations are available to your agents.

What each plan includes

Lite

Content read and write, taxonomy, notes, basic media, basic meta, AI settings read, and basic development tools.

Pro

Everything in Lite, plus bulk meta, AI settings write, AI generation, analytics, full development tools, and the complete WooCommerce suite (catalog, orders, coupons, shipping, tax, and bulk operations).

Feature group breakdown

Feature groupLitePro
content_readYesYes
content_write_basicYesYes
taxonomyYesYes
notesYesYes
media_basicYesYes
meta_basicYesYes
ai_settings_readYesYes
dev_tools_basicYesYes
meta_bulkYes
ai_settings_writeYes
ai_generationYes
analyticsYes
dev_tools_adminYes
woocommerce_catalogYes
woocommerce_ordersYes
woocommerce_couponsYes
woocommerce_shipping_taxYes
woocommerce_bulkYes
The session_system and licensing feature groups are always available — no license required. This allows unlicensed installs to bootstrap a session and activate a key.

Purchasing and activating

Purchase a license at maxicore.ai. Once you have a key, you can activate it two ways:
1

Activate via the WordPress admin

Go to Settings → Maxi AI → License, enter your license key, and click Activate.
2

Activate via ability

Call maxi/activate-license with your key. This works from any connected AI client without needing admin UI access.

Checking your license status

Call maxi/get-site-info to see your current license state. The response includes:
{
  "maxi_ai_version": "3.6.0",
  "maxi_ai_license": {
    "tier": "pro",
    "status": "active",
    "entitlements": ["content_read", "content_write_basic", "ai_generation", "woocommerce_orders"]
  }
}
FieldValues
tierlite, pro, or unlicensed
statusactive, grace_period, expired, inactive, invalid, or disabled
entitlementsArray of feature-group names your license currently grants
Scan entitlements before planning a task — if the feature group you need is not in the array, the ability will be gated.

Grace period and offline resilience

Grace period: When a license expires, entitlement-granted abilities continue to work for 7 days. Each successful response includes a warning during this window. Renew before the grace period closes to avoid interruption. Offline resilience: If the Maxi AI license server is temporarily unreachable, the cached license status is extended by 24 hours. Your agents keep working through transient network issues without accidental lockout.

When an ability is gated

If you call an ability your plan does not include, the response carries a reason field that tells you exactly what to do:
Your license is valid, but your current plan does not include the feature group this ability requires. The response also includes required_group (the group you need) and plan (your current plan name).To resolve: upgrade at maxicore.ai. The new plan takes effect on the next license refresh — up to 12 hours automatically, or immediately via Settings → Maxi AI → License.
No valid license is active on this site. The response includes required_group so you know which plan tier covers the ability you need.To resolve: purchase a license at maxicore.ai, then activate it via maxi/activate-license or Settings → Maxi AI → License.

Deactivating your license

Call maxi/deactivate-license or use Settings → Maxi AI → License to deactivate. After deactivation, only session_system and licensing abilities remain callable — all other abilities are gated until you activate a new key.
Deactivation clears the stored license key immediately. Agents connected to the site lose access to gated abilities as soon as deactivation completes.