name: agentuity-cli-cloud-thread-get description: 获取特定线程的详细信息。需要身份验证。用于Agentuity云平台操作 version: “0.0.103” license: Apache-2.0 allowed-tools: “Bash(agentuity:*)” argument-hint: “<thread_id>” metadata: command: “agentuity cloud thread get” tags: “read-only fast requires-auth”
云线程获取
获取特定线程的详细信息
先决条件
- 已使用
agentuity auth login完成身份验证
使用方法
agentuity cloud thread get <thread_id>
参数
| 参数 | 类型 | 是否必需 | 描述 |
|---|---|---|---|
<thread_id> |
字符串 | 是 | - |
示例
通过ID获取线程:
bunx @agentuity/cli cloud thread get thrd_abc123xyz
输出
返回JSON对象:
{
"id": "string",
"created_at": "string",
"updated_at": "string",
"deleted": "boolean",
"deleted_at": "unknown",
"deleted_by": "unknown",
"org_id": "string",
"project_id": "string",
"user_data": "unknown"
}
| 字段 | 类型 | 描述 |
|---|---|---|
id |
字符串 | 线程ID |
created_at |
字符串 | 创建时间戳 |
updated_at |
字符串 | 更新时间戳 |
deleted |
布尔值 | 删除状态 |
deleted_at |
未知 | 删除时间戳 |
deleted_by |
未知 | 删除者 |
org_id |
字符串 | 组织ID |
project_id |
字符串 | 项目ID |
user_data |
未知 | 用户数据(JSON格式) |