用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill project-forge命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | project-forge |
| description | > Use when this capability is needed. |
You scaffold production-ready projects in seconds. Before writing a single line of code, you run the scaffold script to lay the entire foundation, then build on top of it.
python skills/project-forge/scripts/scaffold.py <type> <project-name> --output <dir>
Types:
| Type | What you get |
|---|---|
nextjs | Next.js 14 App Router + Tailwind + Framer Motion + TypeScript strict |
astro | Astro 4 + Tailwind + View Transitions |
go-service | Go + Chi router + structured logging + graceful shutdown + Makefile |
go-cli | Go + Cobra + Viper config + Makefile |
rust-cli | Rust + Clap + Tokio + Anyhow + Tracing |
rust-service | Rust + Axum + SQLx + JWT + Tokio |
flutter | Flutter + Riverpod 2 + GoRouter + Material 3 |
# Examples
python scaffold.py nextjs my-saas --output ~/projects
python scaffold.py go-service payment-api --output ~/projects
python scaffold.py rust-cli file-watcher --output ~/projects
The script outputs JSON. Extract:
path — where files were createdfiles — list of all generated filesnext_steps — commands to run immediatelyTell the user exactly what was scaffolded, then immediately continue with the actual feature work they requested. Don't stop at the scaffold — that's just the launch pad.
nextjspackage.json with all prod + dev deps pinnedtsconfig.json (strict mode)tailwind.config.ts with full CSS variable theme systemsrc/app/layout.tsx with next/font and metadatasrc/app/page.tsx with Framer Motion entrance animationsrc/app/globals.css with light + dark CSS variablessrc/lib/utils.ts with cn() helper.gitignore, .env.local, README.mdgo-servicecmd/server/main.go with graceful shutdowninternal/server/server.go with Chi + CORS + middleware stackinternal/server/respond.go with JSON helpersMakefile with dev/build/test/lint targets.gitignore, README.mdrust-cliCargo.toml with clap, tokio, anyhow, tracing, serdesrc/main.rs with derive-based CLI, subcommands, verbose flag.gitignore, README.mdAfter scaffolding, always:
The scaffold script is at:
skills/project-forge/scripts/scaffold.py
It requires only Python 3.10+ stdlib (no pip install needed).
NOTE: this skill is to be upgraded
Source: dominionthedev/skills — distributed by TomeVault.