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
1021 B
Markdown
33 lines
1021 B
Markdown
# API Clients Examples
|
|
|
|
This directory contains examples of command-line API clients built with CleverAgents. These examples show how to interact with web services and APIs from the terminal.
|
|
|
|
## What You'll Find Here
|
|
|
|
- **Weather CLI**: Command-line weather information fetchers
|
|
- **GitHub Tools**: Utilities for interacting with GitHub repositories
|
|
- **REST API Wrappers**: Generic tools for consuming RESTful services
|
|
- **Data Fetchers**: Tools that retrieve and format data from web APIs
|
|
- **Service Monitors**: CLI tools for checking service health and status
|
|
|
|
## Example Features
|
|
|
|
Examples in this directory demonstrate:
|
|
- HTTP request handling
|
|
- JSON/XML parsing
|
|
- Authentication patterns
|
|
- Error handling for network operations
|
|
- Data formatting and display
|
|
|
|
## Best Practices Shown
|
|
|
|
- Proper API key management
|
|
- Rate limiting awareness
|
|
- Graceful error handling
|
|
- User-friendly output formatting
|
|
- Caching strategies
|
|
|
|
---
|
|
|
|
*Examples in this directory are automatically generated from successful UAT test runs.*
|