f808abff86
Fix JSON syntax errors in .devcontainer/devcontainer.json (removed
invalid JS-style // comments) and .devcontainer/opencode.json (removed
90+ trailing commas). Apply auto-fixes for end-of-file and trailing
whitespace issues across 100+ files. Fix SIM105 ruff violations in
benchmarks/core_circuit_breaker_bench.py (use contextlib.suppress).
Note: The security fix from issue #7478 (validate_path startswith bypass)
was already delivered to master in commit e18ac5f2. This PR as currently
structured is non-atomic (35 commits across 10+ issues) and needs
significant restructure before merge. This commit only addresses the
CI/pre-commit failures.
ISSUES CLOSED: #7478
33 lines
1018 B
Markdown
33 lines
1018 B
Markdown
# Data Processing Examples
|
|
|
|
This directory contains examples of data processing tools built with CleverAgents. These examples demonstrate how to analyze, transform, and work with various data formats.
|
|
|
|
## What You'll Find Here
|
|
|
|
- **CSV Analyzers**: Tools for reading, analyzing, and reporting on CSV data
|
|
- **JSON Transformers**: Utilities for reshaping and converting JSON data
|
|
- **Log Parsers**: Tools for extracting insights from log files
|
|
- **Data Validators**: Utilities for checking data integrity and format
|
|
- **Report Generators**: Tools that create summaries from raw data
|
|
|
|
## Supported Formats
|
|
|
|
Examples cover common data formats:
|
|
- CSV (Comma-Separated Values)
|
|
- JSON (JavaScript Object Notation)
|
|
- Plain text logs
|
|
- Structured text files
|
|
- Configuration files
|
|
|
|
## Common Patterns
|
|
|
|
- Reading and parsing files
|
|
- Data validation and cleaning
|
|
- Aggregation and summarization
|
|
- Format conversion
|
|
- Report generation
|
|
|
|
---
|
|
|
|
*Examples in this directory are automatically generated from successful UAT test runs.*
|