write_table
Create a file with a GitHub-Flavored Markdown table from given headers and row data. Returns file path, size, SHA-256, and row/column counts.
Instructions
Render a Markdown table from headers + rows and write it to path.
The table is rendered in GitHub-Flavored Markdown (GFM) style: a header row, a separator row, then one row per record. Column widths are computed from the longest value in each column.
Args: path: file to write headers: column headers (one entry per column) rows: row data (one list per row) overwrite: if True, overwrite an existing file
Returns::
{
"path": "...",
"size": N,
"sha256": "<64 hex chars>",
"row_count": M,
"column_count": K,
}Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| headers | Yes | ||
| rows | Yes | ||
| overwrite | No |