一键导入
bootstrap
New project scaffolding orchestrator that sets up a complete project from scratch with the right stack, structure, configuration, and initial code.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
New project scaffolding orchestrator that sets up a complete project from scratch with the right stack, structure, configuration, and initial code.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Unified design foundations — design system architecture, tokens, component specs, visual principles, creative vision, figma integration, plus brand design system loader (66 real brands via DESIGN.md). Absorbs design, design-system, design-systems, design-principles, design-router, creative-vision, figma, design-md.
Render, summarize, and present markdown documents and structured content in multiple output modes
Ultra UI skill - combines Google's DESIGN.md spec (machine-readable design tokens) with the ui-ux-pro-max knowledge base (91 styles, 161 palettes, 73 font pairings, 161 products, 104 UX guidelines, 25 chart types). Generates lint-clean DESIGN.md files, validates token references and WCAG contrast, exports Tailwind/DTCG tokens, and diffs design systems version-over-version.
Initialize UltraThink capabilities in the current project directory
Org-Bench Google-bipartite winning mechanism — the 4-section design-doc gate that every non-trivial change passes through. Use when the Director defines new work, when an Integrator reviews a lane (code/quality/devops), when the Director approves, or when a Worker is about to start coding and needs the spec. Tools live in the `design-doc` MCP server. Triggers on phrases like "design doc", "design review", "approve revision", "lane verdict", "what does this issue require", "is this approved yet".
Web scraping with anti-bot bypass (Cloudflare Turnstile etc.), stealth headless browsing, adaptive selectors, and concurrent crawls. Use when the user asks to scrape, crawl, or extract data from websites; the built-in WebFetch fails; the target has anti-bot protections; or the work needs JavaScript rendering. Prefers the registered MCP tools (mcp__scrapling__*) over raw Python so token cost stays low.
| name | bootstrap |
| description | New project scaffolding orchestrator that sets up a complete project from scratch with the right stack, structure, configuration, and initial code. |
| layer | orchestrator |
| category | orchestration |
| triggers | ["/bootstrap","bootstrap a new project","scaffold a new app","start a new project","create a new project","init project"] |
| inputs | ["Project type or description (e.g., \"Next.js SaaS app\", \"CLI tool in Rust\")","Optional tech stack preferences","Optional feature requirements","Optional deployment target"] |
| outputs | ["Complete project directory structure","Configuration files (package.json, tsconfig, eslint, etc.)","Initial source code with example components or modules","Development tooling setup (linting, formatting, testing)","Git repository initialized with first commit","README with setup instructions"] |
| linksTo | ["plan","research","scout","brainstorm","sequential-thinking","git-workflow","commit-crafter","docs-writer","mermaid"] |
| linkedFrom | ["team"] |
| preferredNextSkills | ["cook","team","kanban"] |
| fallbackSkills | ["plan","research"] |
| riskLevel | low |
| memoryReadPolicy | selective |
| memoryWritePolicy | always |
| sideEffects | ["Creates new directory structure","Creates configuration files","Creates initial source files","Initializes git repository","May install dependencies (npm install, cargo build, etc.)","Creates initial git commit"] |
Bootstrap is the new project scaffolding orchestrator. It takes a project idea or specification and produces a complete, ready-to-develop project with the right directory structure, configuration, tooling, and initial code. Bootstrap doesn't just run create-next-app -- it makes informed decisions about project architecture, sets up quality tooling, and creates a foundation that follows best practices.
Bootstrap is opinionated but configurable. It will suggest a stack and structure based on the project type, but defers to user preferences when specified. It always errs on the side of a clean, maintainable foundation over a feature-packed but messy one.
brainstorm (if underspecified) -- If the user gives a vague brief ("build me a SaaS"), brainstorm what the stack and structure should look like.research -- Look up current best practices for the chosen stack. Check for latest versions, recommended configurations, and known pitfalls via Context7.plan -- Create a scaffolding plan:
docs-writer -- Generate a README with:
git-workflow -- Initialize git repository.commit-crafter -- Create the initial commit with a meaningful message.project/
src/
app/
layout.tsx
page.tsx
globals.css
components/
ui/
lib/
utils.ts
hooks/
types/
public/
tests/
.env.example
next.config.ts
tailwind.config.ts
tsconfig.json
package.json
project/
src/
routes/
middleware/
services/
models/
utils/
config/
index.ts
tests/
unit/
integration/
.env.example
tsconfig.json
package.json
project/
src/
commands/
utils/
config/
index.ts
tests/
bin/
package.json
tsconfig.json
project/
src/
package_name/
__init__.py
core.py
utils.py
tests/
test_core.py
pyproject.toml
README.md
| Condition | Action |
|---|---|
| User specifies stack | Use specified stack, validate with research |
| User says "whatever is best" | Use brainstorm + research to recommend |
| Project is a monorepo | Set up workspace configuration (turborepo, nx, etc.) |
| Deployment target specified | Configure build output and CI for that target |
| User wants a database | Include ORM/driver setup and migration tooling |
| User wants auth | Include auth library setup and example middleware |
Use Bootstrap at the very beginning of a new project. It sets the foundation that all subsequent development builds on.
Best for:
Not ideal for:
cook)migrate)refactor)User: /bootstrap Create a Next.js SaaS app with Supabase auth,
Stripe billing, and Tailwind CSS
Bootstrap workflow:
1. research -> Latest Next.js App Router patterns, Supabase client setup,
Stripe integration best practices
2. plan -> Directory structure, dependencies, config files
3. Scaffold -> Next.js app with app router, Tailwind, TypeScript
4. Initial code -> Auth middleware, Stripe webhook handler,
example dashboard page, pricing component
5. Tooling -> ESLint, Prettier, Vitest, GitHub Actions
6. docs-writer -> README with setup instructions for Supabase + Stripe
7. git-workflow + commit-crafter -> Init repo, first commit
User: /bootstrap Scaffold a Node.js CLI tool for managing Docker containers
Bootstrap workflow:
1. research -> Commander.js vs yargs vs clipanion, best CLI patterns
2. plan -> CLI structure with commands, config, output formatting
3. Scaffold -> TypeScript project with bin entry point
4. Initial code -> Help command, version command, example container-list command
5. Tooling -> ESLint, Vitest, build to CJS for Node
6. docs-writer -> README with installation and usage
7. git-workflow + commit-crafter -> Init repo, first commit
User: /bootstrap Set up a Turborepo monorepo with a Next.js frontend,
Express API, and shared types package
Bootstrap workflow:
1. research -> Turborepo workspace config, shared package patterns
2. plan -> Root config, three packages, shared dependencies
3. Scaffold -> Turborepo root, apps/web, apps/api, packages/shared
4. Initial code -> Example page calling API, shared type definitions,
API route using shared types
5. Tooling -> Root ESLint, per-package tsconfig, Turborepo pipelines
6. docs-writer -> Root README + per-package READMEs
7. git-workflow + commit-crafter -> Init repo, first commit
latest or *.