Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/annondeveloper/ui-kit/generate-componentnpx skills add annondeveloper/ui-kit --skill generate-componentgit clone --depth 1 https://github.com/annondeveloper/ui-kitWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00060 | $0.00405 |
| Opus 5 | $0.00030 | $0.00202 |
| Sonnet 5 | $0.00012 | $0.00081 |
| Haiku 4.5 | $0.00006 | $0.00040 |
Grade A, and why
generate-component scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
UI Kit Code Generator
Generate a component using @annondeveloper/ui-kit for: $ARGUMENTS
Rules
- Always wrap in UIProvider — the root of any ui-kit app needs
<UIProvider>for theme/motion - Use correct imports — Standard:
@annondeveloper/ui-kit, Lite:@annondeveloper/ui-kit/lite, Premium:@annondeveloper/ui-kit/premium - OKLCH colors only — never use hex/rgb in custom styles. Use
oklch(65% 0.2 270)or CSS variables likevar(--brand) - Motion prop — all animated components accept
motion={0|1|2|3}. Default is 3 (cinematic). Use 0 for instant, 1 for subtle - Logical properties — use
margin-inline-startnotmargin-left,block-sizenotheight - Container queries — components adapt to container, not viewport. Use
container-type: inline-size
Use MCP Tools
Use get_component to look up exact props before generating code. Use generate_snippet for multi-component compositions. Use get_theme for theme tokens. Use get_icons for icon names.
Template
import { UIProvider } from '@annondeveloper/ui-kit'
import { /* components */ } from '@annondeveloper/ui-kit'
export function MyComponent() {
return (
<UIProvider>
{/* composition here */}
</UIProvider>
)
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 37 lines · 60 tokens per session scan A 4fb15b5cec27
generate-component is a skill published in the GitHub repository annondeveloper/ui-kit (0 stars, last pushed 2mo ago), licensed MIT. It adds 60 tokens to every session and 405 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
add-provider
Add or extend an open-source OOMOL Connect provider under src/providers, including provider definition, action schemas, local executors, credential validation, examples, and generated catalog updates.
update-saasmail
Sync the local saasmail repo with the latest upstream changes from https://github.com/choyiny/saasmail. Use this skill whenever the user wants to update saasmail, pull upstream changes, sync with upstream, rebase on upstream, get the latest saasmail, or says "/update-saasmail". Handles adding the upstream remote if…
story-html-publisher
Final step of the AI Storybook pipeline. Consolidates the scenes, images, and per-scene audio into ONE self-contained HTML storybook — a swipe/tap player with every image and audio clip embedded as base64 so the single file works offline and can be shared as-is. Reads {slug}scenes.json, {slug}images.json, and…
github-code-review
Comprehensive GitHub code review with AI-powered swarm coordination.
Pair Programming
AI-assisted pair programming with multiple modes (driver/navigator/switch), real-time verification, quality monitoring, and comprehensive testing. Supports TDD, debugging, refactoring, and learning sessions. Features automatic role switching, continuous code review, security scanning, and performance optimization with…
Skill Builder
Create new Claude Code Skills with proper YAML frontmatter, progressive disclosure structure, and complete directory organization. Use when you need to build custom skills for specific workflows, generate skill templates, or understand the Claude Skills specification.