-
Notifications
You must be signed in to change notification settings - Fork 0
Labels
Description
Summary
Add a new skill write_to_csv that enables the agent to export extracted data to CSV files. This would complement the existing extract_data skill to enable complete data collection workflows, such as collecting prices from websites and saving them to structured files.
Acceptance Criteria
- Add
write_to_csvskill definition toagent.yaml - Implement CSV writing functionality that accepts structured data (arrays/objects)
- Support custom CSV headers and file paths
- Handle both creating new CSV files and appending to existing ones
- Provide proper error handling for file operations
- Include validation for data format compatibility with CSV structure
- Add documentation and examples for the new skill
- Test integration with
extract_dataskill for end-to-end workflows
Example Use Case
Enable queries like: "Please collect all the prices from X website and write them to a CSV file" by chaining:
navigate_to_url→ navigate to target websiteextract_data→ collect pricing datawrite_to_csv→ export data to structured file
Reactions are currently unavailable