Skip to main content

AI Skills

QALITA publishes a set of agent skills — instructions that teach Claude Code (or any compatible AI coding agent) how to work with QALITA correctly. They are distributed as a Claude Code plugin marketplace from the qalita/skills repository.

Available skills

PluginSkillWhat it teaches the agent
qalita-pack-creationcreating-qalita-packsBuilding and publishing a QALITA data quality pack: properties.yaml, pack_conf.json, the main.py pattern, versioning, CI publish.
qalita-platform-cliusing-qalita-platformUsing the qalita CLI/worker: authenticating, pushing sources and packs, running analyses, listing platform resources.
qalita-deploymentdeploying-qalita-platformDeploying the platform via Docker Compose or Helm, and configuring LDAP, SMTP, and workers.

Each plugin is independent — install only the one(s) relevant to you.

Prerequisites

Installation

Inside a Claude Code session, add the marketplace once:

/plugin marketplace add qalita/skills

Then install the plugin(s) you need:

/plugin install qalita-pack-creation@qalita-skills
/plugin install qalita-platform-cli@qalita-skills
/plugin install qalita-deployment@qalita-skills

The skills are then loaded automatically whenever a matching task comes up — for example, asking Claude Code to "create a new pack that checks null rates" triggers creating-qalita-packs.

Updating

/plugin marketplace update qalita-skills

Which skill do I need?

  • Data engineers writing quality rulesqalita-pack-creation, plus qalita-platform-cli to test and publish packs against the platform.
  • Data engineers running analysesqalita-platform-cli.
  • Platform administrators / DevOpsqalita-deployment.