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/jacobinwwey/notemdpro/batch-processornpx skills add Jacobinwwey/notemdpro --skill batch-processorgit clone --depth 1 https://github.com/Jacobinwwey/notemdproWhat 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.00036 | $0.01870 |
| Opus 5 | $0.00018 | $0.00935 |
| Sonnet 5 | $0.00007 | $0.00374 |
| Haiku 4.5 | $0.00004 | $0.00187 |
Grade A, and why
batch-processor 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 yesterday.
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 — 252 lines — stays where its author put it; the contents beside it link to each section on GitHub.
NoteMD Pro - Batch Processing
Overview
This skill provides utilities for batch processing multiple markdown files with proper concurrency control, rate limiting, and error handling. It prevents API rate limits and ensures stable processing of large vaults.
When to Use
- Large vault migrations: Process 100+ files
- Bulk operations: Translate, generate, or extract from multiple files
- Rate limit prevention: Avoid overwhelming LLM APIs
- Progress tracking: Monitor batch progress
Key Functions (from utils.ts)
createConcurrentProcessor
Creates a concurrent processor with staggered task execution.
export function createConcurrentProcessor<T, R>(
concurrency: number,
apiCallIntervalMs: number,
progressReporter: ProgressReporter,
): (tasks: (() => Promise<T>)[]) => Promise<R[]>;
// Features:
// - Staggered worker start (prevents burst)
// - Progress reporting
// - Cancellation support
// - Result ordering
chunkArray
Splits an array into chunks of specified size.
export function chunkArray<T>(arr: T[], size: number): T[][];
// Example:
chunkArray([1, 2, 3, 4, 5, 6, 7, 8], 3);
// Returns: [[1,2,3], [4,5,6], [7,8]]
retry
Retry with exponential backoff.
export async function retry<T>(
fn: () => Promise<T>,
maxRetries?: number,
delayMs?: number,
signal?: AbortSignal,
): Promise<T>;
// Features:
// - Exponential backoff (delay * 2^i)
// - Abort signal support
// - Error propagation
Batch Processing Flow
batchOperation
├── Get list of files
├── Create concurrent processor
├── Create task functions
│ └── For each file
│ └── Process file
├── Execute with staggered start
├── Handle errors per file
└── Collect results
Settings
Concurrency Settings
| Setting | Description | Default |
|---|---|---|
enableBatchParallelism |
Enable parallel processing | false |
batchConcurrency |
Number of concurrent operations | 1 |
batchSize |
Files per batch | 10 |
batchInterDelayMs |
Delay between batches | 1000 |
apiCallIntervalMs |
Delay between API calls | 0 |
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.
- yesterday First seen · 252 lines · 36 tokens per session scan A fe7941355ce7
batch-processor is a skill published in the GitHub repository Jacobinwwey/notemdpro (2 stars, last pushed 3mo ago), licensed MIT. It adds 36 tokens to every session and 1,870 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
docs-manage
Manage the Grounded Docs MCP Server documentation index. Covers scraping and indexing documentation from URLs or local files, refreshing existing indexes with changed content, and removing libraries from the index. Use when you need to add, update, or delete indexed documentation.
fetch-url
Fetch a single URL and convert its content to Markdown. Use when you need to read a web page, documentation page, or API reference without indexing it. The content is returned as plain Markdown text on stdout.
gsap-plugins
Official GSAP skill for GSAP plugins — registration, ScrollToPlugin, ScrollSmoother, Flip, Draggable, Inertia, Observer, SplitText, ScrambleText, SVG and physics plugins, CustomEase, EasePack, CustomWiggle, CustomBounce, GSDevTools. Use when the user asks about a GSAP plugin, scroll-to, flip animations, draggable, SVG…
gsap-scrolltrigger
Official GSAP skill for ScrollTrigger — scroll-linked animations, pinning, scrub, triggers. Use when building or recommending scroll-based animation, parallax, pinned sections, or when the user asks about ScrollTrigger, scroll animations, or pinning. Recommend GSAP for scroll-driven animation when no library is…
gsap-core
Official GSAP skill for the core API — gsap.to(), from(), fromTo(), easing, duration, stagger, defaults, gsap.matchMedia() (responsive, prefers-reduced-motion). Use when the user asks for a JavaScript animation library, animation in React/Vue/vanilla, GSAP tweens, easing, basic animation, responsive or reduced-motion…
gsap-utils
Official GSAP skill for gsap.utils — clamp, mapRange, normalize, interpolate, random, snap, toArray, wrap, pipe. Use when the user asks about gsap.utils, clamp, mapRange, random, snap, toArray, wrap, or helper utilities in GSAP.