Project Scaffold
Generate new projects with standardized structure, tooling, and configuration for web, API, mobile, CLI, or browser extension apps.
Popular
New
Join 2,233+ developers using this skill
skill
Generate new projects with standardized structure, tooling, and configuration for web, API, mobile, CLI, or browser extension apps.
Real data. Real impact.
Growing
Developers
Per week
Open source
Skills give you superpowers. Install in 30 seconds.
Scaffold new projects with best-practice structure, tooling, and configuration.
When Colt (or you) needs to start a new project, use this skill to generate the full boilerplate.
Ask or infer the project type:
my-app/ ├── src/ │ ├── app/ # Next.js app router │ ├── components/ # Reusable UI components │ ├── lib/ # Utilities, helpers, API clients │ ├── styles/ # Global styles, Tailwind config │ └── types/ # TypeScript type definitions ├── public/ # Static assets ├── tests/ # Test files ├── .gitignore ├── .eslintrc.json ├── tailwind.config.ts ├── tsconfig.json ├── package.json └── README.md
Init commands:
npx create-next-app@latest my-app --typescript --tailwind --eslint --app --src-dir cd my-app && npm install
my-api/ ├── app/ │ ├── __init__.py │ ├── main.py # FastAPI app entry │ ├── routers/ # Route modules │ ├── models/ # Pydantic models / DB models │ ├── services/ # Business logic │ └── config.py # Settings / env vars ├── tests/ ├── .gitignore ├── pyproject.toml ├── requirements.txt └── README.md
Init commands:
mkdir my-api && cd my-api uv init && uv pip install fastapi uvicorn
MyApp/ ├── MyApp/ │ ├── App.swift │ ├── ContentView.swift │ ├── Models/ │ ├── Views/ │ ├── ViewModels/ │ └── Services/ ├── MyAppTests/ ├── MyAppUITests/ └── README.md
Init: Use Xcode or
swift package init --type executable
my-cli/ ├── src/ │ └── index.ts # Entry point ├── bin/ │ └── my-cli # Executable wrapper ├── tests/ ├── .gitignore ├── tsconfig.json ├── package.json └── README.md
my-extension/ ├── src/ │ ├── background.ts │ ├── content.ts │ ├── popup/ │ │ ├── popup.html │ │ ├── popup.ts │ │ └── popup.css │ └── options/ ├── icons/ ├── manifest.json ├── .gitignore ├── tsconfig.json ├── package.json └── README.md
After generating structure:
git init && git add -A && git commit -m "Initial scaffold".gitignore appropriate to the project typenode_modules/ __pycache__/ .env .env.local dist/ build/ .next/ *.pyc .DS_Store *.log coverage/
No automatic installation available. Please visit the source repository for installation instructions.
View Installation Instructions1,500+ AI skills, agents & workflows. Install in 30 seconds. Part of the Torly.ai family.
© 2026 Torly.ai. All rights reserved.