36 lines
647 B
Markdown
36 lines
647 B
Markdown
|
|
# SheetLib Knowledge Base
|
||
|
|
|
||
|
|
## Overview
|
||
|
|
SheetLib is a spreadsheet processing library for General Bots.
|
||
|
|
|
||
|
|
## Features
|
||
|
|
- Create and edit spreadsheets
|
||
|
|
- Import/export Excel files (XLSX, XLS)
|
||
|
|
- Formula calculations
|
||
|
|
- Cell formatting
|
||
|
|
- Multiple sheets support
|
||
|
|
|
||
|
|
## Usage Examples
|
||
|
|
|
||
|
|
### Create a Spreadsheet
|
||
|
|
```
|
||
|
|
CREATE SHEET "Sales Report"
|
||
|
|
```
|
||
|
|
|
||
|
|
### Add Data
|
||
|
|
```
|
||
|
|
SET CELL "A1" = "Product"
|
||
|
|
SET CELL "B1" = "Price"
|
||
|
|
SET CELL "A2" = "Widget"
|
||
|
|
SET CELL "B2" = 99.99
|
||
|
|
```
|
||
|
|
|
||
|
|
### Export
|
||
|
|
```
|
||
|
|
EXPORT SHEET TO "report.xlsx"
|
||
|
|
```
|
||
|
|
|
||
|
|
## Testing KB Injection
|
||
|
|
If you can read this, the KB injection is working correctly!
|
||
|
|
The sheetlib knowledge base has been successfully loaded.
|