Built-In Protections
Limelight respects your data:- Automatic header redaction for sensitive auth tokens
- Configurable filtering with
beforeSendhooks - Disable body capture for maximum privacy
- Local-first option with desktop app (no cloud upload)
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
beforeSend hooksLimelight.connect({
beforeSend: (event) => {
// Filter out sensitive routes
if (event.url?.includes("/payment")) {
return null;
}
return event;
},
disableBodyCapture: true, // Only capture metadata
});