skills/.system/guicedee-client/SKILL.md
GuicedEE client SPI contracts: IGuiceContext, lifecycle hook interfaces (IGuicePreStartup, IGuiceModule, IGuicePostStartup, IGuicePreDestroy, IGuiceConfigurator) — all extending IDefaultService for sort ordering and enablement, CallScope and CallScopeProperties, IJsonRepresentation for Jackson serialization, and JPMS module setup. Use when programming against GuicedEE SPI contracts, understanding the lifecycle hook interfaces, implementing IDefaultService, using call scoping, or referencing the client API without the full runtime.
npx skillsauth add guicedee/ai-rules guicedee-clientInstall 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.
The client SPI library — defines the contracts that all GuicedEE modules program against without pulling in the full runtime.
This library provides the interfaces and annotations for the GuicedEE lifecycle. Application code and library modules depend on client to register hooks, access the injector, and define scoping — without coupling to the runtime engine in inject.
com.guicedee:client dependency.IGuiceContext.registerModuleForScanning.add("my.app");
IGuiceContext context = IGuiceContext.instance();
Injector injector = context.inject();
provides:
module my.app {
requires com.guicedee.client;
provides com.guicedee.client.services.lifecycle.IGuiceModule
with my.app.AppModule;
}
All hooks extend IDefaultService<J> (CRTP) — override sortOrder() to control execution order and enabled() to conditionally skip.
| Interface | When | Purpose |
|---|---|---|
| IGuiceConfigurator<J> | First | Configure GuiceConfig before scanning |
| IGuicePreStartup<J> | After scan, before injector | Pre-startup tasks, returns List<Future<Boolean>> |
| IGuiceModule<J> | During injector creation | Standard Guice AbstractModule |
| IGuicePostStartup<J> | After injector ready | Post-startup tasks, returns List<Uni<Boolean>> |
| IGuicePreDestroy<J> | On shutdown | Cleanup resources |
| Class | Purpose |
|---|---|
| IGuiceContext | Singleton access to injector and context |
| IDefaultService | Base for all SPI hooks (CRTP) with sortOrder() and enabled() |
| CallScope / CallScopeProperties | Request-scoped injection context |
| IJsonRepresentation | Jackson ObjectMapper configuration contract |
requires com.guicedee.client;.module-info.java + META-INF/services/).sortOrder() controls execution order — lower runs first.sortOrder() — all futures in a group must complete before the next group.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.