Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Query Digiforma training management platform via GraphQL API. Use when asked about trainees, sessions, invoices, programs, trainers, or any training data.
Query Digiforma training management platform via GraphQL API. Use when asked about trainees, sessions, invoices, programs, trainers, or any training data.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
Digiforma is a French training management platform (centre de formation). Query it via GraphQL.
All requests use Bearer token auth. The API key is stored in environment variable DIGIFORMA_API_KEY.
POST https://app.digiforma.com/api/v1/graphql
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"}'
{ trainees(perPage: 20, page: 1) { items { id firstName lastName email phone } pagination { totalItems totalPages } } }
{ trainees(perPage: 10, page: 1, search: "NOM") { items { id firstName lastName email phone } } }
{ trainingSessions(perPage: 20, page: 1) { items { id name status startDate endDate program { name } } pagination { totalItems totalPages } } }
{ programs(perPage: 20, page: 1) { items { id name duration } pagination { totalItems totalPages } } }
{ invoices(perPage: 20, page: 1) { items { id number amount status dueDate company { name } } pagination { totalItems totalPages } } }
{ trainers(perPage: 20, page: 1) { items { id firstName lastName email } pagination { totalItems totalPages } } }
{ trainingSession(id: ID) { id name status startDate endDate program { name } trainees { firstName lastName email } trainer { firstName lastName } } }
Always use perPage and page. Check pagination.totalPages to know if more pages exist.
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
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.