PACE / Study guide / Leverage

Leverage

Getting more than one keyboard’s worth of work done · 200 of 800 points

Leverage is the discipline of multiplication: running work in parallel, isolating agents in worktrees, packaging repeatable playbooks as skills, orchestrating fleets, running unattended overnight, and routing each task to the cheapest model that can do it well.

By WholeTech · updated 2026-08-02

Q. When does parallelism actually pay off?

When tasks are independent and verifiable per-unit: migrations across many files, audits across many pages, research across many sources. Parallelism does not fix a task you cannot verify — it gives you the same doubt at ten times the speed.

Q. What is a skill, and when should you write one?

A skill is a playbook you wrote once for work you do repeatedly: the deploy steps, the review checklist, the report format. The third time you type the same instructions is the signal. Skills turn your best run into your default run.

Q. How do you run agents unattended without waking up to a mess?

Unattended work needs pre-decided boundaries: what the agent may do alone, what it must queue for a human, and where it writes its trail. The overnight failure mode is not wrong code — it is unreviewable code with no record of the decisions.

Q. How should you route work across models and effort levels?

Match the tool to the stakes. Frontier models for architecture, judgment, and hard debugging; fast cheap models for mechanical edits and summaries. Routing everything to the biggest model burns budget; routing everything to the smallest burns trust.

Sample question — released item (not in the live bank)

You have 40 near-identical config files to migrate and one hour. What is the highest-leverage approach?

  1. One long chat session, editing file by file.
  2. Do it by hand — agents are risky for this.
  3. Have the agent write and verify the transform on 2 files, then fan out the remaining 38 in parallel with a per-file check.
  4. Ask for all 40 rewritten in one giant response.
Show the answer

C. C proves the pattern first, then multiplies it with verification per unit — the core leverage loop. A spends the hour serially, B spends it manually, and D produces an unreviewable blob.

Sit the beta exam — Leverage is 10 of your 40 questions →