init-react-frontend
Init React Frontend
Scaffolds a production-ready React frontend with a fixed default stack. Uses the official Vite scaffold in Rolldown form, defaulting to React + Compiler + TypeScript; generates project structure, configs, and a project-specific AGENTS.md.
Initialization: Vite scaffold + Rolldown
Use the official Vite scaffold to create the project in Rolldown form, defaulting to React + Compiler + TypeScript:
- Recommended: Run
npm create vite@latest(orpnpm create vite,yarn create vite) in the target directory. If the current create-vite supports choosing the bundler, select Rolldown, template React, language TypeScript; if it offers a React Compiler option, enable it. - If Rolldown is not offered: Create with
npm create vite@latest <project-name> -- --template react-ts, then inpackage.jsondevDependencies set"vite": "npm:rolldown-vite@<resolved-latest-version>", and enable React Compiler in the Vite config (see tech stack and file checklist below).
When generating or filling in files, ensure the build uses Rolldown (rolldown-vite) and React Compiler is enabled by default.
Default tech stack (when not specified)
More from hillstone-networks/agent-skills
project-initializer
Scaffolds new projects with README.md, AGENTS.md, and CI/CD (GitLab CI, GitHub Actions). Handles project type (generic / Flask backend / React frontend / Taro miniapp), tech stack, coding standards, quality level, and SDD (OpenSpec, SpecKit, GSD). All init flows (Flask, React, Taro) and conventions (backend-python-cicd, frontend-codegen, flask-backend-codegen, QA/testing, agent-roles/subagents) are built-in; no separate skills. Docs default to Chinese. Use when creating a project, initializing a repo, or setting up CI/CD/SDD.
13init-taro-miniapp
Initializes a Taro mini-program with npx @tarojs/cli init <projectName>; after init requires npm install, then creates directories under src, configures dev proxy for API, and may add/update README and AGENTS.md. No other file or config changes. Use when scaffolding a Taro/mini-program project.
8init-flask-backend
按分层架构与规范搭建 Flask API 后端项目,包含应用工厂、Blueprint/Flask-RESTful 路由、Service/Model 分层、权限与统一响应。在用户要创建或生成 Flask 后端、REST API 项目使用
8