Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计通过

setup-wizard设置向导

Agent Skill

setup-wizard 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

186

周安装

8

GitHub Stars

1

下载量

65
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/vibemastery/toolkit --skill setup-wizard

简介

setup-wizard 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

VibeMastery Setup Wizard

You are guiding a complete beginner through setting up their first Laravel project. Tone: Friendly, calm, encouraging. Never assume technical knowledge. Narration rule: Before running each command, tell the builder in one plain-English sentence what you're about to do and why. After it finishes, confirm success or explain any error in plain language before continuing.


Before You Begin

Greet the builder with this message (adapt naturally, don't paste verbatim):

"Welcome! I'm going to set up your first Laravel project. This takes about 10–15 minutes and I'll walk you through every step. You won't need to understand everything right now — I'll explain what matters as we go."

Ask: "What do you want to call your project?"

Rules for the name:

  • Lowercase letters, numbers, and hyphens only
  • No spaces (use hyphens instead: my-blog, photo-gallery)
  • Keep it short and descriptive

Store it as PROJECT_NAME — you'll use it throughout. Confirm the name before proceeding.

Also ask: "Where would you like to create the project? Just press Enter to use the default (~/Projects), or type a different path."

Store it as PROJECTS_DIR — default to ~/Projects if they don't specify.

Also ask: "Will your project need user accounts — things like login, registration, or a user dashboard?"

  • Yes → set AUTH=true
  • No / not sure → set AUTH=false

And: "Will you need an admin panel to manage your data — for example, viewing users, editing content, or managing orders?"

  • Yes → set ADMIN=true
  • No / not sure → set ADMIN=false

Both can be added later, but it's easier to include them from the start if they know they'll need them.


Step 1 — Detect Your Computer Type

*Tell the builder: "First, let me check what kind of computer you're using so I can give you the right instructions."*

Run:

uname -s
  • Output Darwin → macOS path (continue to Step 2-Mac)
  • Output MINGW64, MSYS, or CYGWIN → Windows path (continue to Step 2-Win)
  • Output Linux → Stop and explain: *"This wizard supports macOS and Windows. Linux isn't supported yet — check back soon, or visit vibemastery.ai for alternatives."*

Step 2-Mac — Install Laravel Herd (macOS)

*Tell the builder: "Laravel Herd is an app that manages PHP and your local server — it's the official, easiest way to run Laravel on a Mac."*

First check if Herd is already installed:

herd --version

If it's already installed, say "Herd is already installed — great!" and skip to Step 3.

If not installed:

"Let's download Laravel Herd. Go to herd.laravel.com/download in your browser and download the DMG file. Open it, drag Herd to your Applications folder, then launch it."

Wait for confirmation that Herd has opened. It will run a short onboarding wizard that installs PHP automatically — tell them to follow it and let you know when it finishes.

"Herd should be showing a setup wizard on your screen. Follow the steps it shows you — it installs PHP and Composer automatically. Let me know when it says it's ready."

Wait for confirmation Herd is running. Then verify:

php -v && composer --version

If this fails: *"Herd didn't add PHP to your terminal yet. Close this terminal window, open a new one, and type php -v again. This is normal the first time."*

Continue to Step 3.


Step 2-Win — Install Laravel Herd (Windows)

*Tell the builder: "Laravel Herd for Windows manages PHP and your local server automatically — it's the official way to run Laravel on Windows."*

First check if Herd is already installed:

herd --version

If already installed, skip to Step 3.

If not installed:

"Please go to herd.laravel.com in your browser and download the Windows installer. Run it and follow the setup steps — it installs PHP and Composer for you automatically. Let me know when the Herd icon appears in your taskbar."

Wait for confirmation. Then verify:

php -v && composer --version

If this fails: *"Close this terminal, open a new one, and try php -v again. Herd needs a fresh terminal to be recognised."*

Continue to Step 3.


Step 3 — Create the Laravel Project

*Tell the builder: "Now I'll create your actual Laravel project. This downloads the framework and sets everything up in a new folder."*

Navigate to their chosen directory:

mkdir -p {{PROJECTS_DIR}} && cd {{PROJECTS_DIR}}

Create the project — use the command that matches their choices:

If AUTH=true:

laravel new {{PROJECT_NAME}} --react --pest --database=sqlite --git --npm --boost

If AUTH=false:

laravel new {{PROJECT_NAME}} --react --no-authentication --pest --database=sqlite --git --npm --boost
"This one command creates the project, installs React and Inertia, sets up Pest for testing, connects your AI assistant to the project, and initialises Git — all in one go. It downloads about 100 MB of packages, so give it a few minutes."

Move into the project folder for the rest of the setup:

cd {{PROJECT_NAME}}

Install the VibeMastery Stack

If ADMIN=true — Install Filament (admin panel):

composer require filament/filament:"^5.0"
php artisan filament:install --panels

When Filament asks for a panel ID, use admin.

Then create your admin user:

php artisan make:filament-user

It will ask for a name, email, and password — these are your login credentials for the panel.

"Your admin panel is ready at /admin. Log in with the credentials you just created."

Then refresh Laravel Boost so it picks up all the newly installed packages:

php artisan boost:update

Step 4 — Set Up Your Local Website Address

*Tell the builder: "Right now your project is just files on your computer. This step gives it a real web address you can open in your browser — like {{PROJECT_NAME}}.test."*

herd link
herd secure
"Open your browser and go to https://{{PROJECT_NAME}}.test. You should see the Laravel welcome page."

If the page doesn't load: *"Make sure Herd is running, then try again. If it still doesn't work, let me know what error you see."*


Step 5 — Configure Your AI Coding Tool

You are the AI tool running this skill. Identify which tool you are (Claude Code, Codex, OpenCode, or other) and continue to the matching section below.

For Claude Code

"Laravel Boost was already set up as part of the project creation — Claude can see your project's routes, database schema, and documentation automatically. Nothing extra needed."

For OpenCode

*Tell the builder: "I'm going to create a small config file so OpenCode knows how to work with your project."*

Read references/opencode.json.template, replace {{PROJECT_NAME}}, write to opencode.json.

For Codex

No extra configuration is needed. Codex picks up project context automatically from your project structure.


Step 6 — First Run

*Tell the builder: "Everything is set up. Let's see your project running for the first time."*

Open https://{{PROJECT_NAME}}.test in the browser. You should see the Laravel welcome page.

"🎉 Your project is live! Whenever you're working on it, run npm run dev in your terminal to enable live reloading. You don't need it just to view the site — only when you're actively making changes."

Create the first Git commit:

git add -A
git commit -m "Initial VibeMastery project setup"
"I've saved a snapshot of your project. This is your starting point — you can always come back to this."

Handoff

End the session with this message (adapt naturally):

"Your project is ready at {{PROJECT_NAME}}.test. From now on, just tell me what you want to build — you never need to run the Setup Wizard again."

Remind them:

  • They can run tests with php artisan test
  • If ADMIN=true: their admin panel is at https://{{PROJECT_NAME}}.test/admin
  • If they get an error they don't understand, they can ask you to explain it

Then give this closing instruction:

"One last thing — close this tab and open your project folder ({{PROJECTS_DIR}}/{{PROJECT_NAME}}) in a new window. That's where you'll do all your building from now on."

The setup is complete. The builder is ready to build.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.18%
按下载量换算25

Claude

30.32%
按下载量换算20

Cursor

18.57%
按下载量换算12

Gemini CLI

9.76%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills