# Parallel

> Execute independent skills in parallel for faster results. Use when user says "run in parallel", "parallel skills", or pipes multiple skill names with "|". Integrates results after all skills complete. Use when this capability is needed.

- Skill: `tomevault-io/parallel` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/parallel`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/parallel/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/parallel

---


# Parallel Skill Execution

Executes independent skills in parallel and integrates the results.

## Syntax

```
/parallel skill1 | skill2 | skill3
```

## Parallel Execution Rules

### 1. Independence Verification

Skills executed in parallel must not depend on each other

### 2. Result Integration

Integrate results after all skills have completed

### 3. Failure Handling

- Default: Entire operation fails if any one fails
- --continue-on-error: Ignore failures and continue

## Usage Examples

```
# Parallel code review
> /parallel review-code | security-scan | audit-license

# Parallel investigation
> /parallel search-memory | tot "solution"
```

## Integrated Output Format

```markdown
## Parallel Execution Results

### skill1 (completed in Xs)

[Result 1]

### skill2 (completed in Ys)

[Result 2]

### skill3 (completed in Zs)

[Result 3]

### Summary

- Total time: max(X, Y, Z)s (parallel) vs X+Y+Zs (sequential)
- All succeeded: Yes/No
```

---
> Source: [gr1m0h/dot](https://github.com/gr1m0h/dot) — distributed by [TomeVault](https://tomevault.io).
<!-- tomevault:4.0:skill_md:2026-05-31 -->

