![]() |
VOOZH | about |
Syncfusion AI Assistant
2 Apr 20268 minutes to read
This guide introduces Syncfusion Document SDK Skills, a knowledge package that enables AI assistants (GitHub Copilot, Code Studio, Cursor, Claude, etc.) to understand and generate accurate document processing code using Syncfusion® Document SDK libraries. It also supports executing document operations directly via CSX scripts.
Syncfusion® Document SDK Skills eliminate common issues with generic AI suggestions by grounding the assistant in accurate Syncfusion® Document SDK library APIs, document processing patterns, and platform-specific configuration for the following libraries:
Before installing Syncfusion® Document SDK Skills, ensure the following tools are available on your machine:
npx commands for installing skills.dotnet tool install -g dotnet-script.Use one of the following commands to install Syncfusion® Document SDK Skills based on your preference. You can also explore Syncfusion® skills from the marketplace.
To install all document SDK skills at once, use the following command:
npx skills add syncfusion/document-sdk-skills -yTo install a specific skill, use the following command (for example, to install PDF .NET skills):
npx skills add syncfusion/document-sdk-skills --skill syncfusion-dotnet-pdfChoose and install skills interactively from the terminal:
npx skills add syncfusion/document-sdk-skillsThe terminal will show a list of available skills. Use the arrow keys to navigate, space bar to select the skills you want, and Enter to confirm.
Select skills to install (space to toggle)
│ ◻ syncfusion-dotnet-pdf
│ ◻ syncfusion-dotnet-word
│ ◻ syncfusion-dotnet-excel
│ ◻ syncfusion-dotnet-powerpoint
│ ◻ syncfusion-dotnet-markdown
│ ◻ syncfusion-dotnet-smart-data-extraction
│ ◻ syncfusion-dotnet-calculate
│ ◻ syncfusion-java-word
│ ◻ syncfusion-flutter-pdf
│ ◻ syncfusion-javascript-pdf
│ .....Next, select which AI agent you’re using and where to store the skills.
│ ── Additional agents ─────────────────────────────
│ Search:
│ ↑↓ move, space select, enter confirm
│
│ ❯ ○ Augment (.augment/skills)
│ ○ Claude Code (.claude/skills)
│ ○ OpenClaw (skills)
│ ○ CodeBuddy (.codebuddy/skills)
│ ○ Command Code (.commandcode/skills)
│ ○ Continue (.continue/skills)
│ ○ Cortex Code (.cortex/skills)
│ ○ Crush (.crush/skills)
| ....Choose your installation scope (project-level or global), then confirm to complete the installation.
◆ Installation scope
│ ● Project (Install in current directory (committed with your project))
│ ○ Global
◆ Proceed with installation?
│ ● Yes / ○ NoThis registers the Syncfusion® skill pack so your AI assistant can automatically load it in supported IDEs such as Code Studio, Visual Studio Code, and Cursor.
To learn more about the Skills CLI, refer here.
Read the relevant skill files and choose modes based on the user’s query The assistant retrieves library APIs, and code patterns from the installed Syncfusion® Skills. It automatically chooses the appropriate operating mode based on the provided prompt.
Mode 1 — Generate Code:
"code", "snippet", "how to", "show me", "sample", or "example".references/*.md files for the requested functionalities.Mode 2 — Execute via CSX Script:
"create", "generate", "make", "open", "edit", "modify", or when a file path is provided (e.g., output/report.docx)..csx script by inserting the appropriate code snippet from the relevant references/*.md files..csx script.SyncfusionLicense.txt file at workspace root folder or the SYNCFUSION_LICENSE_KEY environment variable.Once skills are installed, the assistant can generate Syncfusion® document processing code or execute document generation tasks. Below are example prompts for each mode.
Generate Code (Mode 1):
Execute Task (Mode 2):
After installation, manage Syncfusion® Agent Skills using the following commands:
View all installed skills in your current project or global environment:
npx skills listNote: If you installed Syncfusion skills globally, add the
--globalflag at the end of the command (for example,npx skills list --global,npx skills remove <skill-name> --global).
Uninstall a specific skill from your environment:
npx skills remove <skill-name>Replace <skill-name> with the name of the skill you want to remove (for example, syncfusion-dotnet-pdf).
Check if updates are available for your installed skills:
npx skills checkUpdate all installed skills to their latest versions:
npx skills updateWhich agents and IDEs are supported?
Any Skills compatible agent or IDE that loads local skill files (Visual Studio Code, Cursor, CodeStudio, etc.).
Are skills loaded automatically?
Yes. Once installed, supported agents automatically detect and load relevant skills for Syncfusion‑related queries without requiring additional configuration.
Skills are not being loaded
Verify that skills are installed in the correct agent directory, restart the IDE, and confirm that the agent supports external skill files.