get_latest_news
Fetch recent Arch Linux news from RSS feed to stay informed about updates, security alerts, and community announcements with title, date, summary, and link details.
Instructions
Fetch recent Arch Linux news from RSS feed. Returns title, date, summary, and link for each news item.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of news items to return (default 10) | |
| since_date | No | Optional date in ISO format (YYYY-MM-DD) to filter news |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of news items to return (default 10)",
"type": "integer"
},
"since_date": {
"description": "Optional date in ISO format (YYYY-MM-DD) to filter news",
"type": "string"
}
},
"required": [],
"type": "object"
}