Glove ships with an Agent Skill that gives AI coding assistants deep knowledge of the framework — architecture, API reference, real patterns from the examples, and common gotchas.
Once installed, your coding assistant automatically knows how to use Glove correctly — the right import paths, the right class names, the right patterns. No more guessing or hallucinating APIs.
The skill works with any agent that supports the skills format:
/glove.The fastest way to install the skill is with the skills CLI:
npx skills add porkytheblack/glove -a claude-codeThis installs the skill into your project's .claude/skills/glove/ directory. The agent picks it up automatically.
To make the skill available in all your projects (not just the current one), add the -g flag:
npx skills add porkytheblack/glove -a claude-code -gIf you prefer not to use the CLI, copy the skill files directly from the Glove repository:
.claude/skills/glove/ directory into your project's .claude/skills/ folderYour project structure should look like:
your-project/
├── .claude/
│ └── skills/
│ └── glove/
│ ├── SKILL.md # Main skill file
│ ├── api-reference.md # Full API reference
│ └── examples.md # Real patterns from examples
├── src/
└── ...The skill gives your coding agent knowledge of:
glove-core, glove-react, and glove-next. Correct import paths, class names, method signatures.pushAndWait vs pushAndForget, how SlotRenderProps work, how to wire up renderSlot.createAdapter factory.Displaymanager casing (lowercase 'm'), the stream: true default, browser-safe import paths, and handling both model_response and model_response_complete events.Once installed, the skill activates automatically when your coding assistant detects you're working with Glove code. You don't need to do anything special — just write code as normal and the agent will reference the skill for accurate guidance.
You can also invoke it directly in Claude Code:
/gloveThis explicitly loads the skill context, which is useful when you want to ask the agent Glove-specific questions or have it scaffold a new tool, set up a provider, or debug a display stack issue.
With the skill installed, your agent can handle prompts like:
The skill is composed of three files:
| File | Purpose |
|---|---|
SKILL.md | Main skill file. Architecture overview, quick start, display stack patterns, ToolConfig reference, provider table, common gotchas. |
api-reference.md | Full API reference for all three packages — every class, interface, method, type, and event. |
examples.md | Real patterns drawn from the four example implementations (weather-agent, coding-agent, nextjs-agent, coffee). |
To update to the latest version of the skill, re-run the install command:
npx skills add porkytheblack/glove -a claude-codeThis overwrites the existing skill files with the latest versions from the repository.