Documentation

Publication Tiers

public_minimal

Includes only safe discovery actions in the minimal allowlist: search, browse_products, and view_cart.

This tier excludes forms, checkout, auth, and other sensitive operations. Public-tier redaction also strips implementation details such as selectors and internal evidence fields.

Use this when you want agents to understand your site structure but keep all submission and transactional paths private.

public_standard

Includes actions that are not marked dangerous and do not require authentication.

Output typically includes contact_form, lead_form, add_to_cart, and update_cart, while actions such as checkout_start and auth routes remain restricted by default.

Low-confidence mined hook/route discovery surfaces are still kept private in this tier.

Use this for production sites that want practical public utility for assistants while keeping high-impact operations gated.

private_full

Includes your full internal action map with complete diagnostics, flags, and detailed metadata intended for trusted private agent environments.

This tier may include auth-required and restricted actions together with richer endpoint context that is not appropriate for broad public exposure.

Use this when running controlled internal automations, CI checks, or staging evaluations.

Tier Decision Matrix

Site ProfilePrimary GoalRecommended TierWhy
Content site or blogSafe discovery onlypublic_minimalExposes search and browse signals without exposing forms.
Lead-generation siteAllow assistant form workflowspublic_standardIncludes contact and lead forms while keeping auth and checkout gated.
WooCommerce storefrontPublic browse/cart utilitypublic_standardSupports catalog and cart actions; keeps checkout/order/auth private by default.
Internal agent or CI environmentFull diagnostic controlprivate_fullIncludes complete internal metadata for trusted private execution.

Redaction Matrix by Tier

Field or Metadatapublic_minimalpublic_standardprivate_full
Surface selectors and enctypeRemovedRemovedIncluded
Evidence, data class, restricted, allowlistRemovedRemovedIncluded
Notes, permissions, outputsRemovedIncluded (notes capped)Included
Sensitive input names (password, token, nonce, etc.)RemovedRemovedIncluded
Enum values per inputCapped to 5Capped to 10Uncapped
Auth methods detailLimited to cookie and nonce methodsNormalized auth methodsFull auth metadata

Example Output Shape

{
  "tier": "public_standard",
  "actions": [
    { "type": "search", "risk": "low" },
    { "type": "contact_form", "risk": "medium" }
  ],
  "restricted_count": 5
}

Next: FAQ