# Send Telegram Cloud Storage to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "telegram-cloud-storage",
    "name": "Telegram Cloud Storage",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/oki3505F/telegram-cloud-storage",
    "canonicalUrl": "https://clawhub.ai/oki3505F/telegram-cloud-storage",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/telegram-cloud-storage",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=telegram-cloud-storage",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "config/config.template.toml",
      "scripts/client.py",
      "scripts/install_binary.sh",
      "scripts/manage.sh",
      "scripts/setup.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "telegram-cloud-storage",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T11:33:00.856Z",
      "expiresAt": "2026-05-08T11:33:00.856Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=telegram-cloud-storage",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=telegram-cloud-storage",
        "contentDisposition": "attachment; filename=\"telegram-cloud-storage-1.8.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "telegram-cloud-storage"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/telegram-cloud-storage"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/telegram-cloud-storage",
    "downloadUrl": "https://openagent3.xyz/downloads/telegram-cloud-storage",
    "agentUrl": "https://openagent3.xyz/skills/telegram-cloud-storage/agent",
    "manifestUrl": "https://openagent3.xyz/skills/telegram-cloud-storage/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/telegram-cloud-storage/agent.md"
  }
}
```
## Documentation

### Telegram Cloud Storage (Teldrive Edition)

This skill runs Teldrive, a powerful utility that organizes Telegram files and provides a high-speed API/UI for accessing them.

### Features

Unlimited Storage: Uses Telegram as a backend.
High Performance: Written in Go, optimized for speed.
UI & API: Includes a web interface and REST API.
AI-Native Client: Includes client.py for agent-based file operations.

### Credits

This skill is a wrapper for Teldrive by divyam234. All credit for the core engine goes to the original authors.

### Requirements

PostgreSQL Database: Version 17+ recommended.
pgroonga Extension: Required for file search within Postgres.
Telegram API: App ID and Hash from my.telegram.org.

### 1. Database Setup

Ensure Postgres is running and the pgroonga extension is installed.

CREATE DATABASE teldrive;
\\c teldrive
CREATE EXTENSION IF NOT EXISTS pgroonga;

### 2. Configure

Run the setup script to generate config/config.toml:

./scripts/setup.sh

### 3. Start Server

./scripts/manage.sh start

### Agent Usage

The skill includes a Python client for programmatic access.

### Environment Variables

TELDRIVE_TOKEN: Your JWT token (get this from the UI or config/token.txt after login).
TELDRIVE_SESSION_HASH: Your Telegram session hash (found in the teldrive.sessions table).

### Commands

# List files
python3 scripts/client.py list /

# Upload a file
python3 scripts/client.py upload local_file.txt /remote/path

# Download a file
python3 scripts/client.py download <file_id> local_save_path

### Directory Structure

bin/: Teldrive binary.
config/: Configuration templates and generated config.
scripts/: Setup, management, and client scripts.
logs/: Application logs.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: oki3505F
- Version: 1.8.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T11:33:00.856Z
- Expires at: 2026-05-08T11:33:00.856Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/telegram-cloud-storage)
- [Send to Agent page](https://openagent3.xyz/skills/telegram-cloud-storage/agent)
- [JSON manifest](https://openagent3.xyz/skills/telegram-cloud-storage/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/telegram-cloud-storage/agent.md)
- [Download page](https://openagent3.xyz/downloads/telegram-cloud-storage)