Agentuity云流获取Skill agentuity-cli-cloud-stream-get

Agentuity云流获取技能是一个命令行工具,用于从Agentuity云平台获取特定数据流的详细信息、元数据和内容。核心功能包括查询流详情、以JSON格式输出、以及将流数据下载到本地文件。适用于需要进行云平台数据流管理、内容导出和自动化脚本集成的开发者和运维人员。关键词:Agentuity云平台,数据流获取,CLI工具,云操作,流下载,元数据查询。

云原生架构 0 次安装 0 次浏览 更新于 2/28/2026

name: agentuity-cli-cloud-stream-get description: 获取特定流的详细信息。需要身份验证。用于Agentuity云平台操作 version: “0.0.104” license: Apache-2.0 allowed-tools: “Bash(agentuity:*)” argument-hint: “<id>” metadata: command: “agentuity cloud stream get” tags: “read-only slow requires-auth”

云流获取

获取特定流的详细信息

前提条件

  • 已通过 agentuity auth login 完成身份验证
  • 需要项目上下文(从项目目录运行或使用 --project-id

使用方法

agentuity cloud stream get <id> [options]

参数

参数 类型 是否必需 描述
<id> 字符串 -

选项

选项 类型 是否必需 默认值 描述
--output 字符串 - 将流内容下载到文件

示例

获取流详情:

bunx @agentuity/cli stream get stream-id-123

以JSON格式获取流:

bunx @agentuity/cli stream get stream-id-123 --json

下载流到文件:

bunx @agentuity/cli stream get stream-id-123 --output stream.dat

下载流(短标志):

bunx @agentuity/cli stream get stream-id-123 -o stream.dat

输出

返回JSON对象:

{
  "id": "string",
  "name": "string",
  "metadata": "object",
  "url": "string",
  "sizeBytes": "number"
}
字段 类型 描述
id 字符串 流ID
name 字符串 流名称
metadata 对象 流元数据
url 字符串 公开URL
sizeBytes 数字 大小(字节)