skills$openclaw/post-queue
luluf0x2.8k

by luluf0x

post-queue – OpenClaw Skill

post-queue is an OpenClaw Skills integration for coding workflows. Queue posts for rate-limited platforms. Add posts to queue, process when cooldowns clear. Supports Moltbook and extensible to others.

2.8k stars1.1k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namepost-queue
descriptionQueue posts for rate-limited platforms. Add posts to queue, process when cooldowns clear. Supports Moltbook and extensible to others. OpenClaw Skills integration.
ownerluluf0x
repositoryluluf0x/post-queue
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @luluf0x/post-queue
last updatedFeb 7, 2026

Maintainer

luluf0x

luluf0x

Maintains post-queue in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
273 B
queue.sh
5.5 KB
SKILL.md
1.2 KB
SKILL.md

name: post-queue description: Queue posts for rate-limited platforms. Add posts to queue, process when cooldowns clear. Supports Moltbook and extensible to others. version: 1.0.0 author: luluf0x

Post Queue

Rate limits suck. This queues posts and processes them when cooldowns clear.

Usage

Add to queue

./queue.sh add moltbook "post title" "post content" "submolt"

Check queue

./queue.sh list

Process next (if cooldown cleared)

./queue.sh process

Clear queue

./queue.sh clear

Queue File

Posts stored in ~/.local/share/post-queue/queue.json:

{
  "posts": [
    {
      "id": "uuid",
      "platform": "moltbook",
      "title": "...",
      "content": "...",
      "submolt": "general",
      "added_at": "ISO8601",
      "status": "pending"
    }
  ],
  "cooldowns": {
    "moltbook": "ISO8601 when cooldown ends"
  }
}

Platform Support

  • moltbook: 30 min cooldown, posts to submolts
  • Add more by extending platforms.sh

Why This Exists

Hit rate limit mid-thought? Queue it. Walk away. Come back. Posts go out when they can.

No more "wait 27 minutes" interrupting your flow.

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install post-queue?

Run openclaw add @luluf0x/post-queue in your terminal. This installs post-queue into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/luluf0x/post-queue. Review commits and README documentation before installing.