ClaudSkills / Dev Tools / tools-misc

Scitex Parallel

Quality score: 70/100  ·  Category: Dev Tools  ·  Sub-category: tools-misc
lang:python
Minimal thread-pool parallel execution for scientific Python — a single one-shot helper that maps a callable across argument tuples with auto CPU detection and a tqdm progress bar. Public API (1 symbol) — `run(func, args_list, n_jobs=-1, desc="Processing") -> List[Any]` (uses `ThreadPoolExecutor`, `n_jobs=-1` → `os.cpu_count()`, preserves input order in the result list, shows a `tqdm` bar labeled by `desc`). Thread-based, so best for I/O-bound workloads (HTTP fetches, file reads, API calls); CPU-bound loops remain GIL-limited — use `multiprocessing` / `joblib` / Dask / Ray for those. No CLI, no MCP tools, no extra modules. Drop-in replacement for `concurrent.futures.ThreadPoolExecutor(...).map(...)` with a manual `tqdm` wrapper, `joblib.Parallel(n_jobs=...)(delayed(f)(*a) for a in args)` (heavier dep, process-based default), and hand-rolled `threading.Thread` loops with `Queue`. Use whenever the user asks to "parallelize this loop with a progress bar", "download N URLs/PDFs in parallel", "fan out API calls across threads", "run a function over a list of arg tuples in parallel", or mentions `scitex.parallel.run`, thread pool with tqdm.

What this skill does

Scitex Parallel is a production-ready Claude Code skill (quality score 70/100) in the tools-misc sub-category. It ships as a SKILL.md file that Claude Code auto-discovers under ~/.claude/skills/scitex-parallel/ and loads when your prompt matches the skill's trigger.

When to invoke it: Use whenever the user asks to "parallelize this loop with a progress bar", "download N URLs/PDFs in parallel", "fan out API calls across threads", "run a function over a list of arg tuples in parallel", or mentions `scitex.parallel.

Who uses this skill

The Scitex Parallel skill is built for developers, power users, and teams automating repetitive workflows and improving developer experience. It is part of the open ClaudSkills registry, a community-curated catalog of 15,000+ capabilities you can install for Claude Code — the Claude CLI agent.

How to install

Free

Manual install (2 steps)

mkdir -p ~/.claude/skills/scitex-parallel
curl -L https://claudskills.com/skills/scitex-parallel/SKILL.md \
  -o ~/.claude/skills/scitex-parallel/SKILL.md

Or just download SKILL.md directly and drop it into ~/.claude/skills/scitex-parallel/. Claude Code auto-discovers it on next session.

Skills live at ~/.claude/skills/scitex-parallel/SKILL.md on macOS/Linux, or %USERPROFILE%\.claude\skills\scitex-parallel\SKILL.md on Windows. See the full install guide for step-by-step instructions.

Pro

One-click install via the desktop app

The ClaudSkills desktop app installs any skill directly into ~/.claude/skills/ with one click — no terminal required. Pro starts at $9/mo or $149 lifetime.

More Dev Tools skills

Browse all Dev Tools skills in the ClaudSkills registry, or explore these top-rated picks from the same category:

Browse all Dev Tools skills → Top 100 skills
Part of ClaudSkills — the open registry for Claude Code skills.  ·  What's New  ·  Install guide  ·  About  ·  llms.txt