# Send Tootbot 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": "tootbot",
    "name": "Tootbot",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/behrangsa/tootbot",
    "canonicalUrl": "https://clawhub.ai/behrangsa/tootbot",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/tootbot",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tootbot",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "README.md",
      "scripts/tootbot.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "tootbot",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T14:36:58.244Z",
      "expiresAt": "2026-05-08T14:36:58.244Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tootbot",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tootbot",
        "contentDisposition": "attachment; filename=\"tootbot-0.5.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "tootbot"
      },
      "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/tootbot"
    },
    "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/tootbot",
    "downloadUrl": "https://openagent3.xyz/downloads/tootbot",
    "agentUrl": "https://openagent3.xyz/skills/tootbot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tootbot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tootbot/agent.md"
  }
}
```
## Documentation

### Mastodon Publisher

Publish content to Mastodon. Use when you need to share updates, posts, or media.

### Post one or more statuses to Mastodon

Post a new status to Mastodon with Bun:

bun {baseDir}/scripts/tootbot.js '{"status": "Hello, Mastodon!"}' '{"status": "Goodby, Mastodon!"}'

JSON fields

NameDescriptionTypeExampleRequiredDefaultstatusThe text content of the statusstring"Hello, World"yes^1N/AvisibilitySets the visibility of the posted statuspublic or private or unlisted or direct"private"no"public"languageISO 639-1 language code for this statusISO-639-1 Language Code"en"noscheduledAtDatetime at which to schedule a statusRFC3339 date time"2029-02-03T15:30:45.000Z"noquoteApprovalPolicySets who is allowed to quote the statuspublic or followrs or nobody"nobody"no"publicmediaMedia to be attached to the statusarray of {file, description} objects{"file": "/path/to/foo.png", "description" : "Foo"}no^2

^1 status can be ommitted when one or --media-path parameters are present
^2 one or media objects must be present if status is ommitted
^2 media.description is optional

Environment Variables

NameDescriptionExampleMASTODON_URLYour Mastodon instance URLhttps://mastodon.socialMASTODON_ACCESS_TOKENYour Mastodon access tokenxAyBzC

### Examples

Post a new status
bun {baseDir}/scripts/tootbot.js '{"status": "Hello, Mastodon"}'

Read the output and summarize it for the user.


Post a scheduled status
bun {baseDir}/scripts/tootbot.js '{"status": "Hello, future!", "scheduledAt" : "2030-02-05T13:21:34.000Z"}'

Read the output and summarize it for the user.


Post a scheduled status with visibility, language, quote approval policy, and a single media attachment
bun {baseDir}/scripts/tootbot.js <<EOF
{
  "status" : "Dorood",
  "visibility" : "public",
  "language" : "fa",
  "scheduledAt" : "2029-02-03T15:30:45.123456789+03:30",
  "quoteApprovalPolicy" : "followers",
  "media" : [
    {
      "file" : "/path/to/media.png",
      "description" : "Nowrooz Pirooz"
    }
  ]
}
EOF

Read the output and summarize it for the user.


Post a new status with media multiple attachments
bun {baseDir}/scripts/tootbot.js <<EOF
{
  "status" : "Edsger W Dijkstra",
  "visibility" : "public",
  "language" : "fa",
  "scheduledAt" : "2029-02-03T15:30:45.123456789+03:30",
  "quoteApprovalPolicy" : "followers",
  "media" : [
    {
      "file" : "/path/to/dijkstra.png",
      "description" : "Portrait"
    },
    {
      "file" : "/path/to/signature.png",
      "description" : "Signature"
    }
  ]
}
EOF



Post a new status with media attachments and no status text
bun {baseDir}/scripts/tootbot.js <<EOF
{
  "media" : [
    {
      "file" : "/path/to/flower-1.png",
      "description" : "White Rose"
    },
    {
      "file" : "/path/to/flower-2.png",
      "description" : "Red Rose"
    }
  ]
}
EOF

### Notes

Requires bun to be installed and available in the PATH.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: behrangsa
- Version: 0.5.0
## 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-01T14:36:58.244Z
- Expires at: 2026-05-08T14:36:58.244Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/tootbot)
- [Send to Agent page](https://openagent3.xyz/skills/tootbot/agent)
- [JSON manifest](https://openagent3.xyz/skills/tootbot/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/tootbot/agent.md)
- [Download page](https://openagent3.xyz/downloads/tootbot)