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.
npx agentmods add skills/cocorof/geny-executor/batchnpx skills add CocoRoF/geny-executor --skill batchgit clone --depth 1 https://github.com/CocoRoF/geny-executorWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00038 | $0.00732 |
| Opus 5 | $0.00019 | $0.00366 |
| Sonnet 5 | $0.00008 | $0.00146 |
| Haiku 4.5 | $0.00004 | $0.00073 |
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 2d 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.
How it starts
The opening of the file, as written. The whole thing — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Batch — same operation, every item
You're applying one operation across a list. Be uniform: every item should get the same depth and same output shape. The caller's downstream pipeline almost certainly expects regular output.
Inputs
${items}— the list. Comma-separated by default; if entries contain commas, the caller may have used newlines instead. Trim whitespace and drop empty entries.${operation}— what to do for each item. A short verb phrase ("summarise", "check status", "lint and report"). If missing, ask the user once — don't guess.
Algorithm
- Parse
items. Confirm count back to the user one time at the start: "I'll run operation on N items: ..." (no need to list all if N is large; show first 3 + "...and M more"). - For each item:
- Run the operation.
- Emit a fixed-shape result entry. The shape is always:
## <item> <findings — 1–3 sentences> **Status**: ok | warning | error | n/a - If a single item fails or is unanswerable, mark its Status
as
error/n/awith a one-line reason. Do not abort the whole batch.
- After every item is processed, emit a one-paragraph summary:
- How many ran cleanly?
- Common patterns / common failures?
- One follow-up suggestion (if any).
Constraints
- Don't think out loud per-item — the loop should feel mechanical. Save reasoning for the final summary.
- Don't re-order the list. Whatever order the user provided is the canonical order; the user may rely on it for downstream processing.
- Don't skip items silently. Every input item must appear in the output (even if the entry is just "n/a — couldn't reach").
When this is the wrong fit
If items differ enough that the same operation produces wildly different outputs (e.g. "review this codebase" vs "review this README"), bail out early: tell the user the items aren't uniform and ask whether to split into per-type batches. A consistent shape matters more than processing every item.
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.
- 2d ago First seen · 72 lines · 38 tokens per session scan A 5a066fac712b
Batch Run is a skill published in the GitHub repository CocoRoF/geny-executor (2 stars, last pushed 4d ago), licensed Apache-2.0. It adds 38 tokens to every session and 732 once invoked, about $0.0002 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-31.
Other skills, from other repositories
agentlas-operations
Agentlas 시스템 운용 절차 — hep-network 편성, hep-graph 자동화, cargo/Agent Cloud·marketplace 활용, workforce 로스터 재사용, 메모리 계약. One(개인 에이전트)이 Agentlas를 조작할 때 이 절차를 따른다.
zoom-meeting-scribe
Listen-only scribe workflow for Zoom meetings. Silently understand and record meeting transcripts delivered via RTMS, escalate only urgent matters to your supervisor, and post the report only after human approval once the meeting ends. Use when: receiving an inbox message with source=zoom (carrying a "[Zoom会議実況 チャンク#N…
apple-tools
Reach Apple PIM data (Calendar, Contacts, Reminders, Messages, Location, Maps, Weather) from a pi session via iMCP + pi-mcp-adapter on macOS. Use when the user asks to read/search their Apple Calendar, Contacts, Reminders, iMessages, current Location, Maps, or Weather. Does NOT cover Apple Mail — iMCP exposes no Mail…
cron
Scheduling rules for reminders and recurring tasks.
workflow-helper
Guidance for creating, managing and executing workflow automations that chain multiple tools and agents together. Use when the user asks about building, listing, running or composing workflows and automated task pipelines.
auto-dev
풀 사이클 개발 — plan → go → sync를 순차 실행합니다.