Install
$ agentstack add skill-dhtmlx-skills-dhtmlx-angular-gantt ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Source Of Truth
Use only:
- The current project's files, structure, and established patterns
- DHTMLX MCP for Angular Gantt API details: https://docs.dhtmlx.com/mcp
- Official DHTMLX Angular Gantt docs as fallback: https://docs.dhtmlx.com/gantt/integrations/angular/
Never invent inputs, template signatures, callback contracts, event names, or backend behavior.
If any Angular Gantt API detail is unclear, resolve it through DHTMLX MCP before writing code.
Preflight
Before writing code, identify:
- package:
@dhtmlx/trial-angular-ganttor@dhx/angular-gantt— checkpackage.json, imports, lockfiles - runtime: Angular standalone components or NgModule setup
- ownership model: Angular state/store as source of truth (recommended) or Gantt as source of truth (performance-focused)
- persistence: local only,
data.save(default), ordata.batchSave(bulk sync)
Workflow
- Confirm installed Angular Gantt package and matching import path.
- Confirm wrapper CSS is imported and chart height chain is explicit.
- Decide the state ownership model before implementing features, and keep one model per page/feature area.
- Read only the reference file needed for the task:
- Angular wrapper integration/setup: [references/angular-integration.md](references/angular-integration.md)
- CRUD, state, persistence, wrapper task types, and v9 -> v10 migration: [references/data-and-crud.md](references/data-and-crud.md)
- Failure cases and guardrails: [references/known-failures.md](references/known-failures.md)
- Advanced patterns (reorder, resources, undo/redo, schema): [references/advanced-patterns.md](references/advanced-patterns.md)
- Styling, theming, templates, and override strategy: [references/styling-and-theming.md](references/styling-and-theming.md)
- Use DHTMLX MCP before relying on advanced or unfamiliar APIs.
- Implement with documented APIs only.
MCP Server
This skill relies on DHTMLX MCP for API verification. If the dhtmlx-mcp tool is not available, ask the user to add it:
Claude Code:
claude mcp add --transport http dhtmlx-mcp https://docs.dhtmlx.com/mcp
Codex:
codex mcp add dhtmlx-mcp --url https://docs.dhtmlx.com/mcp
If MCP is not available, use the official docs at https://docs.dhtmlx.com/gantt/integrations/angular/ as fallback.
Consult MCP First For
Consult DHTMLX MCP before using or changing:
- template callbacks you have not already verified
- advanced inputs such as
batchSave,customLightbox,groupTasks, orresourceFilter eventscallback signatures beyond commonly used handlers- theme/skin names beyond known project usage
- complex layout/resource panel definitions (
resourceGrid,resourceTimeline, shared scroll) - workload cell template callbacks and overload logic
Hard Rules
- Use wrapper path (``) by default for Angular tasks.
- The Gantt container must have explicit height through the parent chain.
- Use app theme as single source of truth; map it to Gantt theme.
- Prefer CSS variables and documented templates before selector-heavy overrides.
- Keep tasks/links in Angular state/store when surrounding UI depends on chart state.
- Normalize date values before persistence.
- Build backend payloads explicitly from normalized app task/link models.
- If mutating through
instance, keep Angular state synchronized immediately. - Do not mix wrapper-driven inputs and imperative instance mutations without intentional synchronization.
Quick Checklist
- [ ] Correct package identified
- [ ] Matching wrapper CSS import used
- [ ] Explicit height chain provided
- [ ] State ownership model chosen
- [ ] Dates normalized before persistence
- [ ] Advanced APIs verified with MCP
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: DHTMLX
- Source: DHTMLX/skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.