Claude-skills thesys-generative-ui
install
source · Clone the upstream repo
git clone https://github.com/secondsky/claude-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/secondsky/claude-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/thesys-generative-ui/skills/thesys-generative-ui" ~/.claude/skills/secondsky-claude-skills-thesys-generative-ui && rm -rf "$T"
manifest:
plugins/thesys-generative-ui/skills/thesys-generative-ui/SKILL.mdsource content
Thesys Generative UI
Last Updated: 2025-11-10
Quick Start
import { generateUI } from 'thesys'; const ui = await generateUI({ prompt: 'Create a user profile card with avatar, name, and email', schema: { type: 'component', props: ['name', 'email', 'avatar'] } }); export default function Profile() { return <div>{ui}</div>; }
Core Features
- Natural Language: Describe UI in plain English
- Schema-Driven: Type-safe component generation
- React Components: Generate production-ready components
- AI-Powered: Uses LLMs for intelligent design
Example
const form = await generateUI({ prompt: 'Create a contact form with name, email, and message fields', theme: 'modern' });
Resources
Core Documentation
- What is TheSys C1, success metrics, getting startedreferences/what-is-thesys.md
- When to use, 12 errors prevented, all templates catalogreferences/use-cases-examples.md
- Complete tool calling guide with Zod schemasreferences/tool-calling.md
- Complete setup for Vite, Next.js, Cloudflare Workersreferences/integration-guide.md
Additional References
- Complete component prop referencereferences/component-api.md
- OpenAI, Anthropic, Cloudflare Workers AI setupreferences/ai-provider-setup.md
- Tool calling patternsreferences/tool-calling-guide.md
- Theme system deep divereferences/theme-customization.md
- Expanded error catalogreferences/common-errors.md
Templates (15+ files)
- Vite + React:
,basic-chat.tsx
,custom-component.tsx
,tool-calling.tsxtheme-dark-mode.tsx - Next.js:
,app/page.tsx
,app/api/chat/route.tstool-calling-route.ts - Cloudflare Workers:
,worker-backend.tsfrontend-setup.tsx - Utilities:
,theme-config.ts
,tool-schemas.tsstreaming-utils.ts
Official Docs: https://docs.thesys.dev | Playground: https://console.thesys.dev/playground