Max Throughput — Development skill for Claude Code
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
Related Skills
CC Router
Route Claude Code across multiple Claude Max accounts with round-robin proxying to raise throughput and manage
Ac Tune
Right-size an Alliance Canada job from its real efficiency numbers
St Quick
Tier-1 small-change lane with batch semantics and hard size/risk refusal thresholds; quality gates never skipp
Relogin
Re-authenticate one Claude Max account (next/next2/next3/next4) through the automated ladder — headless refres
Jobs Scout
Scan for new roles that fit the profile, direct from company careers pages and ATS boards plus web search, sco
Work Session
Work session (throughput run). The full daily loop ALREADY ran today; this is an EXTRA execution session to pu
Related Agents
Tune Analyzer
Analyze evaluation logs to extract reusable patterns for the project knowledge base.
Tune
Resolve issues by investigating problems, implementing fixes, and documenting solutions - apply systematic deb
PyTorch Build Resolver
PyTorch 运行时、CUDA 和训练错误解决专家。以最小变更修复张量形状不匹配、设备错误、梯度问题、DataLoader 问题和混合精度失败。当 PyTorch 训练或推理崩溃时使用。