TaskQueue — Async Task Queue for AI Agents

Security checks across static analysis, malware telemetry, and agentic risk

Overview

This appears to be a purpose-aligned in-memory task queue, with the main caution that queued handlers can repeat or automate whatever actions the caller gives them.

This skill looks benign for its stated purpose. Before using it for real workflows, make sure any queued tasks that affect accounts, files, public content, or business systems have clear user approval and safe retry behavior.

Static analysis

No static analysis findings were reported for this release.

VirusTotal

VirusTotal findings are pending for this skill version.

View on VirusTotal

Risk analysis

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If a queued task sends messages, updates boards, publishes content, or changes files, the queue may automate or retry those actions.

Why it was flagged

The queue executes caller-supplied handlers or a fallback executor, which is central to a task queue but means the safety of real-world actions depends on what tasks are queued.

Skill content
if (task.handler) { resultPromise = task.handler(task); } else if (executor) { resultPromise = executor(task); }
Recommendation

Use reviewed handlers, set appropriate retry and timeout limits, and avoid automatically retrying non-idempotent or high-impact actions without user confirmation.