Webapp building
Tools for building modern React webapps with TypeScript, Tailwind CSS and shadcn/ui. Best suited for applications with complex UI components and state management. Supports optional templates for specialized requirement.From its SKILL.md
npx -y skills add serejaris/kimi-skills --skill webapp-buildingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.3 KB, 545 tokens by cl100k_base, as published. Nobody here has run it
WebApp Building
Stack: React + TypeScript + Vite + Tailwind CSS + shadcn/ui
Workflow
scripts/init-webapp.sh <website-title> [template-name]— Initialize project in /mnt/agents/output/app- Without template: creates base project with 40+ shadcn/ui components
- With template: applies specialized template and outputs template-specific config info
- Edit source code in
src/(orsrc/config.tsfor templates) - Build the React app
Quick Start
1. Initialize
# init project in /mnt/agents/output/app with website title
bash scripts/init-webapp.sh <website-title> [template-name]
cd /mnt/agents/output/app
AI Agent Notes:
- The project path is /mnt/agents/output/app
- Non-interactive execution with auto-confirm
- If template-name is provided, the script will output template-specific information (config options, build instructions, etc.)
This creates a fully configured project with:
- ✅ React + TypeScript (via Vite)
- ✅ Tailwind CSS 3.4.19 with shadcn/ui theming system
- ✅ Path aliases (
@/) configured - ✅ 40+ shadcn/ui components pre-installed
- ✅ All Radix UI dependencies included
- ✅ Production build optimization with Vite
- ✅ Node 20+ compatibility (auto-detects and pins Vite version)
2. Develop
Edit generated files in src/: page sections go in src/sections/, custom React hooks in src/hooks/, and TypeScript definitions in src/types/.
For templates: edit src/config.ts to customize content. Do not modify component files — all content configuration is in config.ts.
3. Build
# within project:
cd /mnt/agents/output/app && npm run build 2>&1
Output (dist/):
index.html— Entry pointassets/index-[hash].js— Bundled JSassets/index-[hash].css— Bundled CSS- Optimized images, fonts, other assets
Optimizations: Tree-shaking, code splitting, asset compression, minification, cache-busting hashes.
Debugging
- Fix source files
npm run build- Test
dist/
Reference
What ships with it: 196 files
4637.4 KB alongside SKILL.md, 14 of them executable
scripts/
- init-webapp.shruns7.4 KB
- .prepare-template.shruns703 B
- template/components.json461 B
- template/eslint.config.jsruns616 B
- template/index.html291 B
- template/package.json2.5 KB
- template/postcss.config.jsruns80 B
- template/README.md2.5 KB
- template/src/App.css606 B
- template/src/App.tsx198 B
- template/src/components/ui/accordion.tsx2.0 KB
- template/src/components/ui/alert-dialog.tsx3.8 KB
- template/src/components/ui/alert.tsx1.6 KB
- template/src/components/ui/aspect-ratio.tsx280 B
- template/src/components/ui/avatar.tsx1.1 KB
- template/src/components/ui/badge.tsx1.6 KB
- template/src/components/ui/breadcrumb.tsx2.3 KB
- template/src/components/ui/button-group.tsx2.2 KB
- template/src/components/ui/button.tsx2.2 KB
- template/src/components/ui/calendar.tsx7.6 KB
- template/src/components/ui/card.tsx1.9 KB
- template/src/components/ui/carousel.tsx5.4 KB
- template/src/components/ui/chart.tsx9.8 KB
- template/src/components/ui/checkbox.tsx1.2 KB
- template/src/components/ui/collapsible.tsx786 B
- template/src/components/ui/command.tsx4.7 KB
- template/src/components/ui/context-menu.tsx8.1 KB
- template/src/components/ui/dialog.tsx3.9 KB
- template/src/components/ui/drawer.tsx4.2 KB
- template/src/components/ui/dropdown-menu.tsx8.2 KB
- template/src/components/ui/empty.tsx2.3 KB
- template/src/components/ui/field.tsx6.0 KB
- template/src/components/ui/form.tsx3.7 KB
- template/src/components/ui/hover-card.tsx1.5 KB
- template/src/components/ui/input-group.tsx4.9 KB
- template/src/components/ui/input-otp.tsx2.2 KB
- template/src/components/ui/input.tsx962 B
- template/src/components/ui/item.tsx4.4 KB
- template/src/components/ui/kbd.tsx862 B
- .gitignore404 B
156 more files not listed here. See all 196 in the repository.