Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

volcengine-agent-identityvolcengine Agent 身份

Agent Skill

volcengine-agent-identity 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

17,870

周安装

730

GitHub Stars

4

下载量

5,782
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:volcengine-agent-identity(volcengine Agent 身份)
来源仓库:https://github.com/loveyana/volcengine-agent-identity
安装命令:
openclaw skills install volcengine-agent-identity
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install volcengine-agent-identity

简介

管理Volcengine平台上的代理身份认证与凭证托管服务。

  • 支持用户登录、TIP令牌签发以及工具风险审批等安全管理功能。
  • 当需要验证当前身份状态或新增凭据时可激活此技能完成相应操作。
  • 涉及敏感操作时请确保遵循企业安全策略与最小权限原则执行。
  • 安装后可在OpenClaw中调用whoami等指令检查当前认证状态。

SKILL.md

name
identity
description
|
metadata

Agent Identity

Use the agent-identity plugin for UserPool OIDC login (入站授权), TIP token (工作负载访问令牌), credential hosting (出站授权 OAuth2, API key), and optional tool risk approval (权限管控 AuthZ).

Volcengine terminology: 用户池 (UserPool), 入站授权 (OIDC login), 出站授权 (credential fetch), 工作负载令牌 (TIP), 凭据托管 (credential hosting), 权限管控 (CheckPermission). Docs: Volcengine 智能体身份和权限管理.

Agent flow: When the user asks to log in, add credentials, check status, bind env, etc., call the corresponding tools directly. Do not suggest slash commands for those. Slash commands below are for user-initiated use (e.g. /identity approve <id> when the user must approve in chat; agent must never call identity_approve_tool).

Slash commands (user-initiated)

CommandPurpose
/identityShow help
/identity whoamiIdentity brief
/identity statusFull status: session, TIP, credentials, bindings
/identity loginLog in via OIDC (returns auth URL)
/identity logoutClear session and TIP
/identity list-credentials or /identity list [page]List providers and credentials
/identity list-tipsList valid TIP tokens
/identity configShow plugin config (redacted)
/identity fetch <provider> [--flow=...]Add credential
/identity set <provider> <envVar>Bind credential to env var
/identity unset <provider>Remove env binding
/identity risk <command>Diagnose risk for a shell command
/identity risk-patternsList built-in risky patterns
/identity approve <approval_id>Approve high-risk tool call (user runs this; agent must not self-approve)
/identity reject <approval_id>Reject high-risk tool call

Tools Overview

ToolParamsPurpose
identity_whoamiIdentity brief: sub, login time, TIP expiry
identity_statusFull status: session/TIP (issued, expires, chain), credentials, bindings
identity_loginStart OIDC login or refresh TIP
identity_logoutClear session and TIP
identity_list_credentialspage?List providers and credentials (paginated)
identity_list_tipsList valid TIP tokens and bindings
identity_configShow plugin config (secrets redacted)
identity_config_suggestintent?, lang?Generate config snippets for openclaw.json
identity_fetchprovider, flow?, redirectUrl?, scopes?Add credential
identity_set_bindingprovider, envVarBind provider → env var for tool injection
identity_unset_bindingproviderRemove env binding
identity_approve_toolapproval_idApprove a high-risk tool call
identity_risk_checkcommand?, toolName?, params?Diagnose risk for command or tool call
identity_list_risk_patternsList built-in risky patterns and paths

Risk Detection and Approval

When authz.requireRiskApproval is on, the plugin classifies tool calls (e.g. exec, write, apply_patch) by risk. User-provided commands and file paths are evaluated:

  • Rule-based: Destructive patterns (rm -rf, sudo, curl|bash), sensitive paths (/etc, ~/.ssh).
  • LLM-based (optional): When rules return "medium", an LLM re-evaluates for context (authz.enableLlmRiskCheck).

High-risk calls require user approval. The approval message and block reason include the LLM risk explanation when available (e.g. "Pipe-to-shell: network fetch piped to shell execution").

Tool Parameters

identity_login

Starts OIDC login or refreshes TIP. Call when: "login", "登录", "sign in", "我需要先登录". Required before identity_fetch. No params.

identity_whoami

Brief identity check. Call when: "who am I", "查身份", "am I logged in", "当前登录状态"

Returns: sub, hasTip, loggedIn, sessionLoginAt, sessionExpiresAt, tipIssuedAt, tipExpiresAt, tipExpiresInSeconds, tipChain. No params.

identity_status

Full status including credentials and bindings. Call when: "status", "查看完整状态", "我的凭据和绑定", "show my credentials and bindings"

Returns: loggedIn, sub, hasTip, session (loginAt, expiresAt), tip (issuedAt, expiresAt, chain), credentialProviders, bindings. No params.

identity_list_credentials

Lists available credential providers and what the user has stored. Call this when the user wants to see what they can connect or what credentials they have.

User prompts: "有哪些服务可以连接", "what providers are available", "我添加了哪些凭据", "list my credentials", "show available providers"

ParamTypeRequiredDescription
pagenumberNoPage number (default: 1)
{ "page": 2 }

Returns: providers, storedOnly, page, hasMore.

identity_fetch

Adds a credential for a provider (OAuth2 or API key). Call this when the user wants to add, get, or configure credentials.

User prompts that mean "call identity_fetch":

  • English: "add/google my Google token", "get credentials for OpenAI", "connect my GitHub", "I need to use Google API", "set up API key for X", "authorize access to Y", "I want to use [provider] but have no key"
  • 中文: "帮我添加/获取 Google 凭据", "配置 OpenAI 的 API key", "连接我的 GitHub", "我要用某某服务但没有密钥", "授权访问某平台", "添加某某的 token", "获取某某的凭证"

