skills/.system/guicedee-webservices/SKILL.md
SOAP web services for GuicedEE using Apache CXF conventions: JAX-WS annotations (@WebService, @WebMethod, @WebParam, @WebResult), code-first and WSDL-first approaches, endpoint publishing, CXF interceptors and logging, MTOM, WS-Security (WSS4J), SOAP 1.1/1.2 bindings, and Guice DI integration. Use when creating SOAP services, publishing JAX-WS endpoints, configuring CXF bindings, or adding WS-Security.
npx skillsauth add guicedee/ai-rules guicedee-webservicesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
SOAP web services using Apache CXF conventions inside GuicedEE.
Build SOAP services using standard JAX-WS annotations (@WebService, @WebMethod, @WebParam, @WebResult) and configure endpoints, bindings, interceptors, and WS-Security in the same way you would with CXF. Works alongside GuicedEE Vert.x Web and REST/OpenAPI modules.
com.guicedee:guiced-webservices dependency.@WebService(targetNamespace = "http://example.com/hello", name = "HelloService")
public interface HelloService {
@WebMethod(operationName = "sayHello")
@WebResult(name = "greeting")
String sayHello(@WebParam(name = "name") String name);
}
@WebService(endpointInterface = "com.example.ws.HelloService",
serviceName = "HelloService",
portName = "HelloPort",
targetNamespace = "http://example.com/hello")
public class HelloServiceImpl implements HelloService {
@Override
public String sayHello(String name) { return "Hello " + name; }
}
IGuicePostStartup.cxf-codegen-plugin).IGuicePostStartup.module-info.java + META-INF/services/).development
Install Codex skills into $CODEX_HOME/skills from a curated list or a GitHub repo path. Use when a user asks to list installable skills, install a curated skill, or install a skill from another repo (including private repos).
tools
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Codex's capabilities with specialized knowledge, workflows, or tool integrations.
development
WebAwesome icon integration for JWebMP — modern, open-source icon library. Provides 1,500+ icons with solid/regular styles, sizing, rotation, animation, and CSS utilities. Drop-in FontAwesome alternative with fresh designs. Use when working with WebAwesome icons, modern icon designs, or as FontAwesome alternative in JWebMP applications.
development
WebAwesome Pro integration for JWebMP with premium icons and features. Extends jwebmp-webawesome with additional styles, premium icons, and advanced features. Use when working with WebAwesome Pro icons or premium WebAwesome features in JWebMP applications.