agentuity-cli-cloud-thread-getSkill agentuity-cli-cloud-thread-get

这是一个用于Agentuity云平台的命令行工具技能,主要用于查询和获取特定线程(thread)的详细元数据信息。该技能需要用户预先完成身份验证,执行速度快且为只读操作。核心功能是通过输入线程的唯一ID,返回其创建时间、更新时间、所属组织、项目以及用户自定义数据等结构化信息,适用于自动化脚本、系统监控和平台管理场景。关键词:Agentuity云平台,线程查询,CLI工具,元数据获取,身份验证,JSON输出,DevOps自动化。

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

name: agentuity-cli-cloud-thread-get description: 获取特定线程的详细信息。需要身份验证。用于Agentuity云平台操作 version: “0.0.104” 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格式)