← Back to Skills Marketplace
78
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install openclaw-skill-parallel-tasks
Description
Execute multiple tasks in parallel with timeout protection, error isolation, and real-time progress feedback. Use when user says "run these in parallel", "pa...
Usage Guidance
This skill is plausibly what it claims (a parallel task runner) but it has a few red flags you should verify before installing: 1) The code calls an external 'hermes' CLI to spawn sessions but the skill metadata does not list any required binary—ensure your environment provides a trusted hermes binary or that the skill is updated to declare it. 2) The executor forwards the entire process.env to spawned processes; if your agent runtime holds secrets (API keys, tokens), those could be exposed to the hermes process—ask the author to avoid forwarding unrelated env vars or to document exactly what hermes needs. 3) Task text read from files or stdin is passed verbatim to an external CLI; review/validate task inputs to avoid accidental leakage of sensitive content or injection into the external subsystem. If you trust the hermes CLI and the skill author, require an update to declare required binaries and to minimize env forwarding; otherwise treat this as untrusted code and audit carefully before use.
Capability Analysis
Type: OpenClaw Skill
Name: openclaw-skill-parallel-tasks
Version: 1.0.0
The skill provides a utility for parallel task execution within the OpenClaw environment by spawning sub-sessions via the 'hermes cli'. The implementation in 'scripts/executor.ts' manages concurrency, timeouts, and error isolation as described in 'SKILL.md' and 'README.md'. While the script contains a minor vulnerability in how it handles command-line arguments (splitting by spaces after joining strings), there is no evidence of malicious intent, data exfiltration, or unauthorized persistence. The code is well-documented and its high-risk capabilities (spawning processes) are essential to its stated purpose.
Capability Assessment
Purpose & Capability
The skill's description is a parallel-task executor and the code implements that. However, the package metadata declares no required binaries or environment variables while the code clearly spawns an external 'hermes' CLI to run tasks. If the skill needs to spawn sessions via Hermes, the hermes binary (or an equivalent integration) should be declared; omitting it is an incoherence between stated requirements and actual capabilities.
Instruction Scope
SKILL.md and executor.ts instruct the agent to spawn external sessions using the hermes CLI, read tasks from files or stdin, and print progress. Those actions are within the skill's purpose, but they also allow reading arbitrary files (--tasks-file, /dev/stdin) and will hand user-supplied task text to an external CLI. The instructions do not constrain or sanitize inputs and do not warn about sensitive data in task descriptions.
Install Mechanism
No install/download steps are present (instruction-only with included source). That minimizes supply-chain risk because nothing is fetched from an external URL. The presence of a local script is expected for a CLI utility.
Credentials
The code spawns child processes with env: { ...process.env } (it forwards the entire environment) but the skill declares no required credentials. Forwarding the full environment to spawned processes can leak secrets from the agent/runtime to the hermes process. Also the code conditionally uses process.env.DEBUG. The skill should either declare/justify required environment access or avoid forwarding unrelated secrets.
Persistence & Privilege
always is false and the skill is user-invocable. It does not request persistent installation privileges or attempt to modify other skills or system settings. Autonomous invocation is allowed by default and not by itself a problem.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install openclaw-skill-parallel-tasks - After installation, invoke the skill by name or use
/openclaw-skill-parallel-tasks - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of the Parallel Tasks Skill — run multiple tasks concurrently with robust timeout and error isolation.
- Enables users to execute multiple independent tasks in parallel rather than sequentially.
- Provides per-task timeout protection and isolates errors so other tasks continue unaffected.
- Includes real-time progress feedback in the terminal, with clear status and duration for each task.
- Supports various input formats (named, bullet, numbered, plain text) and configurable concurrency limits.
- Offers CLI with flexible options: per-task timeout, max concurrency, error handling, and progress control.
Metadata
Frequently Asked Questions
What is Openclaw Skill Parallel Tasks?
Execute multiple tasks in parallel with timeout protection, error isolation, and real-time progress feedback. Use when user says "run these in parallel", "pa... It is an AI Agent Skill for Claude Code / OpenClaw, with 78 downloads so far.
How do I install Openclaw Skill Parallel Tasks?
Run "/install openclaw-skill-parallel-tasks" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Openclaw Skill Parallel Tasks free?
Yes, Openclaw Skill Parallel Tasks is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Openclaw Skill Parallel Tasks support?
Openclaw Skill Parallel Tasks is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Openclaw Skill Parallel Tasks?
It is built and maintained by qiukui666 (@qiukui666); the current version is v1.0.0.
More Skills