Source-backed workspace
The work survives the run.
Explorer
▾ src
▾ app
page.js
layout.js
▾ lib
estimate.js
◇ adios.yaml
◇ package.json
M src/app/page.js
A src/lib/estimate.js
src/lib/estimate.js
+31 −2export function calculateEstimate(input) {
+ const base = rates[input.projectType];
+ const scope = multipliers[input.scope];
+ return roundToHundred(base * scope);
}
Agent event
Estimate logic added
Source, configuration, and the resulting diff remain attached to this workspace.