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: Document-Processing/Skills/document-sdk.md
+68Lines changed: 68 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -146,6 +146,74 @@ Each installed skill pack provides the following capabilities:
146
146
147
147
Once skills are installed, the assistant can generate Syncfusion<supstyle="font-size:70%">®</sup> document processing code or execute document generation tasks. Below are example prompts for each mode.
148
148
149
+
## Skills CLI Commands
150
+
151
+
After installation, manage Syncfusion<supstyle="font-size:70%">®</sup> Agent Skills using the following commands:
152
+
153
+
### List Skills
154
+
155
+
View all installed skills in your current project or global environment:
156
+
157
+
{% tabs %}
158
+
{% highlight bash tabtitle="NPM" %}
159
+
160
+
npx skills list
161
+
162
+
{% endhighlight %}
163
+
{% endtabs %}
164
+
165
+
### Remove a Skill
166
+
167
+
Uninstall a specific skill from your environment:
168
+
169
+
{% tabs %}
170
+
{% highlight bash tabtitle="NPM" %}
171
+
172
+
npx skills remove <skill-name>
173
+
174
+
{% endhighlight %}
175
+
{% endtabs %}
176
+
177
+
Replace `<skill-name>` with the name of the skill you want to remove (for example, `syncfusion-dotnet-pdf`).
178
+
179
+
### Check for Updates
180
+
181
+
Check if updates are available for your installed skills:
182
+
183
+
{% tabs %}
184
+
{% highlight bash tabtitle="NPM" %}
185
+
186
+
npx skills check
187
+
188
+
{% endhighlight %}
189
+
{% endtabs %}
190
+
191
+
### Update All Skills
192
+
193
+
Update all installed skills to their latest versions:
194
+
195
+
{% tabs %}
196
+
{% highlight bash tabtitle="NPM" %}
197
+
198
+
npx skills update
199
+
200
+
{% endhighlight %}
201
+
{% endtabs %}
202
+
203
+
## FAQ
204
+
205
+
**Which agents and IDEs are supported?**
206
+
207
+
Any Skills compatible agent or IDE that loads local skill files (Visual Studio Code, Cursor, CodeStudio, etc.).
208
+
209
+
**Are skills loaded automatically?**
210
+
211
+
Yes. Once installed, supported agents automatically detect and load relevant skills for Syncfusion‑related queries without requiring additional configuration.
212
+
213
+
**Skills are not being loaded**
214
+
215
+
Verify that skills are installed in the correct agent directory, restart the IDE, and confirm that the agent supports external skill files.
0 commit comments