← All skills
Tencent SkillHub · Communication & Collaboration

Doge Oss Upload

Upload a local file to DogeCloud OSS (DogeCloud 对象存储) and return a public URL + metadata. Use when the user asks to “upload to doge/dogecloud”, “生成公网链接”, “把截...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Upload a local file to DogeCloud OSS (DogeCloud 对象存储) and return a public URL + metadata. Use when the user asks to “upload to doge/dogecloud”, “生成公网链接”, “把截...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, references/dogecloud-oss.md, scripts/doge_upload_public_info.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

Doge Upload Public Info

Use the bundled uploader script to upload a local file with DogeCloud temporary credentials and print machine-readable public access info. Read references/dogecloud-oss.md when API details are needed.

Quick Start

Export environment variables (camelCase or DOGECLOUD_* both supported): accessKey / DOGECLOUD_ACCESS_KEY secretKey / DOGECLOUD_SECRET_KEY bucket / DOGECLOUD_BUCKET (bucket name or s3Bucket) endpoint / DOGECLOUD_ENDPOINT publicBaseUrl / DOGECLOUD_PUBLIC_BASE_URL prefix / DOGECLOUD_PREFIX Install dependencies: python3 -m pip install -U boto3 requests Run: python3 scripts/doge_upload_public_info.py ./local/file.jpg

Workflow

Resolve bucket from env/CLI (support bucket name or s3Bucket). Resolve upload key from --key, otherwise use prefix/<local-filename>. Request temporary credentials from /auth/tmp_token.json using scoped permissions. Upload file with Boto3 S3 client and returned s3Bucket + s3Endpoint. Return JSON with upload metadata and public URL candidates.

Output Contract

Return a JSON object with: bucket, s3_bucket, s3_endpoint, object_key file metadata (path, size_bytes, md5) tmp_token metadata (channel, expired_at) public_info: primary_url candidates (custom domain, derived test domain, and S3 endpoint style candidate) notes

Guardrails

Keep permanent AccessKey/SecretKey on server side only. Default to OSS_UPLOAD for least privilege; use OSS_FULL only when explicitly required. If required env vars are missing, fail fast and print a clear reminder listing all missing keys. Warn that test domains ending with .oss.dogecdn.com can expire (commonly after 30 days). Prefer --public-base-url when the user requests a production-ready public URL.

scripts/

scripts/doge_upload_public_info.py: upload and public-info extractor CLI.

references/

references/dogecloud-oss.md: minimal API notes and URL caveats from official docs.

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs1 Scripts
  • SKILL.md Primary doc
  • README.md Docs
  • references/dogecloud-oss.md Docs
  • scripts/doge_upload_public_info.py Scripts