syncfusion-angular-gantt-chart
Implement and configure the Syncfusion Angular Gantt Chart component (ejs-gantt, GanttModule). Use this when building Angular applications with Gantt chart functionality, task scheduling, dependencies, or resource management. Covers component setup, task dependencies, taskbar editing, critical path analysis, resource allocation, timeline configuration, filtering, sorting, export, undo/redo, state persistence, and localization.
What this skill does
# Syncfusion Angular Gantt Chart
A comprehensive skill for implementing and configuring the Syncfusion Angular Gantt Chart component (`ejs-gantt`). This covers everything from initial setup through advanced features like critical path, virtual scrolling, resource views, undo/redo, state persistence, localization, and export.
## When to Use This Skill
Use this skill when you need to:
- Install and set up the Angular Gantt Chart component
- Bind local or remote data to the Gantt chart
- Configure task scheduling modes (Auto/Manual/Custom)
- Define task dependencies and predecessor relationships
- Add, edit, or delete tasks (cell, dialog, taskbar editing)
- Assign and manage resources
- Configure timelines, zooming, and tier formats
- Customize taskbars, labels, and data markers
- Filter, sort, search, or select rows/cells
- Enable toolbar, context menu, or undo/redo
- Export to Excel or PDF
- Implement virtual scrolling or state persistence
- Apply localization, RTL layout, or timezone configuration
- Work with holidays, event markers, critical path, or baseline
---
## Documentation and Navigation Guide
### Getting Started
π **Read:** [references/getting-started.md](references/getting-started.md)
- Installation via `ng add @syncfusion/ej2-angular-gantt`
- CSS imports for all themes (material3, bootstrap5, fluent2, tailwind3)
- Setting up Angular standalone component with `imports` and `providers`
- Binding data with `dataSource` and `taskFields` β self-referential vs hierarchical
- Injecting feature services (EditService, FilterService, ToolbarService, etc.)
- Configuring timeline, toolbar, editing, filtering, sorting
- `gridLines` values: `'Both'` | `'Horizontal'` | `'Vertical'` | `'None'`
- `actionFailure` error handling for common configuration mistakes
### Data Binding
π **Read:** [references/data-binding.md](references/data-binding.md)
- **Default pattern:** Self-referential flat array with `id` + `parentID` (idMapping + parentIdMapping) β use this unless user explicitly asks for nested data
- Hierarchical local data with `child` array β only when user explicitly requests nested/tree structure
- Decision table: when to use self-referential vs hierarchical
- Remote data binding with `DataManager` and adaptors (ODataV4, WebApiAdaptor, UrlAdaptor)
- Load-on-demand (virtual loading) with `loadChildOnDemand` and `hasChildMapping`
- Observable / RxJS data binding with `async` pipe
- Remote CRUD with `crudUrl`, `insertUrl`, `updateUrl`, `removeUrl`, `batchUrl`
- Common gotchas table (missing `isPrimaryKey`, wrong adaptor, parent date issues)
### Task Scheduling
π **Read:** [references/task-scheduling.md](references/task-scheduling.md)
- `taskMode`: `'Auto'` (default), `'Manual'`, `'Custom'` (per-task via boolean field)
- Auto mode: dates calculated from dependencies, working time, and holidays
- Manual mode: all dates fixed as-is in data source; use `validateManualTasksOnLinking` to still adjust on link
- Custom mode: per-task scheduling via mapped boolean field in data source
- Unscheduled tasks (`allowUnscheduledTasks`) β partial dates, floating bars
- `durationUnit`: `'Day'` | `'Hour'` | `'Minute'`
- **Working days:** `workWeek` array (default MonβFri); `includeWeekend: true` makes all 7 days working
- **Working hours:** `dayWorkingTime` β array of `{ from, to }` ranges (default 8β17); affects hour-based durations
- Baseline dates (`renderBaseline`, `baselineStartDate`, `baselineEndDate`, `baselineColor`)
- Work scheduling (effort-driven) with `work` field and `workUnit`
### Task Dependencies
π **Read:** [references/task-dependencies.md](references/task-dependencies.md)
- Dependency types: `FS` (Finish-to-Start), `SS`, `FF`, `SF` β format: `'2FS'`, `'3SS+1d'`
- Comma-separated multiple predecessors: `'2FS,3SS'`
- Predecessor lag/lead offsets with `d`/`h`/`m` units
- `autoUpdatePredecessorOffset` β sync offset values with actual positions on load
- `allowParentDependency` β enable parent-child and cross-hierarchy dependencies
- Editing via connector line drag when `editSettings.allowTaskbarEditing: true`
- `actionBegin` `requestType: 'validateLinkedTask'` β handle dependency conflicts
- Programmatic: `addPredecessor()`, `removePredecessor()`, `updateRecordById()`
- `connectorLineWidth` and `connectorLineBackground` for connector styling
### Task Constraints
π **Read:** [references/task-constraints.md](references/task-constraints.md)
- 8 constraint types: ASAP (0), ALAP (1), MSO (2), MFO (3), SNET (4), SNLT (5), FNET (6), FNLT (7)
- Map via `taskFields.constraintType` (numeric) and `taskFields.constraintDate` (Date)
- Constraints enforced only in Auto mode; stored-but-passive in Manual mode
- Conflicts with dependencies surface in `actionBegin` event
### Managing Tasks
π **Read:** [references/managing-tasks.md](references/managing-tasks.md)
- `editSettings`: `allowEditing`, `allowAdding`, `allowDeleting`, `allowTaskbarEditing`, `mode` (`'Auto'` | `'Dialog'`)
- Cell editing with `editType` per column: `'numericedit'`, `'defaultedit'`, `'dropdownedit'`, `'booleanedit'`, `'datepickeredit'`
- Dialog editing with custom tab configuration (`addDialogFields`, `editDialogFields`)
- Programmatic: `addRecord()`, `updateRecordById()`, `deleteRecord()`, `openAddDialog()`, `openEditDialog(id)`
- Expand/collapse: `expandAll()`, `collapseAll()`, `expandByID(id)`, `collapseByID(id)`; events: `expanding`, `expanded`, `collapsing`, `collapsed`
- Validation via `actionBegin` event (`args.cancel = true` to block)
- Server CRUD via `actionComplete` + `requestType` inspection
- Indent / outdent hierarchy changes via toolbar or `indent()` / `outdent()` methods
### Splitting and Merging Tasks
π **Read:** [references/splitting-and-merging.md](references/splitting-and-merging.md)
- `taskFields.segments` for hierarchical data; `taskFields.segmentId` for self-referential data
- Split at load time or dynamically via dialog Segments tab or context menu `SplitTask`
- Merge via context menu `MergeTask` or by dragging segments together
- `onTaskbarClick` with `segmentIndex` to detect which segment was clicked
- Limitations: no splits on parent/milestone tasks; incompatible with multi-taskbar resource view
### Resources
π **Read:** [references/resources.md](references/resources.md)
- `resources` (data) + `resourceFields` (field mapping: `id`, `name`, `unit`, `group`)
- `taskFields.resourceInfo` to link resources to tasks
- Resource view mode (`viewType: 'ResourceView'`) with row-per-resource display
- `showOverAllocationAsMultiTaskbar` β stacked taskbars for over-allocated resources
- `allowTaskbarOverlap` β controls overlapping vs stacked taskbars in resource rows (and affects same-resource dependency rendering)
- Work-based scheduling: `work` field, `taskType` (`'FixedWork'`, `'FixedDuration'`, `'FixedUnit'`)
- Work unit: `workUnit: 'Hour'` | `'Day'` | `'Minute'`
### Columns
π **Read:** [references/columns.md](references/columns.md)
- Column `field`, `headerText`, `width`, `format`, `type`, `template`, `headerTemplate`
- Column reordering (`allowReordering`), resizing (`allowResizing`)
- Frozen columns (`freeze: 'Left'` | `'Right'`) β requires `FreezeService`
- Column spanning via `queryCellInfo`
- `treeColumnIndex` for tree expand/collapse column
- WBS (Work Breakdown Structure) column with `columnType: 'WBS'`
- Column menu (`showColumnMenu`) β sort, filter, auto-fit, column chooser
- `isPrimaryKey` requirement for CRUD operations
### Timeline
π **Read:** [references/timeline.md](references/timeline.md)
- `timelineSettings` configuration
- Top tier and bottom tier customization
- Timeline view modes (day/week/month/year)
- Formatter function with `(date, format, tier, mode)` parameters
- Timeline cell width (`timelineUnitSize`)
- Custom date formats
- `projectStartDate` and `projectEndDate`
- Timeline view window (`viewStartDate` / `viewEndDate`)
- Week start day (`weekStartDay`)
- Automatic timescale update (`updateTimescaleView`)
- Weekend highlighting (Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context β no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes β information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development β guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.