diff --git a/sdk/arch/conversation.mdx b/sdk/arch/conversation.mdx index dbe89d0a..e0391121 100644 --- a/sdk/arch/conversation.mdx +++ b/sdk/arch/conversation.mdx @@ -186,7 +186,7 @@ The conversation system provides pluggable services that operate independently o | **[Persistence](https://github.com/OpenHands/software-agent-sdk/blob/main/openhands-sdk/openhands/sdk/conversation/state.py)** | Auto-save & resume | Debounced writes, incremental events | | **[Stuck Detection](https://github.com/OpenHands/software-agent-sdk/blob/main/openhands-sdk/openhands/sdk/conversation/stuck_detector.py)** | Loop prevention | Sliding window pattern matching | | **[Visualization](https://github.com/OpenHands/software-agent-sdk/blob/main/openhands-sdk/openhands/sdk/conversation/visualizer.py)** | Execution diagrams | Event stream → visual representation | -| **[Secrets Manager](https://github.com/OpenHands/software-agent-sdk/blob/main/openhands-sdk/openhands/sdk/conversation/secrets_manager.py)** | Secure value storage | Memory-only with masked logging | +| **[Secret Registry](https://github.com/OpenHands/software-agent-sdk/blob/main/openhands-sdk/openhands/sdk/conversation/secret_registry.py)** | Secure value storage | Memory-only with masked logging | **Design Principle:** Services read from the event log but never mutate state directly. This enables: - Services can be enabled/disabled independently diff --git a/sdk/guides/secrets.mdx b/sdk/guides/secrets.mdx index 885f500b..e2185463 100644 --- a/sdk/guides/secrets.mdx +++ b/sdk/guides/secrets.mdx @@ -1,5 +1,5 @@ --- -title: Secrets Manager +title: Secret Registry description: Provide environment variables and secrets to agent workspace securely. --- @@ -7,7 +7,7 @@ description: Provide environment variables and secrets to agent workspace secure This example is available on GitHub: [examples/01_standalone_sdk/12_custom_secrets.py](https://github.com/OpenHands/software-agent-sdk/blob/main/examples/01_standalone_sdk/12_custom_secrets.py) -The Secrets Manager provides a secure way to handle sensitive data in your agent's workspace. It automatically detects secret references in bash commands, injects them as environment variables when needed, and masks secret values in command outputs to prevent accidental exposure. +The Secret Registry provides a secure way to handle sensitive data in your agent's workspace. It automatically detects secret references in bash commands, injects them as environment variables when needed, and masks secret values in command outputs to prevent accidental exposure. ```python icon="python" expandable examples/01_standalone_sdk/12_custom_secrets.py import os