batch-run

batch-run is a skill for Claude Code from matteotitta/genesys-skills. It costs 136 tokens per session (1,817 once invoked), scanned A, original, MIT.

A command that runs the same skill for multiple entities in parallel, such as several products, competitors, or web pages. Each run receives shared context supplied by the user.

In plain words
What is it for?
Use it to run product messaging, competitor research, or landing-page work across a list of entities, with optional output and parallel-run settings.
Why use it?
It avoids repeating a single-skill task manually for every item while preserving a separate result for each entity.

Skill for Claude Code

Written for Claude Code: paths in frontmatter. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions subagents.

Good fit Use it to run product messaging, competitor research, or landing-page work across a list of entities, with optional output and parallel-run settings.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/matteotitta/genesys-skills/batch-run
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add matteotitta/genesys-skills --skill batch-run
Clone the repo
git clone --depth 1 https://github.com/matteotitta/genesys-skills

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for batch-run

README.md
[![agentmods](https://agentmods.dev/badge/skills/matteotitta/genesys-skills/batch-run/github.svg)](https://agentmods.dev/skills/matteotitta/genesys-skills/batch-run)
Your own site
<a href="https://agentmods.dev/skills/matteotitta/genesys-skills/batch-run"><img src="https://agentmods.dev/badge/skills/matteotitta/genesys-skills/batch-run/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for batch-run

Your own site · 80×15
<a href="https://agentmods.dev/skills/matteotitta/genesys-skills/batch-run"><img src="https://agentmods.dev/badge/skills/matteotitta/genesys-skills/batch-run.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 136 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,817 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00136 $0.01817
Opus 5 $0.00068 $0.00908
Sonnet 5 $0.00027 $0.00363
Haiku 4.5 $0.00014 $0.00182

Measured 10d ago against content hash d14ca6a855be, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

batch-run scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/meta/orchestration/batch-run/SKILL.md · 213 lines

How it starts

The opening of the file, as written. The whole thing — 213 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/batch-run — Fan Out Any Skill Across N Entities

Dispatches N parallel subagents to run the same skill across a list of entities, with shared upstream context injected into each run.


Claude Code Triggers

Invoke when user says:

  • "/batch-run --entities 'a,b,c'"
  • "Run product-messaging for all 8 ClientCo products"
  • "Fan out competitor-research across these 5 competitors"
  • "Parallelize landing-page-copy across home, pricing, about"
  • "Run [skill] for each of [list]"

Do NOT invoke when:

  • User wants a single skill run (invoke the skill directly)
  • User wants a sequential chain (use /website-build or workflow-design)
  • Entities have cross-dependencies (shared state breaks parallelization)

Input Format

/batch-run <skill-name> \
  --entities "entity1, entity2, entity3" \
  [--client <slug>] \
  [--context <path-to-upstream-output>] \
  [--output-dir <path>] \
  [--max-parallel <N>]

Required:

  • <skill-name> — must exist in skill-catalog (e.g., product-messaging, competitor-research)
  • --entities — comma-separated list of entity names

Optional:

  • --client — client slug for folder routing (e.g., ClientCo, ClientCo)
  • --context — path to upstream deliverable that provides shared context (e.g., positioning doc)
  • --output-dir — override default output location
  • --max-parallel — cap concurrent agents (default: 5, max: 10)

Execution Workflow

Phase 1: Validate inputs

  1. Check <skill-name> exists in .claude/skills/ — fail fast if unknown
  2. Read the skill's SKILL.md to extract:
    • Required dependencies (upstream skills)
    • Output type + default location
    • Review gate level
  3. Verify --context file exists if provided
  4. Resolve --client slug against .claude/rules/consulting-clients.md folder structure

Phase 2: Build shared context package

For each subagent, the context package contains:

  • Skill SKILL.md — the full skill instructions
  • Shared upstream context — from --context flag or auto-detected (e.g., positioning.md in client folder)
  • Entity-specific input — the current entity name + any entity-specific context in the client folder (e.g., projects/consulting/ClientCo/docs/treasury.md)
  • Client CLAUDE.md — voice, brand, quality bar

Read the full file on GitHub · 213 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 213 lines · 136 tokens per session scan A d14ca6a855be

Subscribe to this mod's changes

batch-run is a skill published in the GitHub repository matteotitta/genesys-skills (36 stars, last pushed 1mo ago), licensed MIT. It adds 136 tokens to every session and 1,817 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

gingiris-b2b-growth

🇺🇸 B2B SaaS Growth — PLG vs SLG Playbook — Diagnose whether your problem is distribution, pricing, or PMF. PLG/SLG selection by ACV and sales cycle, the 5-stage path from $0 to $10M ARR, NRR discipline, affiliate & channel motion, enterprise tiering. Built from HeyGen, Deel, Vercel, Supabase, Snowflake patterns.…

Gingiris-1031/gingiris-skills · 484 tokens

go-to-market-playbook

A reusable Go-to-Market strategy template for both B2B and B2C launches. Covers positioning, messaging, ICP definition, channel selection, and competitive analysis frameworks. By @WeiYipei.

Gingiris-1031/gingiris-skills · 48 tokens

gr-b2b-growth

A guide to growing a business-to-business software product from early user research to large-scale sales. B2B software is sold to companies rather than individual consumers.

Gingiris-1031/gingiris-skills · 83 tokens

gingiris-go-global

🇺🇸 AI Product / SaaS Go-Global Complete SOP — From competitor research to launch to monetization. A full-cycle playbook covering Phase 0-5 (market validation, positioning, first 100 users, user interviews, beta-to-growth) plus open-source launch, Product Hunt, Reddit, SEO/GEO, conversion, and org principles.…

Gingiris-1031/gingiris-skills · 534 tokens

gr-competitor-research

Your competitor just launched. You have no idea how they grew so fast. Should you reverse-engineer their website? Track their social media? Map their growth flywheel? This gives you the complete SOP — from Wayback Machine snapshots to X/Twitter propagation analysis to growth flywheel scoring. Built from 150+ AI…

Gingiris-1031/gingiris-skills · 582 tokens

ai-launch-playbook

Launch your AI product to global attention — the playbook behind Manus, Devin, and AFFiNE's breakout launches. Covers AI-specific GTM strategy, hype cycle management, waitlist tactics, and multi-market rollout for maximum day-one impact.

Gingiris-1031/gingiris-skills · 54 tokens