DocsWith AIInstall the Mélodium SkillInstall the Mélodium Skill The Mélodium skill is a set of reference files that teach an AI coding assistant the Mélodium language, its CI/CD API, and its project layout conventions. Installing it once makes it available in every future session — no need to paste files each time. The skill files are located under skills/melodium/ in the Mélodium repository . Clone or download that repository first, then follow the instructions for your tool below. Claude Code Copy the skill directory into your personal Claude Code skills folder: cp -r skills/melodium ~/.claude/skills/melodium The skill is then available in every project on your machine. Type /melodium in the chat to invoke it explicitly, or Claude will load it automatically when it detects you are working on Mélodium files. To share the skill with your team via the repository (project-scoped install), copy to the project folder instead: cp -r skills/melodium .claude/skills/melodium Cursor Cursor uses a .cursor/rules/ directory for persistent context. Create a rule file by concatenating the relevant skill files: mkdir -p .cursor/rules cat skills/melodium/SKILL.md \ skills/melodium/references/projects.md \ > .cursor/rules/melodium.md Open Cursor’s rule editor (Cursor Settings > Rules), find melodium.md, and set it to Always Apply so it is included in every session automatically. If you are migrating from GitHub Actions or GitLab CI, also include the corresponding reference: # For GitHub Actions migration cat skills/melodium/SKILL.md \ skills/melodium/references/projects.md \ skills/melodium/references/github-migration.md \ > .cursor/rules/melodium.md # For GitLab CI migration cat skills/melodium/SKILL.md \ skills/melodium/references/projects.md \ skills/melodium/references/gitlab-migration.md \ > .cursor/rules/melodium.md Zed Zed automatically picks up a .rules file at the project root. Copy the skill content there: cat skills/melodium/SKILL.md \ skills/melodium/references/projects.md \ > .rules Add the migration reference if needed: # For GitHub Actions migration cat skills/melodium/SKILL.md \ skills/melodium/references/projects.md \ skills/melodium/references/github-migration.md \ > .rules Other Tools If your tool does not support persistent rules or context files, paste the content of the following files directly into your conversation before asking anything: skills/melodium/SKILL.md — the main language guide skills/melodium/references/projects.md — project layout conventions skills/melodium/references/github-migration.md — if migrating from GitHub Actions skills/melodium/references/gitlab-migration.md — if migrating from GitLab CI Advanced ImplementationBuild a Pipeline with AI