syncfusion-angular-kanban
Create and manage interactive Kanban boards with Syncfusion Angular component. Use this skill when you need to build workflow visualization tools with drag-and-drop cards, swimlanes, columns, and real-time data binding. Covers setup, configuration, events, properties, methods, and best practices for implementing task management and project tracking interfaces.
What this skill does
# Implementing Syncfusion Angular Kanban
## When to Use This Skill
The Syncfusion Angular Kanban component is essential when you need to:
- **Visualize workflows** - Display task stages (To Do → In Progress → Testing → Done)
- **Enable task management** - Allow users to organize and track work across multiple columns
- **Implement drag-and-drop** - Let users move cards between columns to change task status
- **Group tasks** - Use swimlanes to organize cards by owner, priority, or category
- **Set constraints** - Enforce WIP (Work In Progress) limits with min/max card counts
- **Customize appearance** - Apply templates, themes, and custom styling to cards and columns
- **Handle events** - Listen to card clicks, drag operations, and state changes
- **Persist state** - Save board configuration and card positions
## Component Overview
The Kanban board is a visual workflow management tool built with:
- **Cards** - Represent individual tasks (mapped to dataSource via `cardSettings`)
- **Columns** - Define workflow stages (mapped using `keyField` and column configuration)
- **Swimlanes** - Group cards by category (employee, priority, etc.)
- **Drag-and-drop** - Enabled by default (`allowDragAndDrop: true`)
- **Data Binding** - Supports local arrays and remote DataManager
- **Templates** - Customize card, column header, swimlane header, and tooltip rendering
- **Responsive** - Adapts layout to desktop and mobile devices
- **Themes** - Five built-in themes: Material, Bootstrap 3, Bootstrap 4, Fabric, High Contrast
## Key Features
✓ **Multi-column workflow** with customizable headers
✓ **Smooth drag-and-drop** between columns and within columns
✓ **Swimlane grouping** by any data field
✓ **WIP validation** (min/max card counts per column/swimlane)
✓ **Templates** for cards, columns, swimlanes, dialogs, and tooltips
✓ **Local & remote data binding** with DataManager integration
✓ **Keyboard navigation** and full accessibility support
✓ **Events** for user interactions (click, drag, selection, dialog open/close)
✓ **Methods** for programmatic control (add/delete cards, show/hide columns)
✓ **Multiple selection modes** (single or multiple card selection)
✓ **Stacked headers** for grouping related columns
✓ **Built-in themes** with CSS customization support
## Documentation and Navigation Guide
### Getting Started
📄 **Read:** [references/getting-started.md](references/getting-started.md)
- Installation and npm package setup
- Angular module imports and configuration
- CSS imports and theme registration
- Basic Kanban initialization with minimal example
- First running board with sample data
### Core Structure: Columns and Swimlanes
📄 **Read:** [references/columns-and-swimlanes.md](references/columns-and-swimlanes.md)
- Column configuration with keyField mapping
- Single-key vs. multi-key column mapping
- Column headers and stacked headers
- Swimlane grouping by field
- Dynamic column add/remove/show/hide
### Cards and Data Binding
📄 **Read:** [references/cards-and-data-binding.md](references/cards-and-data-binding.md)
- Card structure: header field, content field, grabber field
- Card templates and custom rendering
- Local array data binding
- Remote data binding with DataManager
- OData v4 support
- Card selection modes (single/multiple)
### Drag-and-Drop and Interaction
📄 **Read:** [references/drag-and-drop.md](references/drag-and-drop.md)
- Drag-and-drop functionality (enabled by default)
- Card movement between columns
- Reordering within columns
- transitionColumns to control valid transitions
- Drag events (beforeDragStart, dragStart, dragStop)
- WIP limits: enforcing min/max card counts
- Keyboard navigation support
### Features and Customization
📄 **Read:** [references/features-and-customization.md](references/features-and-customization.md)
- Sorting, filtering, and searching cards
- Validation rules and dialogs
- Responsive mode for mobile
- Custom dialog templates
- Tooltip templates and configuration
- Priority indicators and color grabbers
- Column toggling and collapsing
### Properties Reference
📄 **Read:** [references/properties.md](references/properties.md)
- Core properties: allowDragAndDrop, allowKeyboard, allowSelection
- Card configuration: cardSettings (headerField, contentField, template, etc.)
- Column setup: columns array with ColumnsModel
- Swimlane configuration: swimlaneSettings
- Dialog and tooltip templates
- WIP limits: minCount, maxCount per column
- Responsive breakpoints and heights
### Methods Reference
📄 **Read:** [references/methods.md](references/methods.md)
- Card operations: addCard(), deleteCard(), updateCard(), getSelectedCards()
- Column operations: addColumn(), removeColumn(), hideColumn(), showColumn()
- Board operations: refresh(), getCardCount()
- Swimlane operations: getSwimlaneData()
- Dialog control: openDialog(), closeDialog()
- Search/Filter: search(), filter(), sortBy()
### Events Reference
📄 **Read:** [references/events.md](references/events.md)
- Action events: actionBegin, actionComplete, actionFailure
- Card events: cardClick, cardDoubleClick, cardSelection
- Drag events: dragStart, dragStop, beforeDragStart
- Dialog events: dialogOpen, dialogClose
- Column/swimlane events: columnClick, swimlaneClick
- Event argument types and data structures
### Data Persistence and State
📄 **Read:** [references/data-persistence.md](references/data-persistence.md)
- Local storage persistence for board state
- Saving card positions and column state
- ObservableCollection integration
- State restoration after page reload
- Manual state save/restore patterns
### Styling, Themes, and Appearance
📄 **Read:** [references/styling-and-theming.md](references/styling-and-theming.md)
- Built-in themes (Material, Bootstrap 3/4, Fabric, High Contrast)
- CSS variable customization
- Card and column custom styling
- Dark mode support
- RTL (right-to-left) language support
- Theme Studio integration
### Accessibility and Internationalization
📄 **Read:** [references/accessibility-and-localization.md](references/accessibility-and-localization.md)
- WCAG compliance and keyboard navigation
- ARIA attributes for screen readers
- Focus management and keyboard shortcuts
- Internationalization (i18n) setup
- Multi-language support
- Locale data configuration
### Migration and Best Practices
📄 **Read:** [references/migration-and-best-practices.md](references/migration-and-best-practices.md)
- EJ1 to EJ2 migration guide
- Performance optimization strategies
- Virtual scrolling for large datasets
- Common patterns and code examples
- Troubleshooting common issues
- FAQ and gotchas
## Quick Start Example
### 1. Install Package
```bash
npm install @syncfusion/ej2-angular-kanban
```
### 2. Import and Setup Component
```typescript
import { Component } from '@angular/core';
import { KanbanModule } from '@syncfusion/ej2-angular-kanban';
import { CardSettingsModel } from '@syncfusion/ej2-angular-kanban';
@Component({
selector: 'app-kanban-board',
standalone: true,
imports: [KanbanModule],
template: `
<ejs-kanban
keyField="Status"
[dataSource]="data"
[cardSettings]="cardSettings">
<e-columns>
<e-column headerText="To Do" keyField="Open"></e-column>
<e-column headerText="In Progress" keyField="InProgress"></e-column>
<e-column headerText="Testing" keyField="Testing"></e-column>
<e-column headerText="Done" keyField="Close"></e-column>
</e-columns>
</ejs-kanban>
`
})
export class KanbanBoardComponent {
data = [
{ Id: 1, Status: 'Open', Summary: 'Analyze the new requirements gathered from the customer.', Type: 'Epic' },
{ Id: 2, Status: 'InProgress', Summary: 'Improve application performance', Type: 'Epic' },
{ Id: 3, Status: 'Testing', Summary: 'Fix the issues reported in the IE browser', Type: 'Bug' },
{ Id: 4, Status: 'Close', Summary: 'Fix the issue reported by the customer.', Type: 'Bug' }
];
cRelated 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.