Promethe-us

Max Throughput — Development skill for Claude Code

Development community

Agent skill: max-throughput execution for coding agents - probe hardware, parallelize aggressively, profile the real bottleneck, tune batch size / dataloader / pre-encode.

How to install Max Throughput

This entry records only its repository, not the path inside it, so there is no exact command to give. Open Promethe-us/max-throughput and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Max Throughput does

Agent skill: max-throughput execution for coding agents - probe hardware, parallelize aggressively, profile the real bottleneck, tune batch size / dataloader / pre-encode. Works with Cursor, Codex, Claude Code.

Alternatives in Development

  • Happy Coder — by GrocerPublishAgent - Spawn and control multiple Claude Codes in parallel from your phone or desktop 15.7k ★
  • Microsandbox — Open-source self-hosted MicroVM sandboxes with sub-200ms startup, hardware-level isolation via libkrun 5k ★
  • Bypass 403 — Probe a 403/401 endpoint with the most-paid bypass tricks (header injection, path encoding, method swap, WAF f 4.5k ★

README

max-throughput

An [Agent Skills](https://agentskills.io) compatible skill that makes coding agents (Cursor, Codex, Claude Code, ...) stop running your expensive machine single-threaded.

**The problem it solves:** agents happily execute `python train.py` on an 8-GPU box and `pytest` on a 128-core workstation, one thing after another. The default objective becomes *minimum wall-clock completion time*: probe the hardware, build a work DAG, and dispatch everything concurrently - agent-level parallelism, multi-GPU DDP, per-GPU experiment packing, `pytest -n auto`, `make -j$(nproc)` - then verify utilization and escalate parallelism if resources sit idle.

Install

With the [skills CLI](https://skills.sh) (works for Cursor, Codex, Claude Code and more):

# pick your agent with -a, repeat to install for several at once
npx skills add Promethe-us/max-throughput -g -a cursor
npx skills add Promethe-us/max-throughput -g -a codex

Manual install: copy this folder into your agent's skill directory, e.g.

~/.cursor/skills/max-throughput/
~/.codex/skills/max-throughput/     (or reference via AGENTS.md)
~/.claude/skills/max-throughput/

What the agent will do differently

Before After
python train.py on 8 GPUs torchrun --standalone --nproc_per_node=8 train.py
experiments queued one by one experiments packed one per GPU via CUDA_VISIBLE_DEVICES
pytest pytest -n auto
make make -j$(nproc)
serial preprocessing loop sharded inputs via multiprocessing / GNU parallel
guesses a knob when slow profiles first (quick_triage.py, py-spy, torch.profiler), then tunes the measured bottleneck: batch size, num_workers, prefetch, pre-encode, AMP/compile
never checks anything runs scripts/inspect_resources.py, then nvidia-smi / top to confirm the machine is actually saturated

Structure

max-throughput/
├── SKILL.md                        # the skill itself (name + description + instru