Agent Skills
AI coding assistants such as Claude Code or Codex can generate DHTMLX Scheduler code, but they often make mistakes with specialized APIs: wrong prop names, missing CSS imports, incorrect callback signatures, or mixing incompatible data patterns. Agent skills address this by teaching the assistant the correct patterns and known pitfalls before it writes code.
GitHub: DHTMLX/skills
Available Skills
DHTMLX JS Scheduler
Covers integration of the core JavaScript Scheduler into plain JavaScript and TypeScript applications. The skill recognises all delivery channels - the free dhtmlx-scheduler package (the Standard edition under GPL), the @dhx/trial-scheduler evaluation package, the commercial @dhx/scheduler package, and <script> / CDN loading - and adapts setup, data, and theming guidance to each, flagging PRO-only features before scaffolding on a Standard install.
Review the rules in the GitHub repository.
DHTMLX React Scheduler
Covers integration of @dhtmlx/trial-react-scheduler and @dhx/react-scheduler into React applications. The skill helps the assistant add Scheduler to a project and set it up correctly, connect CRUD operations, and handle theming so that Scheduler reuses the app's own theme rather than drifting out of sync. It also includes known pitfalls extracted from real projects and directs the assistant to verify unfamiliar APIs through the DHTMLX MCP server rather than guessing.
The skill files are readable Markdown - you can review exactly what rules your assistant will follow in the GitHub repository.
Installing
npx skills add DHTMLX/skills --skill dhtmlx-js-scheduler
npx skills add DHTMLX/skills --skill dhtmlx-react-scheduler
Manual Installation
Clone or download the DHTMLX/skills repository and copy the relevant skill folder (dhtmlx-js-scheduler or dhtmlx-react-scheduler) into your project's skills directory (e.g., .claude/skills/ for Claude Code, .cursor/skills/ for Cursor).
Using Skills with MCP
Skills and the MCP server are complementary. MCP gives your assistant access to real-time API documentation - method signatures, property values, configuration options. Skills teach it the integration patterns that prevent common mistakes. For best results, use both. See DHTMLX MCP Server for setup instructions.