Agentuity云平台线程查询工具 agentuity-cli-cloud-thread-get

这是一个用于Agentuity云平台的命令行工具,专门用于查询和获取特定线程的详细信息。主要功能包括:通过线程ID检索元数据、查看创建/更新时间、检查删除状态以及获取关联的组织和项目信息。适用于开发者和运维人员进行云平台线程管理和状态监控。关键词:Agentuity CLI,云平台操作,线程查询,命令行工具,DevOps,云管理。

CI/CD 0 次安装 0 次浏览 更新于 2/28/2026

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格式)