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

### XQueue

A file-based post scheduler for X (Twitter). Your file system is the UI.

### How It Works

Create a folder structure with days and times. Drop tweet files into the time slots. A cron job checks every 15 minutes — if it's the right day and time and there's content, it posts and cleans up.

xqueue/
  config.json
  backlog/
    ebook-launch-thread.md
    ai-tools-roundup.md
  Sunday/
    10am/
      my-tweet.md
      photo.jpg
  Monday/
    9am/
      thread-about-shipping.md
    12pm/
    5pm/
  Tuesday/
    ...

The schedule cycles weekly. Monday's 9am slot fires every Monday at 9am. If the folder is empty, it pulls the oldest file from backlog/ (sorted alphabetically). If there's content in the slot, it posts that and backlog waits. This means you can schedule up to a week of specific content, and dump everything else in backlog — it'll fill empty slots automatically.

After posting, files are deleted (by default) so they don't repeat.

### Setup

Run the setup command to create your queue:

python3 xqueue-setup.py

This asks you:

How many times per day do you want to post?
What times? (or let it pick optimal times)
What timezone?
Any X communities to post to?
Thread separator preference (default: ---)
Delete after posting? (recommended yes — if off, posts may send twice)

Creates the full folder structure + config.json.

### Simple tweet

Just write the text in a .md or .txt file:

This is my tweet. It can be up to 280 characters.

### Tweet with community

Start with Post to [community name]: on the first line:

Post to Build in Public: Just shipped my first ClawHub skill. File-based tweet scheduler, no frontend needed.

### Thread

One file, tweets separated by your configured separator (default ---):

I built a file-based tweet scheduler with no frontend. Your filesystem is the UI.
---
Drop a .md file into Monday/9am/ and a cron job posts it. Empty slot? It pulls from a backlog/ folder automatically.
---
No database, no app, no dashboard. Just folders and text files. Sometimes the simplest architecture wins.

### Tweet with media

Put image/video files in the same time folder as the tweet. Supported: JPG, PNG, GIF (under 5MB for images, 15MB for GIF).

9am/
  tweet.md        ← the text
  progress.png    ← gets attached

If multiple media files exist, they attach in alphabetical order (max 4 per tweet).

### Config

xqueue/config.json:

{
  "timezone": "America/Chicago",
  "separator": "---",
  "deleteAfterPost": true,
  "communities": {
    "Build in Public": "community_id",
    "Indie Hackers": "community_id"
  },
  "logFile": "xqueue/posted.log",
  "dryRun": false
}

During setup, paste the community URL (like x.com/i/communities/123456) or the numeric ID directly. The script extracts the ID and asks for a display name. Plain names without an ID are rejected — everything needed to post is captured upfront.

### Backlog

The xqueue/backlog/ folder holds tweets that aren't scheduled for a specific slot. When the cron fires and a time slot is empty, it pulls the oldest file from backlog (alphabetical sort — prefix with numbers like 01-, 02- to control order).

This lets you batch-write content without worrying about fitting it into exactly the right number of weekly slots. Schedule what's time-sensitive, backlog the rest.

### Cron Integration

The skill includes a cron job that runs every 15 minutes:

Checks current day + time against folder structure
If slot has content → post it
If slot is empty → pull oldest from backlog/
If both are empty → skip
Logs results to posted.log
Deletes posted files (if deleteAfterPost is on)

### What Goes Where

You want to...Do thisSchedule a tweet for Tuesday 9amDrop a .md file in xqueue/Tuesday/9am/Post a threadOne .md file with --- between tweetsAttach an imagePut the image file in the same folder as the .md filePost to a communityStart text with Post to Community Name:Reorder postsMove files between time foldersSkip a time slotLeave the folder emptySee what's queuedBrowse the xqueue folderSee what already postedCheck xqueue/posted.logQueue content without a specific timeDrop it in xqueue/backlog/Control backlog orderPrefix filenames: 01-first.md, 02-second.md

### Important

deleteAfterPost: true (default) means each file posts once then gets removed. If you turn this off, the same content will post again next week when the cycle repeats.
Tweets over 280 characters are rejected (logged as error, not posted).
Thread tweets are each checked for 280 char limit individually.
Empty folders are silently skipped.
The cron checks every 15 minutes, so posts go out within 0-15 min of the scheduled time.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: meimakes
- Version: 1.0.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-01T21:19:40.334Z
- Expires at: 2026-05-08T21:19:40.334Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/xqueue)
- [Send to Agent page](https://openagent3.xyz/skills/xqueue/agent)
- [JSON manifest](https://openagent3.xyz/skills/xqueue/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/xqueue/agent.md)
- [Download page](https://openagent3.xyz/downloads/xqueue)