# Send Legal Docs FR 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": "legal-docs-fr",
    "name": "Legal Docs FR",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/HugoSbl/legal-docs-fr",
    "canonicalUrl": "https://clawhub.ai/HugoSbl/legal-docs-fr",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/legal-docs-fr",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=legal-docs-fr",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/french-legal-ref.md",
      "scripts/legal.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/legal-docs-fr"
    },
    "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/legal-docs-fr",
    "downloadUrl": "https://openagent3.xyz/downloads/legal-docs-fr",
    "agentUrl": "https://openagent3.xyz/skills/legal-docs-fr/agent",
    "manifestUrl": "https://openagent3.xyz/skills/legal-docs-fr/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/legal-docs-fr/agent.md"
  }
}
```
## Documentation

### Legal Docs FR

Générateur de documents juridiques français pour freelances/micro-entrepreneurs.
Génère des CGV, mentions légales, contrats de prestation et devis en HTML.

### Scripts

Tout dans scripts/. Python 3 stdlib uniquement. Documents dans ~/.freelance/legal/.

### legal.py — Génération de documents juridiques

# CGV — Conditions Générales de Vente
python3 legal.py generate cgv [--no-open]
python3 legal.py generate cgv --tribunal "Paris" --mediateur "CMAP, Paris"

# Mentions légales pour un site web
python3 legal.py generate mentions --hebergeur "Vercel Inc, San Francisco" [--site "monsite.fr"] [--dpo "dpo@email.com"]

# Contrat de prestation de services
python3 legal.py generate contrat --client "Acme Corp" --mission "Développement application web" \\
  --montant 5000 --duree "3 mois" [--client-address "10 rue Example, Paris"] \\
  [--client-siret "12345678900010"] [--date-debut "01/03/2026"] [--non-sollicitation]

# Devis
python3 legal.py generate devis --client "Acme Corp" --items "Dev frontend:10:400" "Design UX:3:500" \\
  [--number DEV-2026-001] [--date 2026-02-15]

# Lister tous les documents générés
python3 legal.py list [--json]

# Voir la configuration prestataire
python3 legal.py config [--json]

Tous les documents supportent --no-open pour ne pas ouvrir dans le navigateur.

### Overrides prestataire (sur toutes les commandes generate)

--nom "Hugo Dupont" --siret "12345" --adresse "42 rue X" --email "x@y.com" --phone "06..."

Si ~/.freelance/config.json existe (du freelance-toolkit), les infos sont pré-remplies.

### Documents générés

TypeFichierContenuCGVcgv.html10 articles : objet, commandes, paiement (30j, 3×taux légal, 40€), délais, PI, responsabilité, résiliation, force majeure, juridiction, médiationMentionsmentions.htmlIdentité, hébergeur, directeur publication, RGPD (droits, finalités, DPO), cookies, PIContratcontrat-{client}-{ts}.htmlParties, mission, durée, prix (30/70), obligations, confidentialité, PI, résiliation, non-sollicitation optionnelleDevisDEV-YYYY-NNN.htmlNuméro auto, validité 30j, lignes de prestation, conditions de paiement, signature "Bon pour accord"

### Configuration

Utilise ~/.freelance/config.json (partagé avec freelance-toolkit) :

{
  "provider": { "name": "...", "address": "...", "siret": "...", "email": "...", "phone": "..." },
  "micro_entreprise": true,
  "tva_rate": 0
}

Si micro_entreprise: true → mention art. 293B du CGI sur tous les documents.

### Données

~/.freelance/legal/
├── cgv.html / cgv.json
├── mentions.html / mentions.json
├── contrat-acme-20260215-143022.html / .json
├── DEV-2026-001.html / .json
└── ...

### Contenu juridique

Les documents incluent les clauses obligatoires du droit français :

Paiement : 30 jours, pénalités 3× taux légal, indemnité 40€ (art. D441-5 Code de commerce)
PI : Cession subordonnée au paiement intégral
Médiation : Obligatoire depuis 2016 (art. L611-1 Code de la consommation)
RGPD : Droits des personnes, finalités, durée conservation, contact DPO
Force majeure : Art. 1218 du Code civil

Voir references/french-legal-ref.md pour le détail des obligations légales.

### Notes

HTML avec CSS inline, optimisé pour impression / export PDF
Montants au format français (2 900,00 €)
Initiales du prestataire comme logo (même style que les factures)
--json disponible sur list et config
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: HugoSbl
- 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-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/legal-docs-fr)
- [Send to Agent page](https://openagent3.xyz/skills/legal-docs-fr/agent)
- [JSON manifest](https://openagent3.xyz/skills/legal-docs-fr/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/legal-docs-fr/agent.md)
- [Download page](https://openagent3.xyz/downloads/legal-docs-fr)