# Send Doge Oss Upload 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. 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

```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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "doge-oss-skill",
    "name": "Doge Oss Upload",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/white0dew/doge-oss-skill",
    "canonicalUrl": "https://clawhub.ai/white0dew/doge-oss-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/doge-oss-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=doge-oss-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/dogecloud-oss.md",
      "scripts/doge_upload_public_info.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/doge-oss-skill"
    },
    "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/doge-oss-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/doge-oss-skill",
    "agentUrl": "https://openagent3.xyz/skills/doge-oss-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/doge-oss-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/doge-oss-skill/agent.md"
  }
}
```
## Documentation

### 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: white0dew
- Version: 0.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/doge-oss-skill)
- [Send to Agent page](https://openagent3.xyz/skills/doge-oss-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/doge-oss-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/doge-oss-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/doge-oss-skill)