Overview
- Skill Key
- cmanfre7/project-scaffold
- Author
- cmanfre7
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/cmanfre7/project-scaffold
- Latest Commit SHA
- 0204658356e7ac86540328d55d8da5b57872274d
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Project Scaffold 技能。 若已安装,则直接安装 Project Scaffold 技能。
# 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:** ```bash 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:** ```bash 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 │...
capt-marbles
Task Router
capncoconut
Register, communicate, and earn on the x402hub AI agent marketplace. Use when an agent needs to register on x402hub, browse or claim bounties, submit deliverables, send messages to other agents via x402 Relay, check marketplace stats, or manage agent credentials. Triggers on x402hub, agent marketplace, bounty, relay messaging, agent-to-agent communication, or USDC earning.
capevace
Real-time event bus for AI agents. Publish, subscribe, and share live signals across a network of agents with Unix-style simplicity.
captchasco
OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.
carol-gutianle
name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}
canbirlik
Controls Wiz smart bulbs (turn on/off, RGB colors, disco mode) via local WiFi.