You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/integrations/ai-tools/agent-skills.md
+12-7Lines changed: 12 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,30 +16,35 @@ Unlike the [MCP server](integrations/ai-tools/mcp-server.md), which provides rea
16
16
17
17
### DHTMLX JS Gantt
18
18
19
-
Covers integration of the core JavaScript Gantt into plain JavaScript and TypeScript applications. The skill recognises all three delivery channels — the free `dhtmlx-gantt` (Standard / GPL) package, the `@dhx/trial-gantt` evaluation package, the commercial `@dhx/gantt` package, and `<script>` / CDN loading — and adapts its guidance accordingly. It covers setup and lifecycle, `gantt.parse` / `gantt.load`, templates, events, plugins, the DataProcessor, task and link CRUD, resources and assignments, working calendars, undo/redo, row reorder, baselines, critical path, locale and i18n, theming, and live updates.
19
+
Covers integration of the core JavaScript Gantt into plain JavaScript and TypeScript applications. The skill recognises all delivery channels - the free `dhtmlx-gantt` (Standard / GPL) package, the `@dhx/trial-gantt` evaluation package, the commercial `@dhx/gantt` package, and `<script>` / CDN loading - and adapts setup, data, and theming guidance to each.
20
20
21
-
As with the other skills, unfamiliar APIs are routed through the [DHTMLX MCP server](integrations/ai-tools/mcp-server.md) rather than guessed.
22
-
23
-
The skill files are readable Markdown - you can review exactly what rules your assistant will follow in the [GitHub repository](https://github.com/DHTMLX/skills/tree/main/dhtmlx-js-gantt).
21
+
Review the rules in the [GitHub repository](https://github.com/DHTMLX/skills/tree/main/dhtmlx-js-gantt).
24
22
25
23
### DHTMLX React Gantt
26
24
27
-
Covers integration of `@dhtmlx/trial-react-gantt` and `@dhx/react-gantt` into React applications. The skill helps the assistant add Gantt to a project and set it up correctly, connect CRUD operations, and handle theming so that Gantt 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](integrations/ai-tools/mcp-server.md) rather than guessing.
25
+
Covers integration of `@dhtmlx/trial-react-gantt` and `@dhx/react-gantt` into React applications. The skill teaches the assistant the wrapper-specific setup, data ownership and persistence patterns, and theming approach that are easy to get wrong - and lists known pitfalls extracted from real projects with concrete fixes.
28
26
29
-
The skill files are readable Markdown - you can review exactly what rules your assistant will follow in the [GitHub repository](https://github.com/DHTMLX/skills/tree/main/dhtmlx-react-gantt).
27
+
Review the rules in the [GitHub repository](https://github.com/DHTMLX/skills/tree/main/dhtmlx-react-gantt).
30
28
31
29
For a worked example of these patterns applied end-to-end, see the [React Gantt Lovable Starter](https://github.com/DHTMLX/react-gantt-lovable-starter) - a multi-project planner generated in Lovable, with the full build recipe in its [`lovable/`](https://github.com/DHTMLX/react-gantt-lovable-starter/tree/main/lovable) folder.
32
30
31
+
### DHTMLX Angular Gantt
32
+
33
+
Covers integration of `@dhtmlx/trial-angular-gantt` and `@dhx/angular-gantt` into Angular applications. The skill teaches the assistant the wrapper-specific setup, data ownership and persistence patterns (`data.save` / `data.batchSave`), and theming approach that are easy to get wrong - and lists the known failure modes with concrete fixes.
34
+
35
+
Review the rules in the [GitHub repository](https://github.com/DHTMLX/skills/tree/main/dhtmlx-angular-gantt).
Clone or download the [DHTMLX/skills](https://github.com/DHTMLX/skills) repository and copy the relevant skill folder (`dhtmlx-js-gantt`or `dhtmlx-react-gantt`) into your project's skills directory (e.g., `.claude/skills/` for Claude Code, `.cursor/skills/` for Cursor).
47
+
Clone or download the [DHTMLX/skills](https://github.com/DHTMLX/skills) repository and copy the relevant skill folder (`dhtmlx-js-gantt`, `dhtmlx-react-gantt`, or `dhtmlx-angular-gantt`) into your project's skills directory (e.g., `.claude/skills/` for Claude Code, `.cursor/skills/` for Cursor).
Copy file name to clipboardExpand all lines: docs/integrations/angular/index.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@ description: "Install, configure, and use DHTMLX Gantt in Angular with the offic
6
6
7
7
Angular Gantt is the official Angular wrapper for DHTMLX Gantt. It gives you an Angular component API for the chart while preserving access to the full Gantt engine.
8
8
9
+
:::tip AI-assisted development
10
+
If you use an AI coding assistant, the [DHTMLX Angular Gantt agent skill](integrations/ai-tools/agent-skills.md#available-skills) can help it follow correct wrapper integration patterns - matching CSS imports, providing an explicit height chain, choosing a data ownership model, normalizing dates around `data.save` / `data.batchSave`, and mapping the app theme through Gantt CSS variables. For real-time API reference, connect the [DHTMLX MCP server](integrations/ai-tools/mcp-server.md).
11
+
:::
12
+
9
13
## What You Get With The Wrapper
10
14
11
15
- Declarative inputs for `tasks`, `links`, `config`, `templates`, `plugins`, `theme`, and `locale`.
Copy file name to clipboardExpand all lines: docs/integrations/angular/overview.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,10 @@ Angular Gantt is the official Angular wrapper for DHTMLX Gantt. It exposes the G
10
10
11
11
If you need installation and project setup first, start with [Quick Start with Angular Gantt](integrations/angular/quick-start.md).
12
12
13
+
:::tip AI-assisted development
14
+
If you use an AI coding assistant, the [DHTMLX Angular Gantt agent skill](integrations/ai-tools/agent-skills.md#available-skills) can help it follow correct wrapper integration patterns and avoid common mistakes such as mismatched CSS imports, missing container height, mixed ownership between Angular state and the Gantt `instance`, and unstable date serialization through `data.save` / `data.batchSave`. For real-time API reference, connect the [DHTMLX MCP server](integrations/ai-tools/mcp-server.md).
15
+
:::
16
+
13
17
## Core Capabilities
14
18
15
19
The wrapper is built for both simple and advanced Angular integrations:
0 commit comments