# Send Weibo Microblogging CLI 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": "weibo",
    "name": "Weibo Microblogging CLI",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/oscraters/weibo",
    "canonicalUrl": "https://clawhub.ai/oscraters/weibo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/weibo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=weibo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "OPENCLAW_SECRETS_REMEDIATION_PLAN.md",
      "README.md",
      "SKILL.md",
      "references/api_guide.md",
      "scripts/weibo_cli.sh",
      "weibo-brave-search/SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "weibo",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T23:54:03.376Z",
      "expiresAt": "2026-05-17T23:54:03.376Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=weibo",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=weibo",
        "contentDisposition": "attachment; filename=\"weibo-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "weibo"
      },
      "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/weibo"
    },
    "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/weibo",
    "downloadUrl": "https://openagent3.xyz/downloads/weibo",
    "agentUrl": "https://openagent3.xyz/skills/weibo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/weibo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/weibo/agent.md"
  }
}
```
## Documentation

### Weibo

Use this skill to collect Weibo signals with reproducible Weibo Open Platform API calls and CLI automation.

### Quick Start

Review references/api_guide.md for current official endpoints and constraints.
Provide credentials through OpenClaw skill config or secure environment injection.
Generate an authorization URL:
bash scripts/weibo_cli.sh oauth-authorize-url
Exchange code for a token:
bash scripts/weibo_cli.sh oauth-access-token --code "<code>"
Call endpoints:
bash scripts/weibo_cli.sh public-timeline --count 20

### Primary Interface

Use the Bash CLI first:

scripts/weibo_cli.sh: OAuth2 + direct API command interface, optimized for agentic runs.

Optional companion skill:

weibo-brave-search: separate fallback skill for site:weibo.com search through Brave Search API.

### Recommended Workflow

Validate provider requirements in references/api_guide.md.
Run oauth-authorize-url, open URL, capture code.
Run oauth-access-token --code ... and store token securely.
Use endpoint helpers (public-timeline, user-timeline, search-topics) or call.
If API access is blocked and you explicitly want a separate commercial fallback, use the weibo-brave-search skill instead of this one.

### CLI Command Surface

oauth-authorize-url
oauth-access-token --code <code>
oauth-token-info
public-timeline [--count N] [--page N]
user-timeline --uid <uid> [--count N]
search-topics --q <query>
call --method GET --path /2/... --param key=value

Run bash scripts/weibo_cli.sh --help for details.

### Credentials And Secret Handling

Credential classes:

VariableRequiredSensitiveUsed forWEIBO_APP_KEYYesNoOAuth client identifierWEIBO_APP_SECRETYesYesOAuth token exchangeWEIBO_REDIRECT_URIYesNoOAuth callbackWEIBO_ACCESS_TOKENOptionalYesAuthenticated API calls after token issuance

OpenClaw configuration guidance:

Set skills.entries.weibo.apiKey to a SecretRef or plaintext value only for WEIBO_APP_SECRET, because this skill declares WEIBO_APP_SECRET as its primaryEnv.
Set skills.entries.weibo.env.WEIBO_APP_KEY and skills.entries.weibo.env.WEIBO_REDIRECT_URI as regular env config.
If you want pre-issued token flows, set skills.entries.weibo.env.WEIBO_ACCESS_TOKEN from your external secret manager or deployment environment.

Warnings:

WEIBO_APP_SECRET and WEIBO_ACCESS_TOKEN are sensitive and must not be committed.
OpenClaw's documented SecretRef audit path covers skills.entries.<skillKey>.apiKey; it does not give the same visibility for arbitrary ad hoc env vars.
If you inject WEIBO_ACCESS_TOKEN through plain environment variables, store it in your external secrets manager or deployment environment and do not treat it as registry-managed unless you have configured it that way intentionally.
This skill makes network calls to https://api.weibo.com.

### Notes

Prefer JSON output for downstream automation.
Keep requests minimal and paginated to reduce rate-limit pressure.
Use the official docs linked in references/api_guide.md as source of truth when endpoint behavior conflicts with old SDK examples.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: oscraters
- Version: 1.0.1
## 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-10T23:54:03.376Z
- Expires at: 2026-05-17T23:54:03.376Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/weibo)
- [Send to Agent page](https://openagent3.xyz/skills/weibo/agent)
- [JSON manifest](https://openagent3.xyz/skills/weibo/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/weibo/agent.md)
- [Download page](https://openagent3.xyz/downloads/weibo)