parallel-agents — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited parallel-agents (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use this when work should be fanned out across many isolated environments: N agents on N tasks, a config sweep, or sharding a workload — and each worker needs a real machine, not a coroutine. Box move: configure one box (clone, install, secrets), then fork it; each fork is an independent VM from that snapshot, so you skip re-provisioning every machine.
Box forks at the disk level, not memory — a fork does not keep the parent's running processes; re-run your start command after fork. For running-process fork or routinely 1000+ concurrent VMs with <500 ms boot, E2B/Modal are built for that. Box's sweet spot: tens of persistent, cheap, fully-isolated machines. EU-only; 100 active VMs soft cap (raising).
curl -fsSL https://box.ascii.dev/install | sh, then box login "$BOX_API_KEY" --json.
base="$(box new --json | jq -r 'select(.event == "ready") | .id')"
box ssh "$base" -- bash -s < ./setup.sh # configure once
for i in $(seq 1 10); do
fork="$(box fork "$base" --json | jq -r 'select(.event == "ready") | .id')"
box ssh "$fork" -- "cd /project && ./run-task.sh $i" &
done
waitKeep setup.sh and the start command idempotent so every fork bootstraps reliably.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.