{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/xqueue",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=xqueue",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "xqueue-post.py",
      "xqueue-setup.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/xqueue",
    "agentPageUrl": "https://openagent3.xyz/skills/xqueue/agent",
    "manifestUrl": "https://openagent3.xyz/skills/xqueue/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/xqueue/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "XQueue",
        "body": "A file-based post scheduler for X (Twitter). Your file system is the UI."
      },
      {
        "title": "How It Works",
        "body": "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.\n\nxqueue/\n  config.json\n  backlog/\n    ebook-launch-thread.md\n    ai-tools-roundup.md\n  Sunday/\n    10am/\n      my-tweet.md\n      photo.jpg\n  Monday/\n    9am/\n      thread-about-shipping.md\n    12pm/\n    5pm/\n  Tuesday/\n    ...\n\nThe 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.\n\nAfter posting, files are deleted (by default) so they don't repeat."
      },
      {
        "title": "Setup",
        "body": "Run the setup command to create your queue:\n\npython3 xqueue-setup.py\n\nThis asks you:\n\nHow many times per day do you want to post?\nWhat times? (or let it pick optimal times)\nWhat timezone?\nAny X communities to post to?\nThread separator preference (default: ---)\nDelete after posting? (recommended yes — if off, posts may send twice)\n\nCreates the full folder structure + config.json."
      },
      {
        "title": "Simple tweet",
        "body": "Just write the text in a .md or .txt file:\n\nThis is my tweet. It can be up to 280 characters."
      },
      {
        "title": "Tweet with community",
        "body": "Start with Post to [community name]: on the first line:\n\nPost to Build in Public: Just shipped my first ClawHub skill. File-based tweet scheduler, no frontend needed."
      },
      {
        "title": "Thread",
        "body": "One file, tweets separated by your configured separator (default ---):\n\nI built a file-based tweet scheduler with no frontend. Your filesystem is the UI.\n---\nDrop a .md file into Monday/9am/ and a cron job posts it. Empty slot? It pulls from a backlog/ folder automatically.\n---\nNo database, no app, no dashboard. Just folders and text files. Sometimes the simplest architecture wins."
      },
      {
        "title": "Tweet with media",
        "body": "Put image/video files in the same time folder as the tweet. Supported: JPG, PNG, GIF (under 5MB for images, 15MB for GIF).\n\n9am/\n  tweet.md        ← the text\n  progress.png    ← gets attached\n\nIf multiple media files exist, they attach in alphabetical order (max 4 per tweet)."
      },
      {
        "title": "Config",
        "body": "xqueue/config.json:\n\n{\n  \"timezone\": \"America/Chicago\",\n  \"separator\": \"---\",\n  \"deleteAfterPost\": true,\n  \"communities\": {\n    \"Build in Public\": \"community_id\",\n    \"Indie Hackers\": \"community_id\"\n  },\n  \"logFile\": \"xqueue/posted.log\",\n  \"dryRun\": false\n}\n\nDuring 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."
      },
      {
        "title": "Backlog",
        "body": "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).\n\nThis 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."
      },
      {
        "title": "Cron Integration",
        "body": "The skill includes a cron job that runs every 15 minutes:\n\nChecks current day + time against folder structure\nIf slot has content → post it\nIf slot is empty → pull oldest from backlog/\nIf both are empty → skip\nLogs results to posted.log\nDeletes posted files (if deleteAfterPost is on)"
      },
      {
        "title": "What Goes Where",
        "body": "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"
      },
      {
        "title": "Important",
        "body": "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.\nTweets over 280 characters are rejected (logged as error, not posted).\nThread tweets are each checked for 280 char limit individually.\nEmpty folders are silently skipped.\nThe cron checks every 15 minutes, so posts go out within 0-15 min of the scheduled time."
      }
    ],
    "body": "XQueue\n\nA file-based post scheduler for X (Twitter). Your file system is the UI.\n\nHow It Works\n\nCreate 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.\n\nxqueue/\n  config.json\n  backlog/\n    ebook-launch-thread.md\n    ai-tools-roundup.md\n  Sunday/\n    10am/\n      my-tweet.md\n      photo.jpg\n  Monday/\n    9am/\n      thread-about-shipping.md\n    12pm/\n    5pm/\n  Tuesday/\n    ...\n\n\nThe 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.\n\nAfter posting, files are deleted (by default) so they don't repeat.\n\nSetup\n\nRun the setup command to create your queue:\n\npython3 xqueue-setup.py\n\n\nThis asks you:\n\nHow many times per day do you want to post?\nWhat times? (or let it pick optimal times)\nWhat timezone?\nAny X communities to post to?\nThread separator preference (default: ---)\nDelete after posting? (recommended yes — if off, posts may send twice)\n\nCreates the full folder structure + config.json.\n\nTweet Format\nSimple tweet\n\nJust write the text in a .md or .txt file:\n\nThis is my tweet. It can be up to 280 characters.\n\nTweet with community\n\nStart with Post to [community name]: on the first line:\n\nPost to Build in Public: Just shipped my first ClawHub skill. File-based tweet scheduler, no frontend needed.\n\nThread\n\nOne file, tweets separated by your configured separator (default ---):\n\nI built a file-based tweet scheduler with no frontend. Your filesystem is the UI.\n---\nDrop a .md file into Monday/9am/ and a cron job posts it. Empty slot? It pulls from a backlog/ folder automatically.\n---\nNo database, no app, no dashboard. Just folders and text files. Sometimes the simplest architecture wins.\n\nTweet with media\n\nPut image/video files in the same time folder as the tweet. Supported: JPG, PNG, GIF (under 5MB for images, 15MB for GIF).\n\n9am/\n  tweet.md        ← the text\n  progress.png    ← gets attached\n\n\nIf multiple media files exist, they attach in alphabetical order (max 4 per tweet).\n\nConfig\n\nxqueue/config.json:\n\n{\n  \"timezone\": \"America/Chicago\",\n  \"separator\": \"---\",\n  \"deleteAfterPost\": true,\n  \"communities\": {\n    \"Build in Public\": \"community_id\",\n    \"Indie Hackers\": \"community_id\"\n  },\n  \"logFile\": \"xqueue/posted.log\",\n  \"dryRun\": false\n}\n\n\nDuring 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.\n\nBacklog\n\nThe 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).\n\nThis 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.\n\nCron Integration\n\nThe skill includes a cron job that runs every 15 minutes:\n\nChecks current day + time against folder structure\nIf slot has content → post it\nIf slot is empty → pull oldest from backlog/\nIf both are empty → skip\nLogs results to posted.log\nDeletes posted files (if deleteAfterPost is on)\nWhat Goes Where\nYou want to...\tDo this\nSchedule a tweet for Tuesday 9am\tDrop a .md file in xqueue/Tuesday/9am/\nPost a thread\tOne .md file with --- between tweets\nAttach an image\tPut the image file in the same folder as the .md file\nPost to a community\tStart text with Post to Community Name:\nReorder posts\tMove files between time folders\nSkip a time slot\tLeave the folder empty\nSee what's queued\tBrowse the xqueue folder\nSee what already posted\tCheck xqueue/posted.log\nQueue content without a specific time\tDrop it in xqueue/backlog/\nControl backlog order\tPrefix filenames: 01-first.md, 02-second.md\nImportant\ndeleteAfterPost: 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.\nTweets over 280 characters are rejected (logged as error, not posted).\nThread tweets are each checked for 280 char limit individually.\nEmpty folders are silently skipped.\nThe cron checks every 15 minutes, so posts go out within 0-15 min of the scheduled time."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/meimakes/xqueue",
    "publisherUrl": "https://clawhub.ai/meimakes/xqueue",
    "owner": "meimakes",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}