Claude-skill-registry agentuity-cli-cloud-thread-get
Get details about a specific thread. Requires authentication. Use for Agentuity cloud platform operations
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/agentuity-cli-cloud-thread-get" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-cloud-thread-get && rm -rf "$T"
manifest:
skills/data/agentuity-cli-cloud-thread-get/SKILL.mdsource content
Cloud Thread Get
Get details about a specific thread
Prerequisites
- Authenticated with
agentuity auth login
Usage
agentuity cloud thread get <thread_id>
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| string | Yes | - |
Examples
Get a thread by ID:
bunx @agentuity/cli cloud thread get thrd_abc123xyz
Output
Returns JSON object:
{ "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" }
| Field | Type | Description |
|---|---|---|
| string | Thread ID |
| string | Creation timestamp |
| string | Update timestamp |
| boolean | Deleted status |
| unknown | Deletion timestamp |
| unknown | Deleted by |
| string | Organization ID |
| string | Project ID |
| unknown | User data as JSON |