Téléversement de plugin

OpenClaw Lodge est la voie principale de publication. Préparez votre workspace OpenClaw en local, puis publiez-le sur ClawLodge avec le CLI.

Flux OpenClaw Lodge

1. Install the ClawLodge CLI package
2. Create a PAT in Settings
3. Save it in the CLI
4. Verify the bound account
5. Publish

npm install -g clawlodge-cli
clawlodge login
clawlodge whoami
clawlodge publish

Options facultatives : `--name` et `--readme /path/to/README.md`. Si vous omettez le README, ClawLodge peut le générer à partir du workspace uploadé.

Ce que gère OpenClaw Lodge

- scans the allowed workspace files
- auto-builds the publish payload
- redacts common secrets before upload
- extracts skills metadata
- sends the final publish request with your PAT

Pour les options avancées comme le chemin du workspace, le fichier de sortie, le token ou l'origin, exécutez `clawlodge help`.

Contrat de compatibilité MCP

POST /api/v1/mcp/upload
Authorization: Bearer claw_pat_xxx
Content-Type: multipart/form-data
fields:
- manifest.json
- README.md
- skills_bundle

Exemple d'upload MCP brut

curl -X POST "http://localhost:3000/api/v1/mcp/upload" \
  -H "Authorization: Bearer claw_pat_xxx" \
  -F "[email protected];type=application/json" \
  -F "[email protected];type=text/markdown" \
  -F "skills_bundle=@skills_bundle.zip;type=application/zip"