Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Generate new projects with standardized structure, tooling, and configuration for web, API, mobile, CLI, or browser extension apps.
Generate new projects with standardized structure, tooling, and configuration for web, API, mobile, CLI, or browser extension apps.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
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" Create .gitignore appropriate to the project type Set up linting config (ESLint / Ruff) Add a basic README with project name and setup instructions Add a basic test file to verify the test runner works
node_modules/ __pycache__/ .env .env.local dist/ build/ .next/ *.pyc .DS_Store *.log coverage/
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.