Store a credential once, retrieve it on demand, and use it to fill a login form without it ever touching the prompt.
Store a named secret (API key, password) under the agent's handle.
vault_store({"handle": "my-agent", "name": "example", "value": {}})Retrieve the secret by name when a task needs it.
vault_get({"handle": "my-agent", "name": "example"})Fill a login form's fields directly from the vault via a browser session.
vault_login({"handle": "my-agent", "browser_id": "example-id", "vault_fields": {}})