Parallel Task Executor

WarnAudited by ClawScan on May 10, 2026.

Overview

This instruction-only skill is coherent as a parallel task manager, but it tells the agent to run broad file, shell, browser, network, API, and database actions automatically and concurrently without clear safety gates.

Review this skill carefully before installing. It is not malicious from the provided artifacts, but it is a very broad automation wrapper. Use it only if you are comfortable with the agent running multiple tasks in parallel, and insist on confirmation for deletes, uploads, shell commands, scripts, API/database actions, and any background or retried work.

Findings (3)

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

A mistaken or overly broad user instruction could cause multiple destructive or account-affecting actions to run with little review.

Why it was flagged

The skill instructs the agent to handle broad high-impact operations, including deleting files, uploading files, executing shell/scripts, API calls, and database queries, but does not define approval requirements or scope limits.

Skill content
文件操作 - 创建/删除文件 ... 下载/上传文件 ... 命令执行 - Shell 命令 - 脚本执行 ... 网络请求 - API 调用 - 数据库查询
Recommendation

Require explicit confirmation for shell/script execution, deletes, uploads, API/database mutations, and browser form submissions; add path, endpoint, and operation allowlists plus dry-run or preview behavior.

What this means

If followed, the scheduler could launch more tasks than intended, amplifying errors, overloading the system, or spreading a bad instruction across many operations.

Why it was flagged

The referenced resource allocation algorithm appends tasks even after the concurrency limit is reached, so the documented max_concurrent control is not actually enforced.

Skill content
if len(allocated) >= max_concurrent:
            allocated.append(task)
        else:
            allocated.append(task)
Recommendation

Enforce a real concurrency cap with queuing/backpressure, add cancellation and stop-on-error controls, and avoid retrying or parallelizing destructive tasks by default.

What this means

Queued low-priority tasks might run later when the user is not actively watching, which matters if those tasks modify files or contact external services.

Why it was flagged

The skill discloses idle/background execution for lower-priority work; this is aligned with scheduling, but the artifacts do not describe lifecycle, cancellation, or user re-confirmation boundaries.

Skill content
低优先级任务在系统空闲时执行
Recommendation

Show pending background tasks, require confirmation before running high-impact queued work, and provide clear pause, cancel, and completion controls.