Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

vibe-coding-setup振动编码设置

Agent Skill

vibe-coding-setup 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

216

周安装

9

GitHub Stars

公开资料未说明

下载量

72
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add carolmonroe22/vibe-coding-setup --skill "vibe-coding-setup"

简介

vibe-coding-setup 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于需要快速定位候选结果的关键词搜索、任务场景匹配或来源线索筛选等研究检索类需求。
  • 通过 npx skills add carolmonroe22/vibe-coding-setup --skill "vibe-coding-setup" 安装,具体用法请参考来源仓库 README。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
vibe-coding-setup
description
Set up a complete vibe coding workflow with Claude Code after migrating from a platform. Covers Supabase MCP, Netlify MCP, Vercel, API keys, GitHub, and decision framework for when to stay vs migrate. Use when users want to set up MCPs, connect hosting/database, or start a new project with the "all-in-one" experience in Claude Code.
license
MIT
metadata
author
CarolMonroe22
version
1.0.0
tags

Vibe Coding Setup with Claude Code

Set up a complete vibe coding workflow with Claude Code after migrating from an all-in-one platform (Lovable, Replit, Bolt, etc.).

When to Use This Skill

  • User is migrating from a platform to Claude Code
  • User wants to set up MCPs for their project
  • User needs to connect hosting, database, and API keys
  • User is starting a new project and wants the "all-in-one" experience with Claude Code

Setup Checklist

1. Supabase MCP (Database + Auth + Storage)

Add to your Claude Code MCP config (~/.claude/mcp.json or project .mcp.json):

{
  "mcpServers": {
    "supabase": {
      "command": "npx",
      "args": ["-y", "@supabase/mcp-server-supabase@latest", "--project-ref", "YOUR-PROJECT-ID"]
    }
  }
}

This gives Claude Code access to:

  • List and query tables
  • Run SQL and migrations
  • Manage edge functions
  • Generate TypeScript types

Note: It doesn't have to be Supabase — Claude Code can connect to any Postgres database via the generic Postgres MCP.

2. Netlify MCP (Hosting + Deploys)

{
  "mcpServers": {
    "netlify": {
      "command": "npx",
      "args": ["-y", "@netlify/mcp"],
      "env": {
        "NETLIFY_PERSONAL_ACCESS_TOKEN": "your-token"
      }
    }
  }
}

Get your token at: https://app.netlify.com/user/applications#personal-access-tokens

This gives Claude Code access to:

  • Create and deploy sites
  • Check build logs
  • Manage environment variables
  • Preview deploys

3. Vercel MCP (Alternative Hosting)

Vercel uses a remote MCP endpoint with OAuth:

{
  "mcpServers": {
    "vercel": {
      "url": "https://mcp.vercel.com"
    }
  }
}

Currently read-only: logs, docs, project metadata. Useful for debugging.

4. API Keys

Add to your shell config (~/.zshrc or ~/.bashrc):

export OPENAI_API_KEY="sk-..."
export GOOGLE_AI_API_KEY="..."
export ANTHROPIC_API_KEY="..."

Or use a .env file in your project (add to .gitignore).

5. GitHub

git clone your-repo
cd your-repo
claude

Claude Code works directly with your local files and can use git commands.

6. Additional MCPs (Optional)

MCPPurposePackage
PostgresDirect DB access@modelcontextprotocol/server-postgres
GitHubIssues, PRs, repos@modelcontextprotocol/server-github
FilesystemFile operations@modelcontextprotocol/server-filesystem
Brave SearchWeb search@modelcontextprotocol/server-brave-search

Decision Framework

Stay on the platform when:

  • Just starting to vibe code or won't do it regularly
  • Building something simple or prototyping
  • Not comfortable with terminals
  • Non-technical team needs to collaborate
  • Need to ship fast without setup

Migrate to Claude Code when:

  • You hit platform limitations (auth, SQL, RLS)
  • You need staging/production environments
  • You want to combine multiple tools
  • Your project outgrew the prototype phase

The combo approach:

  • Use a platform (Lovable) for UI and team collaboration
  • Use Claude Code for backend, migrations, edge functions, precision work
  • Best of both worlds

Platform Equivalents

Platform FeatureClaude Code Equivalent
One-click deployNetlify MCP
Database dashboardSupabase MCP
Environment variables.env + hosting MCP
Preview URLsNetlify/Vercel deploys
AI chatClaude Code itself
Auth setupSupabase Auth
File storageSupabase Storage

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Cursor

27.05%
按下载量换算19

mcpjam

26.79%
按下载量换算19

Claude Code

18.07%
按下载量换算13

zencoder

14.34%
按下载量换算10

crush

7.79%
按下载量换算6

cline

3.5%
按下载量换算3

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills