# Send Digiforma 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": "digiforma",
    "name": "Digiforma",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/mibbou/digiforma",
    "canonicalUrl": "https://clawhub.ai/mibbou/digiforma",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/digiforma",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=digiforma",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "digiforma",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T13:10:28.004Z",
      "expiresAt": "2026-05-09T13:10:28.004Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=digiforma",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=digiforma",
        "contentDisposition": "attachment; filename=\"digiforma-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "digiforma"
      },
      "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/digiforma"
    },
    "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/digiforma",
    "downloadUrl": "https://openagent3.xyz/downloads/digiforma",
    "agentUrl": "https://openagent3.xyz/skills/digiforma/agent",
    "manifestUrl": "https://openagent3.xyz/skills/digiforma/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/digiforma/agent.md"
  }
}
```
## Documentation

### Digiforma GraphQL API

Digiforma is a French training management platform (centre de formation). Query it via GraphQL.

### Authentication

All requests use Bearer token auth. The API key is stored in environment variable DIGIFORMA_API_KEY.

### Endpoint

POST https://app.digiforma.com/api/v1/graphql

### How to query

Use curl:

curl -s -X POST https://app.digiforma.com/api/v1/graphql \\
  -H "Content-Type: application/json" \\
  -H "Authorization: Bearer $DIGIFORMA_API_KEY" \\
  -d '{"query": "YOUR_GRAPHQL_QUERY"}'

### List trainees (stagiaires)

{ trainees(perPage: 20, page: 1) { items { id firstName lastName email phone } pagination { totalItems totalPages } } }

### Search trainee by name

{ trainees(perPage: 10, page: 1, search: "NOM") { items { id firstName lastName email phone } } }

### List training sessions

{ trainingSessions(perPage: 20, page: 1) { items { id name status startDate endDate program { name } } pagination { totalItems totalPages } } }

### List programs

{ programs(perPage: 20, page: 1) { items { id name duration } pagination { totalItems totalPages } } }

### List invoices

{ invoices(perPage: 20, page: 1) { items { id number amount status dueDate company { name } } pagination { totalItems totalPages } } }

### List trainers (formateurs)

{ trainers(perPage: 20, page: 1) { items { id firstName lastName email } pagination { totalItems totalPages } } }

### Training session details

{ trainingSession(id: ID) { id name status startDate endDate program { name } trainees { firstName lastName email } trainer { firstName lastName } } }

### Pagination

Always use perPage and page. Check pagination.totalPages to know if more pages exist.

### Important notes

All dates are ISO format
Status values: draft, planned, ongoing, completed, cancelled
Always paginate large results (perPage max ~50)
For complex filters, combine search with status filters
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mibbou
- 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-05-02T13:10:28.004Z
- Expires at: 2026-05-09T13:10:28.004Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/digiforma)
- [Send to Agent page](https://openagent3.xyz/skills/digiforma/agent)
- [JSON manifest](https://openagent3.xyz/skills/digiforma/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/digiforma/agent.md)
- [Download page](https://openagent3.xyz/downloads/digiforma)