Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问clear审计通过

project-scaffold项目脚手架

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

2,661

周安装

112

GitHub Stars

21

下载量

932
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:project-scaffold(项目脚手架)
来源仓库:https://github.com/shipshitdev/library
仓库路径:skills/project-scaffold
安装命令:
npx skills add https://github.com/shipshitdev/library --skill project-scaffold
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/shipshitdev/library --skill project-scaffold

简介

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。

  • 它支持前端页面、组件、样式和交互逻辑的生成与审查。
  • 使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • project-scaffold 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Project Scaffold

Unified project scaffolder for creating new projects or adding components to existing ones.

Purpose

This skill provides a unified way to scaffold:

  • .agents/ folder structure for AI-first development
  • Backend (NestJS) with MongoDB, Swagger, and best practices
  • Frontend (NextJS) with Tailwind and @agenticindiedev/ui
  • Mobile (Expo) with React Native and Expo Router
  • Browser Extension (Plasmo) with React and Tailwind

When to Use

Use this skill when:

  • Starting a new project from scratch
  • Adding components to an existing project
  • Setting up a monorepo or separate repositories
  • Need a unified scaffolding experience across Claude, Codex, and Cursor

Usage

Interactive Mode (Recommended)

python3 scripts/scaffold.py

The script will ask you:

  1. Project name
  2. Project root path
  3. Repository structure (monorepo vs separate)
  4. Components to scaffold (all optional):

- .agent folder - Backend (NestJS) - Frontend (NextJS) - Mobile (Expo) - Extension (Plasmo)

  1. Organization name (for monorepo packages)

From Claude

When user requests scaffolding, activate this skill and run:

python3 scripts/scaffold.py

The script handles all interactive prompts.

Features

Flexible Structure

  • Monorepo: All components in one repository with workspace configuration
  • Separate repos: Each component in its own directory/repository
  • Existing projects: Can add components to existing projects

Component Options

All components are optional - scaffold only what you need:

  • .agents/ folder with full AI documentation structure
  • Backend with NestJS, MongoDB, Swagger
  • Frontend with NextJS 15, Tailwind, @agenticindiedev/ui
  • Mobile with Expo Router, React Native
  • Extension with Plasmo, React, Tailwind

Cross-Platform

Works from:

  • Claude Code
  • Codex
  • Cursor

Generated Structure

Monorepo Example

myproject/
├── .agents/                  # AI documentation
├── package.json             # Workspace root
├── api/                     # NestJS backend
│   ├── .agents/
│   ├── apps/api/src/
│   └── package.json
├── frontend/                # NextJS apps
│   ├── .agents/
│   ├── apps/dashboard/
│   └── package.json
├── mobile/                  # Expo app
│   ├── .agents/
│   ├── app/
│   └── package.json
└── extension/               # Plasmo extension
    ├── .agents/
    ├── src/
    └── package.json

Separate Repos Example

myproject-api/               # Backend only
├── .agents/
├── apps/api/src/
└── package.json

myproject-frontend/          # Frontend only
├── .agents/
├── apps/dashboard/
└── package.json

Key Patterns Included

Backend (NestJS)

  • Soft deletes: isDeleted: boolean
  • Multi-tenancy: Always filter by organization
  • Collection pattern: controllers → services → schemas
  • Swagger documentation
  • Dockerfile included

Frontend (NextJS)

  • Path aliases: @components/, @services/, @hooks/
  • Tailwind CSS with @agenticindiedev/ui
  • TypeScript strict mode
  • App Router structure

Mobile (Expo)

  • Expo Router for navigation
  • TypeScript configuration
  • Platform-specific configurations

Extension (Plasmo)

  • React + TypeScript
  • Tailwind CSS with @agenticindiedev/ui
  • Manifest configuration
  • Popup component

Next Steps After Scaffolding

  1. Install dependencies: cd [project-root] bun install
  2. Start development: # Monorepo bun run dev:api bun run dev:frontend # Separate repos cd api && bun run start:dev cd frontend && bun run dev
  3. Customize:

- Update .agents/SYSTEM/RULES.md with your coding standards - Configure environment variables - Add your first features

Integration with Existing Skills

This skill integrates with:

  • agent-folder-init: Uses its script for.agent folder scaffolding
  • fullstack-workspace-init: Reuses component templates and patterns

Troubleshooting

Script not found: Ensure the skill is installed in ``

Permission denied: Make script executable: chmod +x scripts/scaffold.py

Python not found: Ensure Python 3 is installed and in PATH

Agent folder not created: The script tries to use agent-folder-init skill. If not found, it will skip.agent folder creation.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.43%
按下载量换算265

Antigravity

21.44%
按下载量换算200

Gemini CLI

19.61%
按下载量换算183

OpenCode

12.15%
按下载量换算113

Codex

7.62%
按下载量换算71

Cursor

3.57%
按下载量换算33

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills