Documentation

Action Types Reference

Common action types include search, contact_form, lead_form, add_to_cart, checkout_start, and auth.

Detected Action Types

Action TypeDescription
searchSite search actions (read-oriented query surfaces).
contact_formContact Form 7-style contact form submissions.
lead_formLead capture forms from WPForms, Gravity Forms, and Elementor Forms.
browse_productsWooCommerce catalog/shop browsing actions.
add_to_cartAdds products to cart.
view_cartViews current cart state.
update_cartUpdates quantity/coupon/cart state.
checkout_startStarts checkout flow.
order_statusViews authenticated order/account status.
authAuthentication actions such as login/register/password reset.
submit_commentWordPress comment submission actions.
customGeneric/inferred custom actions (including mined AJAX/REST surfaces).

Risk Levels

  • Low: Read-oriented or low-impact interactions such as search.
  • Medium: State-changing interactions with limited commercial impact, typically non-payment forms.
  • High: Sensitive operations such as authentication, checkout, or account-management paths.

Confidence Scale

  • High confidence (>= 0.80): Detector matched a known plugin API or strongly typed integration pattern.
  • Medium confidence (>= 0.50 and < 0.80): Action inferred from structured form semantics and endpoint behavior.
  • Low confidence (< 0.50): Action discovered through generic HTML or hook/route mining and should be manually reviewed before publication.

Auth Required and Restricted Flags

Auth required indicates that the action depends on a logged-in session or privileged capability. Restricted means the action is intentionally withheld from public tiers unless you explicitly allow it.

Admin UI Glossary

UI LabelMeaningPublication Impact
RiskOperational impact level: low, medium, high.Dangerous/high-risk actions are excluded from public tiers.
ConfidenceHow certain the detector is about action semantics.Use low confidence as a manual-review signal before publishing.
Auth RequiredAction depends on authenticated session or privileged context.Auth-required actions are excluded from public_standard.
RestrictedManual internal-only guard set in the Actions screen.Restricted actions are treated as dangerous and stay out of public tiers.
StatusEnabled or disabled in the local action map.Disabled actions are omitted from all exports.
Agent VisibilityAllowed agent contexts for discovering an action.Sensitive extension-visible actions are filtered in public exports.

Next: Publication Tiers