validate_data_freshness
Verifies data recency and validity using timestamps, staleness markers, and expected update cadence to stop agents from acting on outdated information.
Instructions
Check if data from another agent is recent and valid based on timestamps, staleness indicators, and expected update frequencies. Prevents acting on outdated information.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Data object to check for freshness | |
| source_agent | No | Agent that provided this data | |
| max_age_hours | No | Maximum acceptable age in hours | |
| timestamp_field | No | Field name containing timestamp (e.g., "created_at", "updated_at") | |
| expected_update_frequency | No | How often this data should be updated | daily |