First ensure user is logged in (identity_whoami); if not, use identity_login. Then call identity_fetch with the provider. Use identity_list_credentials to discover available providers.

ParamTypeRequiredDescription
providerstringYesProvider name (e.g. google, openai)
flowstringNooauth2-user (default for 3LO), oauth2-m2m, or apikey. Auto-inferred when omitted.
redirectUrlstringNoOAuth redirect URL (when provider requires custom)
scopesstring[]NoOAuth scopes (e.g. ["email", "profile"])
returnValuebooleanNoWhen true and fetch succeeds, include credential value in result for same-turn automation. Default false.
{ "provider": "google" }
{ "provider": "openai", "flow": "apikey", "returnValue": true }

Response:

  • OAuth2-user: authUrl (user must open in browser). After authorization, success message sent to chat.
  • OAuth2-m2m / apikey: success: true, message (completes immediately). If returnValue: true, also includes value (credential string) for same-turn use.

identity_set_binding

Binds a stored credential to an env var so tools can use it at runtime. Call this when the user wants tools/agent to have access to a credential.

User prompts: "让工具能用我的 Google 凭据", "bind/google my credential for tools", "把 Google token 注入给 agent", "inject my OpenAI key for API calls", "配置某某凭据给工具用"

Credential must exist first (identity_fetch). Common env vars: GOOGLE_ACCESS_TOKEN, OPENAI_API_KEY, GITHUB_TOKEN, etc.

ParamTypeRequiredDescription
providerstringYesProvider name (e.g. google)
envVarstringYesEnv var for injection (e.g. GOOGLE_ACCESS_TOKEN). Must match [A-Za-z_][A-Za-z0-9_]*.
{ "provider": "google", "envVar": "GOOGLE_ACCESS_TOKEN" }

If credential exists: binds it. Else: imports from process.env[envVar] as api_key (gateway must have that env set).

identity_unset_binding

ParamTypeRequiredDescription
providerstringYesProvider name to unbind (e.g. google)
{ "provider": "google" }

identity_approve_tool

ParamTypeRequiredDescription
approval_idstringYesID from the approval prompt (e.g. after blocking a high-risk exec/write)

Optional tool (not given to agent by default). For human approval, use /identity approve <id> or reply "approve" in chat. The agent must NOT call this tool to self-approve. The approval prompt includes the LLM risk reason when available.

{ "approval_id": "abc123" }

identity_risk_check

Evaluates risk of a command or tool call before execution. Call when: "这个命令安全吗", "is rm -rf dangerous", "check if this is risky", "帮我评估这个命令有没有风险"

ParamTypeRequiredDescription
commandstringNo*Shell command to evaluate (treated as exec). Use for quick diagnosis.
toolNamestringNo*Tool name (e.g. write, apply_patch). Use with params.
paramsobjectNoTool params. For exec: {command}. For write: {path, content}.

*Provide either command or toolName. Returns risk, reason, source (rules or llm). Uses LLM when authz.enableLlmRiskCheck is true and rules return medium.

{ "command": "rm -rf /" }
{ "toolName": "write", "params": { "path": "/etc/hosts", "content": "..." } }

identity_list_risk_patterns

Returns built-in dangerous command patterns and sensitive paths. No params. Use to query what triggers high-risk approval.

{}

identity_config_suggest

Generates config snippets for the agent-identity plugin. Call when: user asks to configure identity, login, authz, risk approval, or "如何配置 identity 插件", "帮我配置登录", "怎么开启权限检查".

ParamTypeRequiredDescription
intentstringNoidentity (AK/SK), userpool (OIDC login), authz (permission/approval), llm_risk (LLM re-eval), full (all). Default: full
langstringNoen or zh for instructions. Default: en

Returns: configPath, config (JSON to merge), instructions, nextSteps. When intent is identity or full, also returns identityDefaults (env vars, credential resolution order, config defaults, credential file format). User must manually add to openclaw.json and restart gateway.

{ "intent": "userpool", "lang": "zh" }

Workflow: Adding a Credential

  1. Check login: identity_whoami (brief) or identity_status (full). If not logged in, use identity_login first (user opens auth URL).
  2. Add credential: identity_fetch with provider. For OAuth2-user, tell user to open authUrl; success message sent when done.
  3. Bind for tools (optional): identity_set_binding so the credential is injected as an env var when tools run.

Workflow: Checking Risk Before Running

  1. Diagnose: identity_risk_check with command or toolName+params. Returns risk level and reason.
  2. List patterns: identity_list_risk_patterns to see what triggers high-risk approval.

Configuration

Plugin config lives under plugins.entries.agent-identity.config:

  • identity: Identity API (endpoint, credentials, workloadPoolName, workloadName, roleTrn). When roleTrn is set (AssumeRole), workload name is omitted; backend uses roleName. When workload not found (404), plugin auto-creates via CreateWorkloadIdentity then retries.
  • userpool: OIDC (discoveryUrl, clientId, callbackUrl, or userPoolName+clientName)
  • authz: Optional AuthZ (toolCheck, skillReadCheck, requireRiskApproval, enableLlmRiskCheck, llmRiskCheck, namespaceName, lowRiskBypass). When enableLlmRiskCheck is true, rules returning "medium" are re-evaluated via LLM; the risk reason is shown in approval prompts and block messages.

Notes

  • Requires the agent-identity plugin to be enabled.
  • /identity and tools require session context (channel + sender); use from an active chat.
  • identity_risk_check and identity_list_risk_patterns do not require login.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

92.77%
按下载量换算5,364

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills