Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计提醒

fullstack-project-creator全栈项目创建者

Agent Skill

fullstack-project-creator 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,608

周安装

442

GitHub Stars

公开资料未说明

下载量

3,536
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:fullstack-project-creator(全栈项目创建者)
来源仓库:https://github.com/superchao9/fullstack-project-creator
安装命令:
openclaw skills install fullstack-project-creator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install fullstack-project-creator

简介

创建标准化的 Java Spring Boot + Vue3 全栈项目结构。

  • 用于辅助前端页面、组件、样式和交互逻辑开发。
  • 适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • fullstack-project-creator 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
fullstack-project-creator
description
Create standardized Java Spring Boot + Vue3 full-stack project structure
homepage
https://github.com/superchao9
metadata
{"clawdbot":{"emoji":"🚀","requires":{"bins":[]}}}

Fullstack Project Creator

Create standardized Java Spring Boot + Vue3 full-stack project structure for users.

Author: @superchao9 Version: 1.0.0 License: MIT

Use Cases

Use this Skill when users need to create new projects or features, to generate standardized project structure and initial files.

Trigger Keywords (any one will activate)

This Skill activates when user expressions contain the following patterns:

PatternExample
Create/New/Generate + Project/System/Feature"Create a lottery project", "Generate user management system"
Write/Build/Develop + Project/System/Feature"Help me write a blog project", "Build an order system"
Give me/Need + Project/System"Give me a lottery project", "Need an image management feature"
XX Project/System/Module"Lottery project", "User management module" (implies creation intent)
Simple/Complete + Project"Simple lottery project", "Complete e-commerce system"

Non-triggering Cases

  • Asking about existing project issues: "This lottery project has an error, how to fix?"
  • Modifying/optimizing existing code: "Help me change the lottery logic"
  • Pure technical consultation: "How to implement lottery algorithm"

Project Creation Process

  1. Requirement Communication - Confirm project requirements with user
  2. Generate Project Structure - Create standardized directories and files
  3. Generate Code - Generate initial code based on requirements

Project Structure Specification

Created projects must follow this structure:

{project-name}/
├── backend/                          # Java Backend
│   ├── src/
│   │   ├── main/
│   │   │   ├── java/
│   │   │   │   └── com/
│   │   │   │       └── example/
│   │   │   │           └── {project-name}/
│   │   │   │               ├── controller/     # REST API Controllers
│   │   │   │               ├── service/        # Business Logic Layer
│   │   │   │               ├── mapper/         # MyBatis Mapper
│   │   │   │               ├── entity/         # Entity Classes
│   │   │   │               ├── dto/            # Data Transfer Objects
│   │   │   │               ├── config/         # Configuration Classes
│   │   │   │               └── util/           # Utility Classes
│   │   │   └── resources/
│   │   │       ├── application.yml             # Main Configuration
│   │   │       ├── application-dev.yml         # Dev Environment Config
│   │   │       └── mapper/                     # MyBatis XML
│   │   └── test/                               # Test Code
│   ├── pom.xml                                 # Maven Config
│   └── README.md                               # Backend Documentation
│
├── frontend/                         # Vue3 Frontend
│   ├── src/
│   │   ├── api/                    # API Interfaces
│   │   ├── assets/                 # Static Resources
│   │   ├── components/             # Common Components
│   │   ├── views/                  # Page Views
│   │   ├── router/                 # Route Config
│   │   ├── stores/                 # Pinia State Management
│   │   ├── utils/                  # Utility Functions
│   │   ├── App.vue
│   │   └── main.js
│   ├── public/
│   ├── package.json
│   ├── vite.config.js
│   └── README.md
│
├── database/                         # Database Scripts
│   ├── init.sql                    # Initialization Script
│   └── migration/                  # Migration Scripts
│
├── docs/                             # Project Documentation
│   ├── api.md                      # API Documentation
│   └── design.md                   # Design Documentation
│
├── docker/                           # Docker Config
│   ├── Dockerfile-backend
│   ├── Dockerfile-frontend
│   └── docker-compose.yml
│
├── .gitignore
├── README.md                         # Project Overview
└── PROJECT.md                        # Project Specification

Tech Stack Specification

Backend (Java)

  • Framework: Spring Boot 3.2+
  • JDK: 17+
  • Database: MySQL 8.0
  • ORM: MyBatis Plus
  • Build Tool: Maven
  • API Documentation: SpringDoc OpenAPI

Frontend (Vue3)

  • Framework: Vue 3.4+
  • Build Tool: Vite 5+
  • UI Library: Element Plus
  • State Management: Pinia
  • Routing: Vue Router 4
  • HTTP Client: Axios

Code Specification

Java Backend

  1. Package Name: com.example.{project-name}
  2. Class Name: PascalCase
  3. Method Name: camelCase
  4. Database Fields: snake_case
  5. Must Include: Lombok, unified return format, global exception handling

Vue3 Frontend

  1. Component Name: PascalCase
  2. Composition API: Use <script setup> syntax
  3. Styles: Use scoped CSS
  4. API Encapsulation: Unified encapsulation in api/ directory

Creation Steps

When recognizing user intent to create a project:

Step 1: Confirm Project Information

  • Project name (extracted from user description, e.g., "lottery" → lottery)
  • Core features/modules
  • Complexity (simple/standard/complete, default is standard)

Step 2: Ask for Generation Path

Must ask user: "Where should the project be generated? For example:"

  • d:\AIWorks\fast_java_coding\generated-projects\{project-name}
  • d:\my-projects\{project-name}
  • ~/projects/{project-name}
  • Or press Enter to use default working directory

Step 3: Handle Permission Issues

When trying to write to user-specified path:

If insufficient permissions (cannot write):

⚠️ Cannot write to specified path [path], insufficient permissions.

Please choose:
1. [Grant folder permissions] - I will guide you on how to set permissions
2. [Generate in working directory] - Project will be generated in my workspace/generated-projects/ directory

Please enter 1 or 2:

If option 1 (Grant permissions): Provide permission setting guidance for corresponding system (see "Permission Setting Guide" below)

If option 2 (Working directory):

  • Ensure ~/.openclaw/workspace/generated-projects/ directory exists
  • Create project folder in that directory
  • Record actual generation path

Step 4: Generate Project Content

  • Create standardized directory structure
  • Generate config files (pom.xml, package.json, application.yml, etc.)
  • Generate business code (database tables with audit fields, backend code, frontend code)
  • Generate documentation

Step 5: Output Project Information

After generation is complete, must output:

  1. Project Path: Complete absolute path
  2. Project Structure: Directory tree display
  3. Startup Steps: How to start the project
  4. Main Files Description: Purpose of key files

Trigger Examples

The following user expressions should trigger this Skill:

User InputRecognized Project NameComplexity
"Help me create a lottery project"lotteryStandard
"Generate a simple image management system"image-managerSimple
"Build a user management project"user-managementStandard
"Give me an order system"order-systemStandard
"Help me write a blog project"blogStandard
"Need a content publishing feature"content-publisherSimple
"Create a new e-commerce project"ecommerceComplete

Complete Example Dialog

Scenario 1: User specifies path (normal case)

User: "Help me create a lottery project"

Assistant: "Okay! I'll help you create a lottery project.

Confirmation:

  • Project name: lottery
  • Complexity: Standard (includes frontend, backend and database)

Where should the project be generated? For example:

  • d:\my-projects\lottery
  • d:\workspace\projects\lottery
  • Or press Enter to use default working directory

Please enter path:"

User: "d:\my-projects\lottery"

Assistant: "✅ Project generation complete!

📁 Project Path: d:\my-projects\lottery

📂 Project Structure:

lottery/
├── backend/          # Java Spring Boot
├── frontend/         # Vue3 Frontend
├── database/         # Database Scripts
└── README.md         # Startup Instructions

🚀 Startup Steps:

  1. Import database: mysql -u root -p < database/init.sql
  2. Start backend: cd backend && mvn spring-boot:run
  3. Open frontend: Browser access frontend/index.html

📋 Main Files:

  • backend/pom.xml - Maven Config
  • backend/src/.../LotteryController.java - Lottery API
  • frontend/index.html - Lottery Page
  • database/init.sql - Database Initialization"

Scenario 2: Insufficient permissions

User: "d:\projects\lottery"

Assistant: "⚠️ Cannot write to specified path d:\projects\lottery, insufficient permissions.

Please choose:

  1. [Grant folder permissions] - I will guide you on how to set permissions
  2. [Generate in working directory] - Project will be generated in default working directory

Please enter 1 or 2:"

User: "2"

Assistant: "✅ Project has been generated in working directory:

📁 Project Path: C:\Users\liuchao25\.openclaw\workspace\generated-projects\lottery\

[Subsequent output of project structure, startup steps...]"

Path Specification and Permission Handling

Path Inquiry Principle

Never use hardcoded paths. Must ask user for desired generation path before each project creation.

Example inquiry:

Where should the project be generated? - Enter absolute path, e.g.: d:\my-projects\lottery - Or press Enter for default: ~/.openclaw/workspace/generated-projects/lottery/

Permission Setting Guide

When user chooses "Grant folder permissions", provide the following guidance:

Windows (PowerShell):

# Method 1: Modify folder permissions
icacls "D:\YourFolder" /grant Users:F

# Method 2: Run OpenClaw as administrator
# Right-click PowerShell → Run as administrator

Windows (GUI):

  1. Right-click target folder → Properties
  2. Security → Edit
  3. Add → Enter your username → Check Names
  4. Check "Full control" → OK

macOS/Linux:

# Modify folder permissions
chmod 755 /path/to/folder

# Or change owner
sudo chown $USER:$USER /path/to/folder

Working Directory Fallback

If user chooses to generate in working directory:

  • Path: ~/.openclaw/workspace/generated-projects/{project-name}/
  • Auto-create generated-projects directory (if not exists)
  • Inform complete path after project generation

Path Examples

User ChoiceGeneration Path Example
Custom pathd:\my-projects\lottery\
macOS/Linux~/projects/lottery/ or /home/user/projects/lottery/
Default working directory~/.openclaw/workspace/generated-projects/lottery/

Database Audit Fields Specification

All database tables must include the following audit fields:

Field NameDescriptionData TypeNullableDefaultConstraints
creatorCreatorvarchar(64)Yes''DEFAULT ''
create_timeCreation TimedatetimeNoCURRENT_TIMESTAMPNOT NULL
updaterUpdatervarchar(64)Yes''DEFAULT ''
update_timeUpdate TimedatetimeNoCURRENT_TIMESTAMPNOT NULL, ON UPDATE CURRENT_TIMESTAMP
deletedDeleted FlagbitNob'0'DEFAULT b'0', NOT NULL
tenant_idTenant IDbigintNo0DEFAULT 0, NOT NULL

SQL Example

CREATE TABLE `example_table` (
  `id` bigint NOT NULL AUTO_INCREMENT COMMENT 'Primary Key ID',
  `name` varchar(128) NOT NULL COMMENT 'Name',
  -- Business fields...

  -- Audit fields (must include)
  `creator` varchar(64) DEFAULT '' COMMENT 'Creator',
  `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation Time',
  `updater` varchar(64) DEFAULT '' COMMENT 'Updater',
  `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update Time',
  `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT 'Deleted Flag',
  `tenant_id` bigint NOT NULL DEFAULT '0' COMMENT 'Tenant ID',

  PRIMARY KEY (`id`),
  KEY `idx_tenant_id` (`tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Example Table';

Java Entity Example

@Data
public class ExampleEntity {
    private Long id;
    private String name;
    // Business fields...

    // Audit fields (must include)
    private String creator;
    private LocalDateTime createTime;
    private String updater;
    private LocalDateTime updateTime;
    private Boolean deleted;
    private Long tenantId;
}

Notes

  1. Must ask for path first: Don't assume any fixed path, ask user every time
  2. Handle permission issues: When encountering insufficient permissions, provide clear two-option choice
  3. All generated code must include English comments
  4. Must include basic CRUD examples
  5. Code style should be unified and standardized
  6. Provide clear README instructions
  7. All tables must include creator, create_time, updater, update_time, deleted, tenant_id six audit fields
  8. On completion output: Project path, structure tree, startup steps, main files description

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

72.83%
按下载量换算2,575

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills