# Send French Services 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": "french-services",
    "name": "French Services",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/HugoSbl/french-services",
    "canonicalUrl": "https://clawhub.ai/HugoSbl/french-services",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/french-services",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=french-services",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/api-setup.md",
      "scripts/laposte.py",
      "scripts/meteo.py",
      "scripts/ratp.py",
      "scripts/sncf.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "french-services",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T03:28:01.106Z",
      "expiresAt": "2026-05-07T03:28:01.106Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=french-services",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=french-services",
        "contentDisposition": "attachment; filename=\"french-services-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "french-services"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/french-services"
    },
    "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/french-services",
    "downloadUrl": "https://openagent3.xyz/downloads/french-services",
    "agentUrl": "https://openagent3.xyz/skills/french-services/agent",
    "manifestUrl": "https://openagent3.xyz/skills/french-services/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/french-services/agent.md"
  }
}
```
## Documentation

### French Services — Services français du quotidien

Skill pour accéder aux services français : trains SNCF, suivi colis La Poste, météo, transports IDF.

### Scripts disponibles

Tous dans skills/french-services/scripts/. Utilisent uniquement la stdlib Python (pas de dépendances).

### 🚄 SNCF — Trains (sncf.py)

Recherche d'itinéraires et prochains départs via l'API Navitia.

# Rechercher un trajet
python3 scripts/sncf.py search Paris Lyon
python3 scripts/sncf.py search "Gare de Lyon" Marseille --date 2025-01-15 --time 08:00

# Prochains départs depuis une gare
python3 scripts/sncf.py departures Paris

# Perturbations sur une ligne
python3 scripts/sncf.py disruptions

API key requise : SNCF_API_KEY (token Navitia — gratuit sur https://navitia.io)

### 📦 La Poste — Suivi de colis (laposte.py)

# Suivre un colis
python3 scripts/laposte.py track 6A12345678901

# Suivre plusieurs colis
python3 scripts/laposte.py track 6A12345678901 8R98765432109

API key requise : LAPOSTE_API_KEY (gratuit sur https://developer.laposte.fr)

### 🌤️ Météo (meteo.py)

Météo actuelle et prévisions via Open-Meteo (modèle Météo France). Pas de clé API nécessaire.

# Météo actuelle + prévisions 3 jours
python3 scripts/meteo.py Paris
python3 scripts/meteo.py Lyon --days 7
python3 scripts/meteo.py --lat 43.6 --lon 1.44    # Toulouse par coordonnées

# Format JSON
python3 scripts/meteo.py Paris --json

### 🚇 RATP/IDFM — Transports IDF (ratp.py)

État du trafic et prochains passages en Île-de-France via l'API PRIM.

# État du trafic global
python3 scripts/ratp.py traffic

# État d'une ligne spécifique
python3 scripts/ratp.py traffic --line "Métro 13"
python3 scripts/ratp.py traffic --line "RER A"

# Prochains passages à un arrêt
python3 scripts/ratp.py next "Châtelet"

API key requise : IDFM_API_KEY (gratuit sur https://prim.iledefrance-mobilites.fr)

### Options communes

OptionDescription--jsonSortie JSON au lieu du texte lisible--helpAide du script

### Env vars

VariableServiceObtentionSNCF_API_KEYSNCFhttps://navitia.io (gratuit, 5000 req/mois)LAPOSTE_API_KEYLa Postehttps://developer.laposte.frIDFM_API_KEYRATP/IDFMhttps://prim.iledefrance-mobilites.fr

Voir references/api-setup.md pour le guide de configuration détaillé.

### Quand utiliser quel script

Question de l'utilisateurScript"Prochain train pour Lyon"sncf.py"Horaires Paris-Marseille demain matin"sncf.py"Où en est mon colis 6A123..."laposte.py"Il fait quoi demain ?" / "Météo à Nice"meteo.py"Le métro 13 marche ?" / "État du RER A"ratp.py"Prochain métro à Châtelet"ratp.py

### Notes

La météo fonctionne sans aucune configuration (Open-Meteo est gratuit et sans clé)
Pour les autres services, configurer les API keys selon references/api-setup.md
Les scripts gèrent proprement l'absence de clé API avec un message explicatif
Output en français par défaut, --json pour l'intégration machine
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: HugoSbl
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T03:28:01.106Z
- Expires at: 2026-05-07T03:28:01.106Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/french-services)
- [Send to Agent page](https://openagent3.xyz/skills/french-services/agent)
- [JSON manifest](https://openagent3.xyz/skills/french-services/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/french-services/agent.md)
- [Download page](https://openagent3.xyz/downloads/french-services)