Choose an auth approach
Fill from Vault
control the login workflow
Managed Auth
delegate the login lifecycle
Common use cases
Use Fill from Vault
- an authentication prompt can appear in the middle of a longer workflow, in the same browser session.
- your product needs to control when and how it asks for credentials.
- your application or agent must own navigation, submission, and recovery.
Use Managed Auth
- the automation runs unattended or signs in repeatedly.
- you want KERNEL to navigate common login, sso, and mfa flows.
- you want health checks and eligible automatic reauthentication.
Understand the security boundary
KERNEL doesn’t return stored sensitive fields in api responses or add them to model context. thefill operation writes real values into the browser. Page scripts, extensions, developer tools, and an agent with unrestricted browser access can read them after fill. Use the narrowest browser permissions that your workflow supports, and only attach a vault to sessions authorized to use all of its items.
Reuse authenticated state
Profiles persist cookies and local storage between browser sessions. Managed Auth saves successful logins to a profile automatically. A workflow using Fill from Vault can also save the resulting browser state to a profile when it needs to reuse that session.Next steps
Use Fill from Vault
collect end-user credentials and control navigation, form submission, and recovery in your own workflow.
Use Managed Auth
let KERNEL run the login flow and automatically attempt re-authentication.