name: agentuity-cli-profile-show description: 显示配置文件的配置信息 version: “0.0.103” license: Apache-2.0 allowed-tools: “Bash(agentuity:*)” argument-hint: “[name]” metadata: command: “agentuity profile show” tags: “read-only fast”
配置文件显示
显示配置文件的配置信息
用法
agentuity profile show [name]
参数
| 参数 | 类型 | 是否必需 | 描述 |
|---|---|---|---|
<name> |
字符串 | 否 | - |
示例
显示详情:
bunx @agentuity/cli profile show
显示详情:
bunx @agentuity/cli profile show production
以JSON格式显示输出:
bunx @agentuity/cli profile show staging --json
输出
返回JSON对象:
{
"name": "string",
"auth": "object",
"devmode": "object",
"overrides": "unknown",
"preferences": "object",
"gravity": "object"
}
| 字段 | 类型 | 描述 |
|---|---|---|
name |
字符串 | 配置文件名称 |
auth |
对象 | 身份验证凭据(由登录/注销命令管理) |
devmode |
对象 | 开发模式配置 |
overrides |
未知 | URL和行为覆盖 |
preferences |
对象 | 用户偏好设置 |
gravity |
对象 | gravity客户端信息 |