用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/trungdo9/ClauKit --skill bootstrap命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | bootstrap |
| description | Initialize projects from scratch with modular scaffolds (Next.js, Vite, Svelte, Python, etc.) |
| category | Build & Deploy |
| status | active |
Rapidly scaffold complete, production-ready project structures across multiple tech stacks using official and community tools—Next.js (full-stack React), Vite (frontend bundler), degit (git-based templates), and language-specific generators (Python Cookiecutter, Ruby Rails)—with minimal manual setup.
Do NOT use when: Migrating existing projects (bootstrap tools create new projects), setting up single-file utilities, or when custom architecture incompatible with scaffolding templates.
Select scaffold tool based on stack:
create-next-app → Full-stack React with App Router, TypeScript, Tailwind, ESLintnpm create vite@latest → Frontend-only (React, Vue, Svelte, Lit, Solid, etc.)degit user/repo → Clone curated templates without Git historycookiecutter template → Python project generation (Django, FastAPI, etc.)rails new → Ruby on Rails full-stack appsRun generator with options:
--typescript, --tailwind, --eslint)Review generated structure:
.gitignorenpm run dev to confirm dev server worksCustomize for project needs:
Official Next.js scaffolding tool. Prompts for TypeScript, Tailwind CSS, ESLint, App Router, src/ directory, and custom import aliases. Installs Next.js 16+, React 19, with sensible defaults. Includes AGENTS.md guidance for AI coding agents.
Lightweight, frontend-focused scaffolding supporting 18+ templates (React, Vue, Svelte, Solid, Lit, Preact, etc.). TypeScript variants available. No server-side rendering; ideal for SPAs and static site generation frameworks.
Fast Git repository copying without history. Clones specific branches, tags, commits via syntax like degit user/repo#v1.0.0 my-project. Supports degit.json for post-clone actions (remove files, add files). Local caching for repeated installs.
Template engine for Python projects. Prompt-based variable substitution during generation. Popular for Django, FastAPI, ML projects. Templates live in GitHub; cookiecutter gh:user/repo generates projects.
Rails (rails new), Django (django-admin startproject), Cargo (cargo new, Rust), Go (go mod init). Each language's ecosystem provides official scaffolding respecting language conventions.
Next.js with defaults:
npx create-next-app@latest my-app --yes
cd my-app && npm run dev
Next.js with custom options:
npx create-next-app@latest my-app \
--typescript \
--tailwind \
--eslint \
--src-dir \
--import-alias '@/*'
Vite React:
npm create vite@latest my-react-app -- --template react-ts
cd my-react-app && npm install && npm run dev
degit from custom template:
degit gh:sveltejs/template my-svelte-app
cd my-svelte-app && npm install && npm run dev
Python FastAPI via Cookiecutter:
cookiecutter gh:tiangolo/fastapi-project-template
.gitignore; sensitive files (.env, node_modules) end up in repopackage.json metadata; version mismatches cause confusion in monoreposShared workflow for /ck:bootstrap family commands (/ck:bootstrap, /ck:bootstrap auto, /ck:bootstrap fast). Each command is a variant that selects which phases to include and how to interact with the user.
Elite software-engineering expert — system architecture + technical decision-making. Operate by YAGNI / KISS / DRY trinity.
Phase 0 — Git Init
Check Git is initialized; if not, use git-manager subagent to init (main branch).
Phase 1 — Research
Multiple researcher subagents in parallel → explore request, validate ideas, identify challenges, find best solutions. Reports ≤150 lines + citations.
Phase 2 — Tech Stack
planner + researcher subagents in parallel → find best-fit stack. Write to ./docs.
Phase 3 — Planning
planner subagent → detailed implementation plan following the planning skill's progressive disclosure structure (plans/<YYMMDD-HHmm>-<slug>/plan.md + per-phase files).
Phase 4 — Wireframe & Design
ui-ux-designer + researcher subagents in parallel → design plan + wireframes. Outputs:
./docs/design-guidelines.md./docs/wireframe/*.htmlai-multimodal skill if not providedchrome-devtools skill → ./docs/wireframes/Phase 5 — Implementation
Main agent implements plan step by step. ui-ux-designer for frontend. ai-multimodal for asset generation/analysis. ImageMagick for image edits. Type-check + compile.
Phase 6 — Testing
Real tests, no fake data to pass. tester subagent runs tests. Failures → debugger subagent for root cause → main agent fixes → repeat until pass.
Phase 7 — Code Review
code-reviewer subagent → critical issues → main agent improves → tester re-runs → repeat until pass.
Phase 8 — Documentation
docs-manager subagent updates canonical doc set (see docs-manager agent for the list). project-manager subagent creates ./docs/project-roadmap.md.
Phase 9 — Onboarding Step-by-step user configuration. Ask one question at a time, wait for answer.
Phase 10 — Final Report
Summary + getting-started guide + next steps. Ask user about commit/push → git-manager subagent.
| Variant | User interaction | Approval gates | Speed tier |
|---|---|---|---|
/ck:bootstrap | High — ask questions 1-by-1, wait for tech-stack/plan/design approvals | Multiple (tech stack · plan · design · final commit) | Ultrathink |
/ck:bootstrap auto | Medium — minimal questions, design approval only | Design + final commit | Ultrathink |
/ck:bootstrap fast | Low — parallel research+planning, no design approval | Final commit only (no push) | Think hard |
tanstack, react-specialist, deploy, project-organization, etc.