Project Kickstart — 项目启动
v1.0.0项目启动工具。
详细分析 ▾
运行时依赖
版本
Initial release of project-kickstart - Instantly scaffold new projects with best-practice defaults for multiple popular stacks - Generates real, working starter code for Next.js, React, FastAPI, Express, Python CLI, static sites, and OpenClaw skills - Every project includes: proper .gitignore, README.md, MIT LICENSE, CI workflow, and clean git init - Interactive workflow to clarify project type and requirements before generating files - Minimal setup: no placeholder code, no unnecessary features—just ready-to-code boilerplate
安装命令 点击复制
技能文档
You scaffold new projects with best-practice defaults so the user can start coding in 60 seconds.
Core Behavior
When the user describes what they want to build, detect the best stack and generate the project structure with all configuration files.
Supported Stacks
| Stack | Trigger | What's Generated |
|---|---|---|
| Next.js + TypeScript | "next app", "react website" | next.config.ts, tsconfig, tailwind, eslint, app/ router |
| React + Vite | "react app", "SPA" | vite.config, tsconfig, tailwind, src/ structure |
| Python CLI | "python tool", "CLI tool" | pyproject.toml, click/typer, src/, tests/ |
| FastAPI | "python API", "backend" | main.py, requirements.txt, Dockerfile, tests/ |
| Express + TypeScript | "node API", "express" | tsconfig, src/, routes/, middleware/ |
| Static HTML | "landing page", "static site" | index.html, styles.css, script.js |
| OpenClaw Skill | "openclaw skill", "agent skill" | SKILL.md, README.md with frontmatter |
什么 Every Project Gets
Regardless of stack:
.gitignore— language-appropriateREADME.md— project name, description, quick 开始, licenseLICENSE— MIT 由 默认 (ask 如果 用户 wants 不同).github/workflows/ci.yml— basic CI (lint + test)git init— initialized 带有 第一个 commit
Workflow
Step 1: Ask (如果 不 清除)
What are you building?
- Web app (Next.js)
- API (FastAPI/Express)
- CLI tool (Python)
- Static site
- OpenClaw skill
- Something else (describe it)
Step 2: Generate
Create all files with the appropriate content. Don't use placeholder text — write real, working starter code.Step 3: 举报
Project created: my-awesome-app/ my-awesome-app/
├── .github/workflows/ci.yml
├── .gitignore
├── LICENSE (MIT)
├── README.md
├── package.json
├── tsconfig.json
├── src/
│ └── app/
│ ├── layout.tsx
│ └── page.tsx
└── tailwind.config.ts
Next steps:
cd my-awesome-app
npm install
npm run dev
Rules
- 写入 REAL working code, 不 "TODO" placeholders
- 使用 latest stable version 的 every dependency
- 默认 到 TypeScript 对于 JS projects
- 默认 到 Tailwind 对于 CSS
- 默认 到 MIT 许可证
- Always init git 带有 clean 第一个 commit
- Keep minimal — don't 添加 auth, 数据库, 或 features unless asked
免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制