โ† All skills
Tencent SkillHub ยท Developer Tools

Project Scaffold

Generate new projects with standardized structure, tooling, and configuration for web, API, mobile, CLI, or browser extension apps.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Generate new projects with standardized structure, tooling, and configuration for web, API, mobile, CLI, or browser extension apps.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

project-scaffold

Scaffold new projects with best-practice structure, tooling, and configuration.

Usage

When Colt (or you) needs to start a new project, use this skill to generate the full boilerplate.

Decision Tree

Ask or infer the project type:

Web App (React / Next.js)

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

API / Backend (FastAPI)

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

Mobile App (SwiftUI)

MyApp/ โ”œโ”€โ”€ MyApp/ โ”‚ โ”œโ”€โ”€ App.swift โ”‚ โ”œโ”€โ”€ ContentView.swift โ”‚ โ”œโ”€โ”€ Models/ โ”‚ โ”œโ”€โ”€ Views/ โ”‚ โ”œโ”€โ”€ ViewModels/ โ”‚ โ””โ”€โ”€ Services/ โ”œโ”€โ”€ MyAppTests/ โ”œโ”€โ”€ MyAppUITests/ โ””โ”€โ”€ README.md Init: Use Xcode or swift package init --type executable

CLI Tool (Node / Python)

my-cli/ โ”œโ”€โ”€ src/ โ”‚ โ””โ”€โ”€ index.ts # Entry point โ”œโ”€โ”€ bin/ โ”‚ โ””โ”€โ”€ my-cli # Executable wrapper โ”œโ”€โ”€ tests/ โ”œโ”€โ”€ .gitignore โ”œโ”€โ”€ tsconfig.json โ”œโ”€โ”€ package.json โ””โ”€โ”€ README.md

Browser Extension

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

Post-Scaffold Checklist

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

.gitignore (universal base)

node_modules/ __pycache__/ .env .env.local dist/ build/ .next/ *.pyc .DS_Store *.log coverage/

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc