Digiforma for Openclaw

A comprehensive GraphQL integration for the Digiforma platform to manage trainees, sessions, and invoices programmatically.

mibbou
v1.0.0
Feb 23, 2026
0
1.5k
0

Install & Download

1. ClawHub CLI

The fastest way to install a skill directly from the registry.

npx clawhub@latest install digiforma

2. Manual Installation

Copy the skill folder to one of these locations

Global
~/.openclaw/skills/
Workspace
<project>/skills/

Priority: Workspace > Local > Bundled

3. Prompt Installation

Copy this prompt to OpenClaw to install it automatically.

Help me install digiforma using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).

Prefer to download?

Get the raw skill files in a ZIP archive.

What is Digiforma?

Digiforma is a specialized French training management platform (centre de formation) that centralizes administrative and educational tasks. This skill enables seamless interaction with the platform using its GraphQL API, allowing users of Openclaw Skills to retrieve and manipulate training-related data efficiently.

By providing a standardized interface for querying trainees, sessions, programs, and financial records, this skill bridges the gap between AI-driven automation and educational administration. It is designed for developers who need to integrate Digiforma data into custom dashboards, reporting tools, or automated workflows within the Openclaw Skills ecosystem.

Digiforma Use Cases

  • Automating the retrieval of trainee lists and contact information for communication workflows.
  • Syncing upcoming training session dates and statuses with external scheduling systems.
  • Querying invoice status and amounts to streamline financial reporting and bookkeeping.
  • Searching for specific programs or trainers to verify availability and resource allocation.
  • Generating detailed session reports including enrolled trainees and associated program metadata.

How Digiforma Works

  1. Authentication is established by passing a Bearer token via the DIGIFORMA_API_KEY environment variable.
  2. The skill constructs a GraphQL query based on the user's request for specific resources like trainees or sessions.
  3. A POST request is dispatched to the Digiforma GraphQL endpoint with the query payload.
  4. The API returns a JSON response containing the requested data and pagination metadata.
  5. The skill parses the ISO-formatted dates and status values to present a clear, actionable summary for the Openclaw Skills agent.

Digiforma Setup

To get started with this skill, you must have an active Digiforma account and an API key. Configure your environment by setting the following variable:

export DIGIFORMA_API_KEY="your_secret_api_key"

You can verify the connection using a standard curl request to the Openclaw Skills compatible endpoint:

curl -s -X POST https://app.digiforma.com/api/v1/graphql \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $DIGIFORMA_API_KEY" \
  -d '{"query": "{ trainees(perPage: 5) { items { firstName lastName } } }"}'

Digiforma Data Schema & Taxonomy

The skill interacts with a structured data model centered around training administration. Key entities include:

Entity Common Fields
Trainees id, firstName, lastName, email, phone
Sessions id, name, status, startDate, endDate, program
Programs id, name, duration
Invoices id, number, amount, status, dueDate, company
Trainers id, firstName, lastName, email

All timestamps are returned in ISO format. Session and invoice statuses are categorized into draft, planned, ongoing, completed, or cancelled.

Digiforma Advanced Features

  • Advanced pagination handling using perPage and page parameters to navigate large datasets up to 50 items per request.
  • Relational querying to fetch program details and trainer information within a single session request.
  • Integrated search filters for locating trainees and records by specific naming conventions.
  • Multi-entity support allowing for comprehensive data harvesting across the entire Digiforma suite.
  • Native compatibility with Openclaw Skills for high-level agentic task automation.

SKILL.md


Loading

Related Openclaw Skills

METADATA

Github Stars: 0
forks: 0

Featured*