Documentation Index
Fetch the complete documentation index at: https://revlytics.co/docs/llms.txt
Use this file to discover all available pages before exploring further.
Skip patterns
Prevent tracking on specific pages entirely:Mask patterns
Anonymize URL paths that contain sensitive data:/user/john-doe/profile becomes /user/*/profile.
Pattern syntax
| Format | Example | Matches |
|---|---|---|
| Glob | /admin/* | /admin/users, /admin/settings |
| Glob (nested) | /api/** | /api/v1/users, /api/v2/events/list |
| Regex | re:^/internal | /internal, /internal/debug |
Patterns are matched against the URL path only (not the full URL). The value must be a valid JSON array.
Use cases
- Admin panels — Skip
/admin/*to exclude internal traffic - User profiles — Mask
/user/*/profileto anonymize user IDs in paths - API docs — Skip
/api-playground/*to exclude test traffic - Checkout — Mask
/checkout/*/confirmto hide order IDs