§
    „NQjþ  ã                   ó.   — d Z ddlmZmZmZmZmZmZmZ dS )u2  External secret source integrations.

A secret source is anything that can supply environment-variable-shaped
credentials at process startup, _after_ ~/.hermes/.env has loaded.

The contract every source implements is
:class:`agent.secret_sources.base.SecretSource`; the orchestrator that
runs the enabled sources (ordering, mapped-beats-bulk precedence,
first-claim-wins conflicts, ``override_existing`` semantics, provenance)
is :func:`agent.secret_sources.registry.apply_all`.  Multiple sources
can be enabled at once â€” see the registry module docstring for the
precedence ladder.  The atomic-write / 0600 / TTL disk-cache substrate
is shared across backends in ``agent.secret_sources._cache`` so the
security-sensitive bits live in exactly one place.

Currently bundled:

  - ``bitwarden`` â€” Bitwarden Secrets Manager (`bws` CLI).  See
    ``agent.secret_sources.bitwarden`` for the integration and
    ``hermes_cli.secrets_cli`` for the user-facing setup wizard.
  - ``onepassword`` â€” 1Password ``op://`` secret references (`op` CLI).
    See ``agent.secret_sources.onepassword`` for the integration and
    ``hermes_cli.onepassword_secrets_cli`` for the user-facing commands.

The bundled set is deliberately closed (policy mirrors memory
providers): new third-party secret managers ship as standalone plugin
repos that subclass ``SecretSource`` and register through
``PluginContext.register_secret_source()`` â€” they are NOT added to this
package.  A generic ``command`` source is a possible future exception;
OS keystores (Keychain/DPAPI/libsecret) are under discussion.
é    )ÚSECRET_SOURCE_API_VERSIONÚ	ErrorKindÚFetchResultÚSecretSourceÚis_valid_env_nameÚrun_secret_cliÚ
scrub_ansiN)	Ú__doc__Úagent.secret_sources.baser   r   r   r   r   r   r	   © ó    úA/home/alina/.hermes/hermes-agent/agent/secret_sources/__init__.pyú<module>r      st   ððð ð@ð ð ð ð ð ð ð ð ð ð ð ð ð ð ð ð ð ð ð r   