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. Install it once and it’s available in every future session, no need to paste files each time. The skill files live 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’re working on Mélodium files. To share the skill with your team through the repository instead (a project-scoped install), copy it to the project folder: 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 loads in every session automatically. If you’re migrating from GitHub Actions or GitLab CI, include the corresponding reference too: # 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 you need it: # 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 doesn’t support persistent rules or context files, paste the content of these 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 Going Further Pair the skill with the Mélodium MCP server to give the AI live program validation and standard library lookup, then start building a pipeline with AI.Advanced ImplementationInstall the Mélodium MCP Server