From f4978a9fd4ea678912f0c6ec2cc0d3e6b6cad08a Mon Sep 17 00:00:00 2001 From: Ed L Date: Tue, 24 Mar 2026 12:09:09 -0700 Subject: [PATCH] chore: reformat spec a bit --- context/SPEC.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/context/SPEC.md b/context/SPEC.md index e9910c6..9c31206 100644 --- a/context/SPEC.md +++ b/context/SPEC.md @@ -2,9 +2,15 @@ ## Context -Traditional spreadsheets conflate data, formulas, and presentation into a single flat grid addressed by opaque cell references (A1, B7). This makes models fragile, hard to audit, and impossible to rearrange without rewriting formulas. We are building a terminal application that treats data as a multi-dimensional, semantically labeled structure — separating data, computation, and views into independent layers. The result is a tool where formulas reference meaningful names, views can be rearranged instantly, and the same dataset can be explored from multiple perspectives simultaneously. +Traditional spreadsheets conflate data, formulas, and presentation into a single flat grid addressed by opaque +cell references (A1, B7). This makes models fragile, hard to audit, and impossible to rearrange without +rewriting formulas. We are building a terminal application that treats data as a multi-dimensional, +semantically labeled structure — separating data, computation, and views into independent layers. The result +is a tool where formulas reference meaningful names, views can be rearranged instantly, and the same dataset +can be explored from multiple perspectives simultaneously. -The application compiles to a single static binary (`x86_64-unknown-linux-musl`) and provides a rich TUI experience. +The application compiles to a single static binary (`x86_64-unknown-linux-musl`) and provides a rich TUI +experience. ---