name: agentuity-cli-project-show description: 显示项目详细信息。需要身份验证。用于项目管理操作 version: “0.0.103” license: Apache-2.0 allowed-tools: “Bash(agentuity:*)” argument-hint: “<id>” metadata: command: “agentuity project show” tags: “read-only fast requires-auth requires-project”
项目显示
显示项目详细信息
前提条件
- 已使用
agentuity auth login完成身份验证
使用方法
agentuity project show <id>
参数
| 参数 | 类型 | 是否必需 | 描述 |
|---|---|---|---|
<id> |
字符串 | 是 | - |
示例
显示详细信息:
bunx @agentuity/cli project show proj_abc123def456
以JSON格式显示输出:
bunx @agentuity/cli --json project show proj_abc123def456
获取项目详情:
bunx @agentuity/cli project get proj_abc123def456
输出
返回JSON对象:
{
"id": "string",
"name": "string",
"description": "unknown",
"tags": "unknown",
"orgId": "string",
"secrets": "object",
"env": "object"
}
| 字段 | 类型 | 描述 |
|---|---|---|
id |
字符串 | 项目ID |
name |
字符串 | 项目名称 |
description |
未知 | 项目描述 |
tags |
未知 | 项目标签 |
orgId |
字符串 | 组织ID |
secrets |
对象 | 项目密钥(已脱敏) |
env |
对象 | 环境变量 |