A durable queue-task helper designed for resumable and idempotent batch processing in task-father environments.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install queue-task
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install queue-task using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The queue-task skill is a specialized utility designed to handle long-running, asynchronous operations within the Openclaw Skills framework. It addresses the common challenge of maintaining state across distributed or interrupted workflows by providing a structured, file-based queue system. By leveraging the task-father directory layout, it enables developers to build automation that is both reliable and scalable.
At its core, this skill focuses on durability and idempotency. It uses append-only logs to ensure that no data is lost during processing and utilizes lock files to prevent race conditions during concurrent executions. Whether you are processing large datasets or managing multi-step agent workflows, queue-task provides the necessary scaffolding to keep your jobs organized and resumable.
To get started with queue-task in your Openclaw Skills environment, follow these steps:
python3 scripts/queue_task.py init <slug>
cp config.env.example config.env
# Edit config.env with your WORKSPACE_DIR and BATCH_SIZE
python3 scripts/queue_task.py status <slug>
The skill organizes its state using a flat-file database approach within the tasks directory. This ensures portability and transparency across different Openclaw Skills implementations:
| File | Format | Purpose |
|---|---|---|
queue.jsonl |
JSONL | Stores the list of pending tasks to be processed. |
progress.json |
JSON | Tracks the current offset and metadata of the active batch. |
done.jsonl |
JSONL | A permanent log of successfully completed tasks. |
failed.jsonl |
JSONL | Captures task data and error details for failed items. |
lock.json |
JSON | Prevents concurrent execution and stores process PIDs. |
Loading
A specialized tool for AI agents to automatically move and rename local files to Microsoft OneDrive for seamless sharing on mobile chat platforms.

Integrate real-time web search capabilities into your AI agents using the Tavily API for highly relevant, structured data retrieval.

A powerful web scraping and crawling tool that utilizes the Firecrawl API to transform websites into clean, structured data optimized for AI applications.

A professional-grade AI media engine for Openclaw Skills that transforms natural language into high-fidelity images, videos, and audio.

Automate secure web logins using 1Password credentials while keeping secrets private from the AI agent.

An asynchronous AI shopping assistant that researches products across multiple sites and performs secure checkouts using 1Password-backed automation.








































