Inputs
☐ Prompt / Description (Required)
A clear and concise instruction describing what this step should do. This helps the AI debug and adjust export logic if needed.Good Example: 
"Export the table data as a CSV file for analysis."Bad Example: 
"Save some data to a file."Why it’s bad? Too vague, lacks specificity about what data and format should be used.☐ Data Source (Required)
Table
Export contents of a structured table:
- Entire table contents
 - Selected columns
 - Filtered rows
 
Variable
Export value stored in a variable:
- Single variable
 - Multiple variables
 - Computed values
 
☐ Export Configuration (Required)
Configure the export settings:
- File Name: Name for the exported file
 - Format Type:
- CSV (for spreadsheets)
 - JSON (for structured data)
 - Plain Text (for simple data)
 
 
Usage Example
Notes
- The Prompt / Description is required to help AI debug and adjust export settings if needed.
 - Ensure filenames don’t contain invalid characters.
 - CSV is best for tabular data, JSON for nested structures.
 - Consider file size and format compatibility with target systems.