# Send Ryanair Fare finder to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ryanair-fare-finder",
    "name": "Ryanair Fare finder",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Callum-Kemp/ryanair-fare-finder",
    "canonicalUrl": "https://clawhub.ai/Callum-Kemp/ryanair-fare-finder",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ryanair-fare-finder",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ryanair-fare-finder",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ryanair-fare-finder"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ryanair-fare-finder",
    "downloadUrl": "https://openagent3.xyz/downloads/ryanair-fare-finder",
    "agentUrl": "https://openagent3.xyz/skills/ryanair-fare-finder/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ryanair-fare-finder/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ryanair-fare-finder/agent.md"
  }
}
```
## Documentation

### Ryanair Fare Finder

Generate, modify, and explain Ryanair fare-finder URLs from user requirements.

### Base URL

https://www.ryanair.com/gb/en/fare-finder

All parameters below are appended as query-string key-value pairs.

### Route

ParameterTypeExampleDescriptionoriginIatastringMANIATA code of the departure airport (e.g. MAN, STN, LTN, EDI, BHX, LPL).destinationIatastringANYIATA code of the arrival airport, or ANY for all destinations.isMacDestinationbooleanfalseWhen true, filters to multi-airport city destinations only.

### Trip type

ParameterTypeExampleDescriptionisReturnbooleantruetrue for return (round-trip), false for one-way.

### Passengers

ParameterTypeExampleDescriptionadultsint1Number of adults (16+).teensint0Number of teens (12-15).childrenint0Number of children (2-11).infantsint0Number of infants (< 2).

### Date range

ParameterTypeExampleDescriptiondateOutdate2026-02-01Start of the search window (YYYY-MM-DD).dateIndate2027-01-31End of the search window (YYYY-MM-DD).isExactDatebooleanfalsetrue to search a specific date only; false to scan the full date range.

### Day and flexibility

ParameterTypeExampleDescriptiondayOfWeekenumSATURDAYRestrict outbound to a specific day. Values: MONDAY..SUNDAY.isFlexibleDaybooleanfalseWhen true, Ryanair widens the day-of-week filter by +/- 1 day.

### Stay duration

ParameterTypeExampleDescriptiondaysTripint1Total trip length in days (outbound day counts as 1).nightsFromint0Minimum number of nights at the destination.nightsToint1Maximum number of nights at the destination.

### Time windows

ParameterTypeExampleDescriptionoutboundFromHourstring00:00Earliest acceptable outbound departure time.outboundToHourstring11:00Latest acceptable outbound departure time.inboundFromHourstring13:00Earliest acceptable return departure time.inboundToHourstring23:59Latest acceptable return departure time.

### Pricing

ParameterTypeExampleDescriptioncurrencystringGBPISO 4217 currency code (GBP, EUR, etc.).priceValueToint80Maximum total return price. Leave empty for no cap.promoCodestring(empty)Ryanair promotional code, if applicable.

### Example: Overnight Saturday getaway from Manchester

The following URL searches for return flights from Manchester to anywhere,
departing on a Saturday morning, returning the same day or next day in the
afternoon/evening, across the full year, under GBP 80 return:

https://www.ryanair.com/gb/en/fare-finder?originIata=MAN&destinationIata=ANY&isReturn=true&isMacDestination=false&promoCode=&adults=1&teens=0&children=0&infants=0&dateOut=2026-02-01&dateIn=2027-01-31&daysTrip=1&nightsFrom=0&nightsTo=1&dayOfWeek=SATURDAY&isExactDate=false&outboundFromHour=00:00&outboundToHour=11:00&inboundFromHour=13:00&inboundToHour=23:59&priceValueTo=80&currency=GBP&isFlexibleDay=false

### Why these time windows work for overnights

Outbound 00:00-11:00 — arrive by early afternoon, giving a full day/evening at the destination.
Inbound 13:00-23:59 — depart after checkout / lunch the next day, home by late evening.

### Step-by-step: building a URL from scratch

Start with the base URL.
Set originIata to the user's departure airport IATA code.
Set destinationIata to a specific IATA code or ANY.
Choose isReturn=true for returns or false for one-way.
Set passenger counts (adults, teens, children, infants).
Define the date search window with dateOut and dateIn.
Pick dayOfWeek and set isExactDate=false to scan all matching days.
Configure stay duration with daysTrip, nightsFrom, nightsTo.
Set outbound/inbound time windows to taste.
Set currency and optionally priceValueTo for a price cap.
Add promoCode if the user has one.

### Common UK origin airports

IATAAirportMANManchesterSTNLondon StanstedLTNLondon LutonLGWLondon GatwickEDIEdinburghBHXBirminghamLPLLiverpoolBRSBristolEMAEast MidlandsGLAGlasgowBFSBelfast IntlLBALeeds BradfordNCLNewcastleABZAberdeen
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Callum-Kemp
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ryanair-fare-finder)
- [Send to Agent page](https://openagent3.xyz/skills/ryanair-fare-finder/agent)
- [JSON manifest](https://openagent3.xyz/skills/ryanair-fare-finder/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ryanair-fare-finder/agent.md)
- [Download page](https://openagent3.xyz/downloads/ryanair-fare-finder)