From project-scaffold
Scaffolds a production-ready project with configurable type (api, web, cli, lib, fullstack) and tech stack (TypeScript, Python, Go, Rust). Includes CI/CD, Docker, git init, and pre-commit hooks.
How this command is triggered — by the user, by Claude, or both
Slash command
/project-scaffold:scaffoldThe summary Claude sees in its command listing — used to decide when to auto-load this command
Scaffold a new project with a complete, production-ready structure. ## Steps 1. Determine the project type from the argument: - `api` - REST/GraphQL API backend. - `web` - Frontend web application. - `cli` - Command-line tool. - `lib` - Reusable library/package. - `fullstack` - Full-stack application. 2. Select the tech stack based on preferences or defaults: - TypeScript: Express/Fastify, React/Next.js, Vitest. - Python: FastAPI/Django, pytest. - Go: Chi/Gin, standard testing. - Rust: Actix/Axum, cargo test. 3. Generate the project structure: - `src/` with e...
Scaffold a new project with a complete, production-ready structure.
api - REST/GraphQL API backend.web - Frontend web application.cli - Command-line tool.lib - Reusable library/package.fullstack - Full-stack application.src/ with entry point and initial modules.tests/ with test configuration and example tests.Dockerfile and .dockerignore.README.md with setup instructions..env.example with documented variables..gitignore with comprehensive patterns.Project scaffolded: <name>
Type: <project-type>
Stack: <tech-stack>
Structure:
src/ - Application source
tests/ - Test suite
.github/ - CI/CD workflows
docker/ - Container configuration
Commands:
dev: <command>
test: <command>
build: <command>
6plugins reuse this command
First indexed Mar 30, 2026
npx claudepluginhub avelikiy/awesome-claude-code-toolkit --plugin project-scaffold/scaffoldScaffolds a production-ready project with configurable type (api, web, cli, lib, fullstack) and tech stack (TypeScript, Python, Go, Rust). Includes CI/CD, Docker, git init, and pre-commit hooks.
/init-projectScaffolds a new project with essential structure, framework-specific configuration, testing, CI/CD, and documentation. Accepts project name and type as arguments.
/project-scaffoldGenerate complete fullstack project structure with all boilerplate
/scaffoldScaffolds production-ready projects from templates with Harness CI/CD integration, environment configuration (Docker, Kubernetes, Helm), git init, and post-generation setup.
/initScaffolds a full project from zero to a pushed GitHub repo: creates directory, generates framework scaffold, initializes git, pushes to GitHub, and sets up Makefile/CI tooling.
/newCreates production-ready full-stack project scaffold with FastAPI backend, React/Vite frontend, Terraform/Ansible/K8s infrastructure, Docker, and GitHub Actions CI/CD. Supports --stack, --db, --auth, --cloud, --ci options.