Create a Rootr spreadsheet
rootr_create_spreadsheetCreate a grid-based spreadsheet node with formulas for budgets, models, and estimates in a Rootr workspace. Cells use A1-style addressing for values and formulas.
Instructions
Create a new SPREADSHEET node (a grid with formulas) in a Rootr (루터) workspace. Use SPREADSHEET when content needs calculation (budgets, models, estimates) — for plain tracked lists use DATABASE instead. Defaults to a single empty "Sheet1" if no data is given. Cells are addressed A1-style ("A1", "B12", ...) in a sparse map: { "A1": { v: 42 }, "B1": { f: "=A1*2" } }. Set a cell to null to clear it. Read the sheet first (rootr_read_spreadsheet) so you know current dimensions and existing content before patching — patchCells only touches the keys you send, everything else is untouched.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | Initial data payload; defaults to a single empty "Sheet1" | |
| icon | No | Emoji icon for the node | |
| name | No | Spreadsheet name/title | |
| config | No | Free-form spreadsheet config object | |
| parentId | No | Parent folder/node id to create it under | |
| workspace | No | Workspace id; defaults to ROOTR_WORKSPACE/config if omitted |