From xwiki
Deploy an XWiki extension (XAR or JAR) to a running XWiki instance via the REST job API. Use when the user wants to install, deploy, or hot-reload a built extension into a local XWiki.
How this skill is triggered — by the user, by Claude, or both
Slash command
/xwiki:extensionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
To deploy an XWiki extension (XAR, JAR), to a running XWiki install, do the following:
To deploy an XWiki extension (XAR, JAR), to a running XWiki install, do the following: 0) If the extension is a core extension (i.e. located in webapps/xwiki/WEB-INF/lib) then simply replace the jar with the new one and don't go over the next steps and ask the dev to restart XWiki.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<jobRequest xmlns="http://www.xwiki.org">
<id>
<element>extension</element>
<element>provision</element>
<element>796fb04f-b095-4db8-a3ec-fa03f22051f8</element>
</id>
<interactive>false</interactive>
<remote>false</remote>
<verbose>true</verbose>
<property>
<key>extensions</key>
<value>
<list xmlns="" xmlns:ns2="http://www.xwiki.org">
<org.xwiki.extension.ExtensionId>
<id>id here</id>
<version class="org.xwiki.extension.version.internal.DefaultVersion" serialization="custom">
<org.xwiki.extension.version.internal.DefaultVersion>
<string>version here</string>
</org.xwiki.extension.version.internal.DefaultVersion>
</version>
</org.xwiki.extension.ExtensionId>
</list>
</value>
</property>
<property>
<key>extensions.excluded</key>
<value>
<set xmlns="" xmlns:ns2="http://www.xwiki.org"/>
</value>
</property>
<property>
<key>interactive</key>
<value>
<boolean xmlns="" xmlns:ns2="http://www.xwiki.org">false</boolean>
</value>
</property>
<property>
<key>namespaces</key>
<value>
<list xmlns="" xmlns:ns2="http://www.xwiki.org">
<string>wiki:xwiki</string>
</list>
</value>
</property>
</jobRequest>
extensions.excluded and interactive properties, then run:
curl -i --user "Admin:admin" -X PUT -H "Content-Type: text/xml" "http://localhost:8080/xwiki/rest/jobs?jobType=uninstall&async=false" --upload-file uninstalljobrequest.xml
Then re-run the install curl command.curl -i --user "Admin:admin" -X PUT -H "Content-Type: text/xml" "http://localhost:8080/xwiki/rest/jobs?jobType=install&async=false" --upload-file installjobrequest.xmlnpx claudepluginhub xwiki/xwiki-dev-llm --plugin xwikiProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.