Fetching from the wire…
Public story · 2026-08-17 · high
PRs 1008 to 1010 add a worker pool behind CODEBURN_PARSE_WORKERS, gate workers on available memory, and size each worker's budget against pending bytes.
Why now: codeburn's maintainers merged all three PRs on August 17.
getagentseal/codeburn merged pull requests 1008 through 1010, moving its cold rollout parse onto a worker pool instead of running it single-threaded, per the GitHub PR. Cold-start parse time is the main friction in local agent-cost tools. A slow first run is the difference between a tool that feels instant and one you stop trusting.
Codeburn tracks AI coding token usage locally across 37 tools and agents. The parallel parse ships behind a new setting, CODEBURN_PARSE_WORKERS.
Workers gate on available memory rather than free memory, the PR notes. The distinction matters for anyone tuning worker counts on a busy machine, though the PR doesn't spell out how codeburn defines the two differently.
Each worker's budget is sized per parse against pending bytes. Tests pin worker policy, ordering and determinism, so results don't shift based on how many workers happen to be free during a given run.
That determinism requirement is the detail worth copying. A worker pool that gives different results depending on scheduling is the version most teams ship and debug later. Pinning ordering in tests before merging the parallelism is the more disciplined path.
Each link below shares sources, entities, or timing with this story.
Shared entities / Same source domain / Shared topic / Earlier coverage
Both cover GitHub, PRs; reported by the same outlet (github.com); overlapping topics (agent, local).
Shared entity: GitHub / Same source domain / Shared topic / Earlier coverage / Tension
Both cover GitHub; reported by the same outlet (github.com); overlapping topics (against, agent, memory).
Both cover GitHub; reported by the same outlet (github.com); overlapping topics (against, agent, budget).
Shared entities / Same source domain / Earlier coverage / Tension
Both cover GitHub, PRs; reported by the same outlet (github.com); earlier GitHub coverage from 2026-04-30.
Shared entity: Cold / Same source domain / Shared topic / Earlier coverage / Tension
Both cover Cold; reported by the same outlet (github.com); overlapping topics (against, cold).
Shared entity: GitHub / Same source domain / Shared topic / Earlier coverage / Tension
Both cover GitHub; reported by the same outlet (github.com); overlapping topics (against, agent).
Both cover GitHub; reported by the same outlet (github.com); overlapping topics (against, agent).
Both cover GitHub; reported by the same outlet (github.com); overlapping topics (against, agent).