# Send Promociones de Viajes Argentina 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": "travel-promos-argentinas",
    "name": "Promociones de Viajes Argentina",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ferminrp/travel-promos-argentinas",
    "canonicalUrl": "https://clawhub.ai/ferminrp/travel-promos-argentinas",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/travel-promos-argentinas",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=travel-promos-argentinas",
    "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-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/travel-promos-argentinas"
    },
    "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/travel-promos-argentinas",
    "downloadUrl": "https://openagent3.xyz/downloads/travel-promos-argentinas",
    "agentUrl": "https://openagent3.xyz/skills/travel-promos-argentinas/agent",
    "manifestUrl": "https://openagent3.xyz/skills/travel-promos-argentinas/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/travel-promos-argentinas/agent.md"
  }
}
```
## Documentation

### Travel Promos Argentina

Consulta promociones de viajes (vuelos, hoteles y paquetes) y permite filtrarlas y ordenarlas localmente.

### API Overview

Base URL: https://anduin.ferminrp.com
Auth: None required
Response format: JSON
Endpoint principal: /api/v1/promos
OpenAPI: https://anduin.ferminrp.com/docs/openapi.json
Fuente upstream: data.source
Timestamps relevantes:

data.lastUpdated (actualizacion de promos)
timestamp (respuesta del servicio)


Query params documentados para /api/v1/promos: ninguno
Nota: los query params probados (category, destinationCountry, limit, q) no filtran en origen; filtrar localmente con jq (verificado sobre la respuesta actual del endpoint).

### Endpoint

GET /api/v1/promos

Ejemplos de uso:

curl -s "https://anduin.ferminrp.com/api/v1/promos" | jq '.'
curl -s "https://anduin.ferminrp.com/api/v1/promos" | jq '.data.promos[0:5]'
curl -s "https://anduin.ferminrp.com/api/v1/promos" | jq '.data.promos | map(select(.category == "vuelos"))'
curl -s "https://anduin.ferminrp.com/api/v1/promos" | jq '.data.promos | map(select(.category == "autos"))'
curl -s "https://anduin.ferminrp.com/api/v1/promos" | jq '.data.promos | map(select(.destinationCountry == "brazil"))'
curl -s "https://anduin.ferminrp.com/api/v1/promos" | jq '.data.promos | sort_by(.date) | reverse | .[0:10]'
curl -s "https://anduin.ferminrp.com/api/v1/promos" | jq '.data.promos | sort_by(-.score) | .[0:10]'

### Campos clave

Top-level:

success (bool)
timestamp (ISO datetime)


data:

lastUpdated (ISO datetime)
source (URL de origen)
totalPromos (int)
promos (array)


promos[]:

id, date, title, permalink, thumbnailUrl
destinationCountry (puede ser null)
category
score (numerico para ranking, puede no venir si falla clasificacion AI)


Valores dinamicos observados hoy (ejemplos, no lista cerrada):

category: vuelos, hoteles, autos, paquetes, asistencia, otros
destinationCountry: brazil, united_states, spain, dominican_republic, aruba, mexico, japan, portugal, europe, null


Semantica adicional:

permalink se construye dinamicamente como /links/viajes/:id sobre el host de la request

### Workflow

Detectar intencion del usuario:

Listado general
Filtro por categoria o pais
Ranking por score
Ultimas promos


Consultar endpoint unico con curl -s.
Validar success == true y existencia de data.promos.
Aplicar filtros y orden localmente con jq:

Por category
Por destinationCountry
Por texto en title o id cuando aplique
Por date o score


Responder primero con snapshot:

Cantidad total (totalPromos)
lastUpdated
Top 3 promos por score o relevancia


Luego mostrar tabla corta (top 5/10):

date | category | destinationCountry | score | title


Incluir solo permalink para promos mostradas.
Mantener respuesta informativa, sin consejos financieros ni garantias de disponibilidad.

### Error Handling

HTTP no exitoso:

Informar codigo HTTP y endpoint consultado.


404 (No promos data available):

Informar que no hay datos cacheados de promos en este momento.


success: false:

Mostrar payload de error si existe.


JSON inesperado:

Mostrar minimo crudo util y aclarar inconsistencia.


Red o timeout:

Reintentar hasta 2 veces con espera corta.


promos vacio:

Informar "no hay promociones disponibles actualmente".

### Presenting Results

Formato por defecto:

Resumen ejecutivo + tabla corta


Priorizar:

Recencia (date)
Relevancia (score)
Claridad de destino y categoria


Aclarar timestamps (lastUpdated y/o timestamp) y la fuente externa (data.source).
No emitir recomendaciones de compra; solo informar promociones disponibles.

### Out of Scope

Esta skill no debe hacer en v1:

Scraping directo de sitios externos
Automatizacion de reserva o compra
Alertas push, notificaciones o tracking de cambios
Uso de endpoints distintos de /api/v1/promos
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ferminrp
- Version: 1.0.1
## 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-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/travel-promos-argentinas)
- [Send to Agent page](https://openagent3.xyz/skills/travel-promos-argentinas/agent)
- [JSON manifest](https://openagent3.xyz/skills/travel-promos-argentinas/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/travel-promos-argentinas/agent.md)
- [Download page](https://openagent3.xyz/downloads/travel-promos-argentinas)