Skip to content

Scenarios

These pages show how Formulon fits into concrete workflows. Each scenario chooses a different runtime — pick the one closest to your deployment, then read the matching Runtime page for setup details.

Start with a real workbook

After the one-formula quick start, test one representative workbook as early as possible. Spreadsheet engines fail or succeed on workbook details, not only on isolated formulas.

ScenarioRuntimeGoal
Browser workbook uploadWASMRecalculate a user-uploaded .xlsx without sending it to a server
Python batch recalculationPythonRecalculate reports or models in jobs and notebooks
CI workbook regressionCLIDetect formula and value drift in automated checks
Agent workbook editingMCPLet AI agents open, edit, recalculate, and save .xlsx through formulon-mcp

What the scenarios share

Every scenario follows the same load → mutate → recalc → save lifecycle described in Workbook lifecycle. What changes between them is:

  • where the bytes come from (File, file system, IO stream, MCP tool input),
  • where the bytes go (save() result, written file, returned bytes field),
  • which runtime owns memory and IO,
  • how errors cross the host boundary.

For runtime-specific setup, see Runtimes. For the engine-side flow, see Workbook lifecycle.