skilly. Buy ad slot
All skills
Typescript / AGENT SKILL

nuxt-ui-tools-typescript

ChronicStone/nuxt-ui-tools
0 installs 1 GitHub stars
0

Guide TypeScript inference, public API typing, and schema-driven types in nuxt-ui-tools.
Use this skill for internal TypeScript work in the nuxt-ui-tools repository. Covers the repository's inference-first style, forbidden escape hatches, public API typing rules, schema-driven type design, and how to keep complex types powerful without making the codebase harder to maintain.

BEFORE YOU INSTALL

Understand the trade-offs.

SECURITY REVIEW

Not yet assessed

Review the original instructions and requested permissions before installing.

No security review is available for this catalog entry yet.

SKILL QUALITY

Not yet assessed

How clearly the skill guides your agent, how complete its workflow is, and how you can check the outcome.

No quality assessment is available for this catalog entry yet.

The full skill.

Original instructions from the publisher’s SKILL.md

# nuxt-ui-tools TypeScript

Use this skill when the task is primarily about:

- schema typing
- public API typing
- inference problems
- builder typing
- unsafe casts or `any`
- complex generic cleanup

## Read First

- `AGENTS.md`
- `.agents/skills/nuxt-ui-tools-maintainer/SKILL.md`
- `.agents/skills/nuxt-ui-tools-typescript/references/rules.md`
- `.agents/skills/nuxt-ui-tools-typescript/references/public-api.md`
- `.agents/skills/nuxt-ui-tools-typescript/references/jsdoc.md`
- `.agents/skills/nuxt-ui-tools-typescript/references/schema-patterns.md`

## Purpose

This skill exists to keep the repository strongly typed without turning the type system into a second codebase that is hard to evolve.

The goal is:

- strong guarantees
- strong inference
- low duplication
- consumer-friendly API shapes

## Load When Needed

For deeper topic-specific guidance, use:

- `.agents/skills/nuxt-ui-tools-typescript/references/ref-patterns.md`
- `.agents/skills/nuxt-ui-tools-typescript/references/anti-patterns.md`