Claude Code Plugins

Community-maintained marketplace

Feedback

agentuity-cli-cloud-stream-get

@agentuity/examples
3
0

Get detailed information about a specific stream. Requires authentication. Use for Agentuity cloud platform operations

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name agentuity-cli-cloud-stream-get
description Get detailed information about a specific stream. Requires authentication. Use for Agentuity cloud platform operations
version 0.0.104
license Apache-2.0
allowed-tools Bash(agentuity:*)
argument-hint <id>
metadata [object Object]

Cloud Stream Get

Get detailed information about a specific stream

Prerequisites

  • Authenticated with agentuity auth login
  • Project context required (run from project directory or use --project-id)

Usage

agentuity cloud stream get <id> [options]

Arguments

Argument Type Required Description
<id> string Yes -

Options

Option Type Required Default Description
--output string Yes - download stream content to file

Examples

Get stream details:

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

Get stream as JSON:

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

Download stream to file:

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

Download stream (short flag):

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

Output

Returns JSON object:

{
  "id": "string",
  "name": "string",
  "metadata": "object",
  "url": "string",
  "sizeBytes": "number"
}
Field Type Description
id string Stream ID
name string Stream name
metadata object Stream metadata
url string Public URL
sizeBytes number Size in bytes