版本
安装命令 点击复制
插件文档
简介
提供身份认证、凭证管理和权限控制,支持 OIDC 登录、TIP 令牌、OAuth2、API Key 等,确保安全的身份和权限管理。功能
- OIDC 登录:通过
/identity login获取授权 URL - TIP 令牌:在
before_dispatchhook 中获取 - 凭证管理:支持 OAuth2、API Key 等,安全存储和注入
- 本地身份服务器 (UDS):通过 Unix Domain Socket 提供本地身份服务
- 加密会话存储:使用 AES-256-GCM 加密
安装
openclaw plugins install @m1a0rz/agent-identity
配置
请参阅 README-cn.md 中的详细配置指南,包括身份、用户池、授权和本地服务器设置。工具和钩子
- 工具:身份查询、会话管理、凭证管理等
- 钩子:
before_dispatch、before_agent_start、before_tool_call等,提供身份验证和权限检查
本地身份服务器 (UDS)
启用后,通过 Unix Domain Socket 提供身份服务,支持 TIP 令牌、会话令牌和工具执行,具有安全的身份验证机制。Agent Identity Plugin
UserPool OIDC login, TIP (Trusted Identity Provider) token via Identity GetWorkloadAccessTokenForJWT, credential 3LO (GetResourceOauth2Token/Oauth2Callback), and session management for OpenClaw.
中文文档请参阅 README-cn.md
Integrates with Volcengine Agent Identity and Permission Management.
Features
- OIDC Login:
/identity loginreturns IdP auth URL (no HTTP start endpoint). User opens URL, IdP redirects to/identity/oauth/callback. - Pre-LLM Auth Gate (
before_dispatch): Blocks unauthenticated messages before the LLM is invoked, saving tokens. Returns an OIDC login URL directly in the static response. Falls back tobefore_agent_starton older OpenClaw versions. - TIP Token:
before_dispatch/before_agent_starthooks fetch TIP token when session has a logged-in user. - Credential 3LO:
/identity fetch <provider>returns auth URL. IdP redirects to Identity-provided callback (control-plane config). - Credential Binding:
/identity set <provider> <envVar>binds stored credential to env var. Credentials are securely injected per-tool-call, isolated between concurrent multi-user sessions. - Local Identity Server (UDS): Optional HTTP-over-Unix-Domain-Socket server exposing TIP tokens, OIDC session tokens, and all plugin tools to other local processes. Supports peer credential checking (Linux
SO_PEERCRED+/proc) and configurable process allowlist. - Encrypted Session Storage:
sessions.jsonis encrypted at rest (AES-256-GCM). Plaintext sessions from older versions are auto-migrated on first load. - In-memory TIP Cache: TIP tokens are stored only in memory (no disk persistence). They are short-lived and re-obtained from the user's session token on demand.
- Dynamic UserPool: Resolve OIDC config by
userPoolName+clientName(no manual clientId). - Credentials: Load AK/SK from env, file, or STS AssumeRole (veadk-style).
HTTP Endpoints
Only the OIDC login callback is exposed. Credential OAuth uses Identity callback. All other logic runs in slash commands.
| Path | Method | Description |
|---|---|---|
| `/identity/oauth/callback` | GET | OIDC login callback (IdP redirects here) |
Slash Commands
Single command /identity (alias /id) with subcommands. Default with no args: status.
| Subcommand | Description |
|---|---|
| _(none)_ | Show help. |
| `whoami` | Show current session identity (sub, TIP status). |
| `login` | If logged in: refresh TIP. If not: return OIDC IdP URL to open. |
| `status` | Show login status, TIP, credentials. Tries to refresh TIP when session exists. |
| `logout` | Clear session and TIP for current session. |
| `list-tips` | List all valid TIP tokens with delegation chain, expiry, and env bindings. |
| `config` | Show identity plugin config (sensitive values redacted). |
| `list-credentials` or `list [page]` | List providers from control plane (paginated) and your credentials with bound env. Use `list 2` to load more. |
| `list-roles` | List STS role credential providers (not OAuth/API key). Optional name prefix filter. |
| `get-role <provider> [--use-tip] [--show-secrets]` | Get temporary STS credentials for a role provider (masked by default). |
| `fetch <provider> [--flow=...]` | Add credential. Flow auto-inferred from provider type (api_key/oauth2/m2m); override with `--flow`. |
| `set <provider> <envVar>` | Bind credential to env var for tool injection. If no credential, import from `process.env[envVar]`. |
| `unset <provider>` | Remove env binding for provider. |
OIDC Login Flow
- User sends
/identity loginin chat (e.g. Telegram, Discord) - Command derives sessionKey from channel/sender, builds IdP authorize URL, stores state
- Command returns the IdP URL; user opens it in browser
- User completes login at UserPool IdP
- IdP redirects to
/identity/oauth/callbackwithcodeandstate - Plugin exchanges code, creates session, shows success page and sends message to chat
Credential Fetch Flow
OAuth2 (user federation or M2M):
- User sends
/identity fetch googleor/identity fetch google --flow=oauth2-m2m(after/identity login) - Command uses TIP to call Identity API; returns auth URL or direct token
- If auth URL: user opens it; IdP redirects to Identity callback (control-plane provider config)
- Identity handles callback; token obtained via Identity; user may re-run fetch to pull credential
API Key:
- User sends
/identity fetch openai(provider type api_key in control plane) or/identity fetch openai --flow=apikey - Command uses TIP to call GetResourceApiKey; API key stored directly
Flow is auto-inferred from ListCredentialProviders (Type + Flow). Override with --flow=oauth2-user|oauth2-m2m|apikey when needed.
Enable Volcengine Agent Identity Service
Before using this plugin, you must enable Agent Identity and Permission Management in Volcengine and complete authorization. See:
Get Volcengine AK/SK
The plugin requires Volcengine Access Key and Secret Key to call the Identity API. To create credentials:
After creating AK/SK in the console, pass them via config or use environment variables VOLCENGINE_ACCESS_KEY and VOLCENGINE_SECRET_KEY.
Installation
openclaw plugins install @m1a0rz/agent-identityOr with link for development:
openclaw plugins install --link .Configuration
Step 2: Configure plugin (minimal setup)
The plugin typically needs three types of config:
A. Platform access (Identity): For TIP Token, credential fetch/hosting, and optional permission checks.
endpoint(optional): Full Identity API base URL (e.g.https://id.cn-beijing.volcengineapi.com). Highest priority for the API host.regionMetadataUrl(optional): HTTP(S) URL that returns a plain-text region id (e.g.cn-beijing). Used only whenendpointis unset: the client buildshttps://id.{region}.volcengineapi.com. Request timeout ~10s; on failure or invalid body (e.g.unknown), falls back tohttps://id.cn-beijing.volcengineapi.com. Example metadata URL:http://100.96.0.96/latest/region_id(must be reachable from the gateway).accessKeyId/secretAccessKey: For Identity API access. Optional when using env vars or credential file (see below).workloadPoolName/workloadName: For issuing TIP Token. Defaults:default,openclaw-agent.audience/durationSeconds: Optional, token audience and validity.credentialsFile: Path to credential JSON. Default:VOLCENGINE_CREDENTIALS_FILEenv or/var/run/secrets/iam/credential.credentialsMetadataUrl: Full URL for remote credential fetch. When set withroleTrn, fetches from URL (response:AccessKeyId,SecretAccessKey,SessionToken), then AssumeRole withroleTrnto get final credentials. Same flow as AK/SK + roleTrn. 404 falls through to credential file. Cached by ExpiredTime. Must be explicitly configured.roleTrn: Role TRN for STS AssumeRole. When set (andworkloadNamenot set), workload name is omitted; backend uses roleName. Priority:workloadName>roleTrn> params. Used withcredentialsMetadataUrl(AssumeRole after fetch) or explicit AK/SK.sessionToken: STS session token (or useVOLCENGINE_SESSION_TOKENenv).
Identity API host resolution: endpoint if set → else region from regionMetadataUrl → else https://id.cn-beijing.volcengineapi.com. SigV4 signing region is inferred from the resolved host when it matches id.{region}.volcengineapi.com; otherwise cn-beijing.
Workload pool (credentials / STS): workloadPoolName (default default) scopes ListCredentialProviders, ListRoleCredentialProviders, and control-plane calls such as GetResourceOauth2Token, GetResourceApiKey, GetUserCredential, and GetRoleCredentials via PoolName. Role provider listing also filters by userpool.userPoolName when configured.
Credential resolution order (AK/SK): 1) Explicit config → 2) Env vars (VOLCENGINE_ACCESS_KEY, VOLCENGINE_SECRET_KEY, VOLCENGINE_SESSION_TOKEN) → 3) Remote metadata (credentialsMetadataUrl + roleTrn, fetches from full URL then AssumeRole; 404 falls through) → 4) Credential file (credentialsFile config, or VOLCENGINE_CREDENTIALS_FILE env, or /var/run/secrets/iam/credential). Credential file format (VeFaaS): access_key_id, secret_access_key, session_token (optional), role_trn (optional for AssumeRole). RUNTIME_IAM_ROLE_TRN env can supply role TRN when loading from file.
B. User login (UserPool / OIDC): For /identity login and session setup.
discoveryUrl(oruserPoolName+clientNamefor dynamic resolution)clientId/clientSecret(auto-resolved in dynamic mode)callbackUrl: Public callback URL for OpenClaw gateway, e.g.http://127.0.0.1:18789/identity/oauth/callbackscope: Typicallyopenid profile emailidentityProvider(optional): IdP name for theidentity_providerauthorize param. When omitted, the first entry fromListIdentityProvidersis used.useRelayCallback(optional): UserPool relay /redirect_relay_uriflow for OIDC callback. Default false.
C. AuthZ and risk approval (optional): For TIP + CheckPermission + risk evaluation. Each flag is independent; no single "enable" switch.
agentCheck: Run CheckPermission for agents (resource type agent) inbefore_agent_start. Verifies the user can invoke the current agent. Uses the outermost actor from TIP delegation chain as resource id. Default false.toolCheck: Run CheckPermission for tools (resource type tool). Default false.skillReadCheck: Run CheckPermission for read of SKILL.md (resource type skill). Parses available_skills from system prompt. Default false.requireRiskApproval: Require user approval for high-risk tool calls. Default false.namespaceName: CheckPermission Cedar policy namespace. Defaultdefault.lowRiskBypass: Skip TIP+CheckPermission for built-in low-risk tools. Default true.lowRiskTools: Extra tool names treated as low-risk.enableLlmRiskCheck: Use LLM to re-evaluate when rules return medium. Default false.llmRiskCheck: LLM config (endpoint,api,model,apiKey,timeoutMs,cacheTtlMs). Required whenenableLlmRiskCheckis true.approvalTtlSeconds: Approval link/command TTL (seconds). Default 300.
Expected outcome: After config, the plugin can initiate login and obtain TIP Token. With AuthZ flags enabled, agent/tool/skill permission checks and high-risk approvals apply. High-risk tool calls use OpenClaw's native requireApproval mechanism (UI overlay, Telegram buttons, Discord interactions, /approve CLI).
Add to openclaw.json under plugins.entries.agent-identity.config:
{
"plugins": {
"entries": {
"agent-identity": {
"config": {
"identity": {
"endpoint": "https://id.cn-beijing.volcengineapi.com",
"workloadPoolName": "default",
"workloadName": "openclaw-agent"
},
"userpool": {
"discoveryUrl": "https://userpool-xxx.userpool.auth.id.cn-beijing.volces.com",
"clientId": "<client-id>",
"clientSecret": "<client-secret>",
"callbackUrl": "https://gateway.example.com/identity/oauth/callback",
"scope": "openid profile email"
},
"authz": {
"agentCheck": false,
"toolCheck": false,
"skillReadCheck": false,
"requireRiskApproval": false,
"namespaceName": "default",
"lowRiskBypass": true,
"enableLlmRiskCheck": false,
"approvalTtlSeconds": 300
},
"localServer": false,
"localServerAllowlist": [],
"localServerFailOpen": true
}
}
}
}
}Identity credentials: Omit accessKeyId/secretAccessKey to use env vars (VOLCENGINE_ACCESS_KEY, VOLCENGINE_SECRET_KEY) or credential file (VOLCENGINE_CREDENTIALS_FILE or /var/run/secrets/iam/credential).
identity config (required vs optional)
| Param | Type | Required | Description |
|---|---|---|---|
| `endpoint` | string | No | Identity API base URL. Omit to use `regionMetadataUrl` or default `https://id.cn-beijing.volcengineapi.com` |
| `regionMetadataUrl` | string | No | Plain-text region id URL; builds `https://id.{region}.volcengineapi.com` when `endpoint` unset |
| `accessKeyId` | string | No* | Volcengine Access Key. Omit to load from `VOLCENGINE_ACCESS_KEY` or `credentialsFile` |
| `secretAccessKey` | string | No* | Volcengine Secret Key. Omit to load from `VOLCENGINE_SECRET_KEY` or `credentialsFile` |
| `workloadPoolName` | string | No | Workload pool name, default `default` |
| `workloadName` | string | No | Workload name for TIP. When set, takes precedence over roleTrn. Default when neither set: agentId or `openclaw-agent` |
| `audience` | string[] | No | TIP token audience |
| `durationSeconds` | number | No | TIP token TTL (seconds), default 3600 |
| `roleTrn` | string | No | Role TRN for STS AssumeRole. When set (and workloadName not set), workload name is omitted; backend uses roleName. Priority: workloadName > roleTrn > params |
| `credentialsFile` | string | No | Path to credential JSON. Default: `VOLCENGINE_CREDENTIALS_FILE` or `/var/run/secrets/iam/credential` |
| `credentialsMetadataUrl` | string | No | Full URL for remote credential fetch. When set with `roleTrn`, fetches then AssumeRole. 404 falls through to `credentialsFile` |
| `sessionToken` | string | No | STS session token (or `VOLCENGINE_SESSION_TOKEN`) |
| `subagentTipPropagation` | boolean | No | Propagate TIP and session to subagents. Default false |
| `webchatSessionExchange` | boolean | No | Enable `identity.session.put` / `identity.session.get` gateway WS methods for webchat clients. Default false |
| `personalSessionMode` | boolean | No | Single-user mode: TIP, OIDC session, and credentials are stored only under `agent:main:main` (no per-sender or per-channel-peer keys). Subagent sessions unchanged. Default false — do not enable for multi-tenant or shared groups. |
| `localServer` | boolean | No | Enable the local UDS identity server. Default false. See [Local Identity Server (UDS)](#local-identity-server-uds). |
| `localServerAllowlist` | string[] | No | Additional process names/paths allowed to access the UDS server. `curl` always allowed. |
| `localServerFailOpen` | boolean | No | Allow connections when peer cannot be identified. Default true. |
* AK/SK must be provided via accessKeyId+secretAccessKey, environment variables, credentialsMetadataUrl+roleTrn, or credentialsFile.
Environment variables: VOLCENGINE_ACCESS_KEY, VOLCENGINE_SECRET_KEY, VOLCENGINE_SESSION_TOKEN, VOLCENGINE_CREDENTIALS_FILE, RUNTIME_IAM_ROLE_TRN (for AssumeRole when loading from file). Set IDENTITY_STS_DEBUG=1 to log full STS AssumeRole request/response for debugging.
userpool config (OIDC login)
Explicit mode (required): discoveryUrl, clientId, clientSecret, callbackUrl, scope
Dynamic mode (required): userPoolName, clientName, callbackUrl; autoCreate defaults to true
OAuth2 credential fetch uses control-plane redirect URL and scopes. Override via /identity fetch <provider> --redirectUrl and --scopes.
authz config (optional, each flag independent)
| Param | Type | Description |
|---|---|---|
| `agentCheck` | boolean | Run CheckPermission for agents (resource type agent) in `before_agent_start`. Verifies the user can invoke the current agent. Uses the outermost actor from TIP delegation chain as resource id. Default false. |
| `toolCheck` | boolean | Run CheckPermission for tools (resource type tool). Default false. |
| `skillReadCheck` | boolean | Run CheckPermission for read of SKILL.md (resource type skill). Default false. |
| `requireRiskApproval` | boolean | Require user approval for high-risk tools. Default false. |
| `namespaceName` | string | CheckPermission Cedar namespace. Default `default`. |
| `lowRiskBypass` | boolean | Skip TIP+CheckPermission for built-in low-risk tools. Default true. |
| `lowRiskTools` | string[] | Extra tool names treated as low-risk. |
| `enableLlmRiskCheck` | boolean | Re-evaluate with LLM when rules return medium. Default false. |
| `llmRiskCheck` | object | LLM config: `endpoint`, `api`, `model`, etc. Required when `enableLlmRiskCheck` is true. |
| `approvalTtlSeconds` | number | Approval TTL (seconds). Default 300. |
Workload and TIP
TIP token is obtained via GetWorkloadAccessTokenForJWT. Workload behavior:
- workloadName (optional): Workload name sent to the API. Priority: config.workloadName > config.roleTrn > params (session agentId or
"openclaw-agent"). When config.workloadName is set, it takes precedence over roleTrn. - roleTrn (optional): When set (and workloadName not set), the plugin does not pass workload name; the backend uses the role name. Use this for delegated execution (e.g. VeFaaS, K8s IRSA).
- Auto-create workload: When
GetWorkloadAccessTokenForJWTreturns 404 (workload not found), the plugin callsCreateWorkloadIdentityto create the workload (Category: Agent), then retries. Only applies when a workload name is used (workloadName set or neither workloadName nor roleTrn set). Duplicated (409) from concurrent create is ignored.
Feishu notifications
Login success and credential fetch follow-up messages (e.g. "✓ Credential for google added.") are sent via Feishu when the user runs /identity from a Feishu chat. Credentials are read from channels.feishu in openclaw.json (same as feishu extension: appId, appSecret, optional accounts). No extra config in agent-identity is required.
Approval messages (when a high-risk tool is blocked): The plugin returns requireApproval from before_tool_call, and OpenClaw handles the approval UI natively across all channels (exec overlay, Telegram buttons, Discord interactions, /approve CLI). No plugin-side delivery logic is needed.
WebChat Session Exchange (Gateway WS Methods)
When identity.webchatSessionExchange is true, the plugin registers two gateway WebSocket methods for webchat clients to inject and retrieve session tokens without going through the OIDC redirect flow:
| Method | Params | Response | Description |
|---|---|---|---|
| `identity.session.put` | `{ sessionKey, idToken, refreshToken?, senderId?, channel? }` | `{ sub, expiresAt, effectiveSessionKey, hasTip }` | Inject an OIDC id_token into a plugin session; optional `refreshToken` is stored encrypted for silent token renewal. Resolves effective storage key via `buildEffectiveSessionKey` (same sender isolation as hooks/commands). |
| `identity.session.get` | `{ sessionKey, senderId?, channel? }` | `{ userToken, sub, expiresAt, effectiveSessionKey, hasRefreshToken }` | Retrieve the stored user token for a session. `hasRefreshToken` indicates whether a refresh token is stored; the refresh token value is never returned. |
senderIddefaults to"openclaw-control-ui". The effective storage key isagent:main:main:user:<senderId>for main sessions.channelis optional; when the session originates from a sendable channel (feishu, telegram, etc.), pass it to enable per-channel-peer key promotion.
Both methods are restricted to webchat WS connections only (isWebchatConnect check). Non-webchat clients receive a FORBIDDEN error.
Config:
{
"identity": {
"webchatSessionExchange": true
}
}Typical flow (BFF → webchat → plugin):
- BFF completes 3LO login and obtains an OIDC
id_tokenfor the user - Webchat client calls
identity.session.putwith the session key andid_token(optionallyrefreshTokenfrom the token response if silent renewal is desired) - Plugin verifies the token, stores the session, and acquires TIP
- Subsequent agent runs in that session have a valid identity — no manual login needed
WebChat / TUI
Follow-up messages (login success, credential fetch done) are not delivered when the user runs /identity from WebChat or TUI; the plugin has no API to push to those channels. Use /identity status to confirm results.
Tools
Agent-facing behavior is summarized in skills/SKILL.md. Registered tools:
- identity_whoami — Session identity (sub, TIP)
- identity_status — Login, TIP, credentials, bindings
- identity_login / identity_logout — OIDC login or refresh TIP; clear session
- identitylistcredentials — OAuth/API key providers and stored credentials (
page,name,flow,typefilters) - identitylistroles — STS role credential providers (
nameprefix filter) - identity_fetch — Add credential (
provider,flow,redirectUrl,scopes,returnValue) - identitygetrole_credentials — STS credentials for a role provider (
providerName,useTip) - identitygettip_token / identitygetsession_token — Raw TIP JWT or session user token (advanced)
- identity_config — Effective plugin config (redacted)
- identityconfigsuggest — Config merge snippets (
intent,lang) - identitysetbinding / identityunsetbinding — Env var bindings for tool injection
- identityriskcheck / identitylistrisk_patterns — Risk evaluation (optional plugin)
- identitylisttips — All valid TIP tokens and bindings (ops / multi-session debug)
Hooks
- before_dispatch - Stateless pre-LLM authentication gate. Checks for a valid TIP token before the LLM is invoked. If no TIP is found, blocks the message with a static response containing an OIDC login URL. Zero LLM token cost for unauthenticated users. When
authz.agentCheckis enabled, also runs agent-level CheckPermission. Sets a feature flag sobefore_agent_startskips redundant auth logic. - beforeagentstart - Fallback auth gate for older OpenClaw versions that do not support
before_dispatch. Whenbefore_dispatchis active, this hook is a no-op for authentication. Still fetches TIP token and runs agent CheckPermission when applicable. - subagent_spawned - Propagate TIP to child session on subagent spawn.
- beforetoolcall - Group context injection, optional AuthZ (TIP check, CheckPermission, risk via
requireApproval), and per-tool-call credential injection. High-risk tool calls returnrequireApprovalto the OpenClaw framework, which handles approval UI natively. - aftertoolcall - Clean up per-tool-call credential injection state.
Local Identity Server (UDS)
When identity.localServer is true, the plugin starts an HTTP server over a Unix Domain Socket, allowing other local processes (scripts, plugins, CLIs) to access identity tokens and execute plugin tools without going through OpenClaw's messaging layer.
Configuration
| Param | Type | Description |
|---|---|---|
| `localServer` | boolean | Enable the local UDS server. Default false. |
| `localServerAllowlist` | string[] | Additional process names or paths allowed to connect. Supports exact match and glob suffix (e.g. `"python*"`). `curl` is always allowed by default. |
| `localServerFailOpen` | boolean | When peer identity cannot be resolved, allow the connection (relying on 0600 socket permissions). Default true. Set to false for strict mode. |
Socket path: ~/.openclaw/plugins/identity/identity.sock (permissions 0600, owner-only access).
Endpoints
| Method | Path | Description |
|---|---|---|
| `GET` | `/token` | TIP token for the main session |
| `GET` | `/token?session=<key>` | TIP token for a specific session |
| `GET` | `/session` | OIDC session (id_token) for main session |
| `GET` | `/status` | Server health and available sessions summary |
| `GET` | `/tools` | List all available tool names with descriptions and JSON schemas |
| `POST` | `/tool/<name>` | Execute a registered tool. Body: `{ "params": {...}, "session": "..." }` |
Peer Credential Checking (Linux)
On Linux, the server validates connecting processes via:
SO_PEERCRED(kernel-level): Zero-overhead retrieval of peer PID/UID/GID viagetsockopt. Requires a registered native provider./procfilesystem: Derives process name and path from/proc/<pid>/exe,/proc/<pid>/comm,/proc/<pid>/status. No process spawning.
Resolved peer info is checked against the built-in allowlist (curl) plus any custom entries in localServerAllowlist. When localServerFailOpen is true (default), unresolvable peers are allowed (socket file permissions provide baseline security).
Usage Examples
# Get TIP token
curl --unix-socket ~/.openclaw/plugins/identity/identity.sock http://localhost/token
# Get OIDC session token
curl --unix-socket ~/.openclaw/plugins/identity/identity.sock http://localhost/session
# List available tools
curl --unix-socket ~/.openclaw/plugins/identity/identity.sock http://localhost/tools
# Execute a tool
curl --unix-socket ~/.openclaw/plugins/identity/identity.sock \
-X POST http://localhost/tool/identity_whoami \
-H 'Content-Type: application/json' \
-d '{"params": {}, "session": ""}'See demo/local-server/ for examples in Python, Go, TypeScript, Java, and Rust.
Data Storage
Plugin data at ~/.openclaw/plugins/identity/:
| File | Description |
|---|---|
| `sessions.json` | Encrypted sessionKey → userToken mapping. Expired entries pruned on load/save. |
| `credential-env-bindings.json` | Per-session: `{ [sessionKey]: { [provider]: envVar } }` |
In-memory only (not persisted to disk):
| Data | Description |
|---|---|
| TIP tokens | sessionKey → TIP token cache. Short-lived, re-obtained from session token on demand. |
| Credentials | Per-session (api_key, oauth2). Lost on gateway restart; cleared on logout. |
| OIDC state | Ephemeral, 5 min TTL. |
免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制