AI Support
Estimated reading time: 2 minutesKita Html exposes multiple AI-friendly entry points so coding agents can understand the runtime without falling back to React assumptions. Use the installable skill when you want behavior guidance inside an agent, then use the published docs formats to provide focused or broad reference material.
Agent skill
The kita-html skill is designed for coding agents that support installable skills. It
teaches the core runtime model, XSS rules, framework adapters, async components, and
Suspense streaming so the agent stops treating every .tsx file as React.
Install it with:
After installation, prompt the agent normally. Useful examples:
Documentation formats
Kita Html publishes the docs in three useful formats.
llms.txtis the lightweight index. Use it when AI should pick the right page first.llms-full.txtis the full concatenated documentation dump. Use it when AI needs broad Kita Html context in a single fetch.- Every page also has a raw Markdown version, such as Getting Started.md or Safe Attribute.md.
Choose the smallest format that matches the task. llms.txt is usually best for
discovery. Raw Markdown is usually best for one topic. llms-full.txt is best when the
agent needs a full view of the framework.
Project instructions
If your editor or coding agent supports project instruction files, point it at Kita Html before it writes JSX.
If your tool also supports a file like CLAUDE.md, reference the same instructions there.
The important part is that the agent sees Kita-specific rules before it starts generating
TSX.
What To Share With AI
Share the narrowest document that answers the task.
- For setup issues, share Getting Started.md.
- For escaping questions, share Safe Attribute.md or Safety Rules.md.
- For streaming and async behavior, share Using Suspense.md.
- For framework integration, share the matching Fastify, Express, or Elysia guide.
- For broader assistance, start with
llms.txtand move tollms-full.txtonly when the task needs wider context.