Secrets apply plan contract
This page defines the strict contract enforced byopenclaw secrets apply.
If a target does not match these rules, apply fails before mutating config.
Plan file shape
openclaw secrets apply --from <plan.json> expects a targets array of plan targets:
Allowed target types and paths
target.type | Allowed target.path shape | Optional id match rule |
|---|---|---|
models.providers.apiKey | models.providers.<providerId>.apiKey | providerId must match <providerId> when present |
skills.entries.apiKey | skills.entries.<skillKey>.apiKey | n/a |
channels.googlechat.serviceAccount | channels.googlechat.serviceAccount | accountId must be empty/omitted |
channels.googlechat.serviceAccount | channels.googlechat.accounts.<accountId>.serviceAccount | accountId must match <accountId> when present |
Path validation rules
Each target is validated with all of the following:typemust be one of the allowed target types above.pathmust be a non-empty dot path.pathSegmentscan be omitted. If provided, it must normalize to exactly the same path aspath.- Forbidden segments are rejected:
__proto__,prototype,constructor. - The normalized path must match one of the allowed path shapes for the target type.
- If
providerId/accountIdis set, it must match the id encoded in the path.
Failure behavior
If a target fails validation, apply exits with an error like:Ref-only auth profiles and implicit providers
Implicit provider discovery also considers auth profiles that store refs instead of plaintext credentials:type: "api_key"profiles can usekeyRef(for example env-backed refs).type: "token"profiles can usetokenRef.
- For API-key providers (for example
volcengine,byteplus), ref-only profiles can still activate implicit provider entries. - For
github-copilot, if the profile has no plaintext token, discovery will trytokenRefenv resolution before token exchange.
Operator checks
openclaw secrets configure or fix the target path to one of the allowed shapes above.