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

setup设置

Agent Skill

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

总安装

192

周安装

8

GitHub Stars

61

下载量

64
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/melodic-software/claude-code-plugins --skill setup

简介

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。

  • 适合生成或审查 React、Next.js、Vue、Tailwind、CSS 等代码,整理组件结构或定位布局问题。
  • 使用时需结合项目设计系统、路由和构建方式,避免生成孤立片段;涉及页面改动应配合预览和构建检查。
  • 安装命令:npx skills add https://github.com/melodic-software/claude-code-plugins --skill setup。
  • 建议确认权限范围和维护状态,注意是否会触发联网或文件读写操作。

SKILL.md

Git Setup

Complete guidance for installing Git and performing essential initial configuration across Windows, macOS, Linux, and WSL environments.

Table of Contents

Overview

This skill helps you:

  • Install Git using the best method for your platform
  • Configure essential Git settings (user identity, default branch, editor)
  • Verify your installation is working correctly
  • Understand platform-specific considerations
  • Get started quickly with recommended defaults

For advanced configuration (aliases, performance tuning, credential management, maintenance), see the git-config skill.

When to Use This Skill

Use this skill when:

  • Installing Git on a new development machine
  • Setting up Git for the first time on any platform
  • Configuring user identity and basic Git settings
  • Verifying Git installation is working correctly
  • Troubleshooting Git installation issues
  • Understanding platform-specific Git installation options
  • Setting up Git on Windows, macOS, Linux, or WSL

Quick Start

Fastest path to getting Git installed and configured:

Windows

# Install Git
winget install --id Git.Git -e --source winget

# Configure identity
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
git config --global init.defaultBranch main

# Verify
git --version

macOS

# Install Git
brew install git

# Configure identity
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
git config --global init.defaultBranch main

# Verify
git --version

Linux

# Install Git (Ubuntu/Debian)
sudo apt update && sudo apt install git

# Configure identity
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
git config --global init.defaultBranch main

# Verify
git --version

Platform Detection

When helping users with Git installation, detect their platform using environment indicators:

  • Windows: $env:OS contains "Windows", PowerShell commands, winget, file paths like C:\
  • macOS: uname -s returns "Darwin", Homebrew (brew), ~/.zshrc
  • Linux: uname -s returns "Linux", package managers (apt, dnf, pacman), ~/.bashrc
  • WSL: Linux kernel + Windows integration (e.g., /mnt/c/), wsl.exe available

Provide platform-specific guidance automatically based on detected or stated platform.


Windows Installation

Two installation options: Git for Windows Installer (full control, recommended) or winget (quick install). Includes Windows-specific configuration (long paths, system-level settings) and troubleshooting.

📚 Full guide: references/install-windows.md

Topics covered: Installation options, verification, Windows-specific configuration, Win32 long paths, troubleshooting, Git Bash history issues


macOS Installation

Two installation options: Xcode Command Line Tools (quick, built-in) or Homebrew (latest version, recommended). Includes macOS-specific configuration, shell integration (Zsh/Bash), and global gitignore setup.

📚 Full guide: references/install-macos.md

Topics covered: Installation options, verification, line ending configuration, Zsh/Bash shell integration, global gitignore


Linux Installation

Installation via package manager: apt (Ubuntu/Debian), dnf (Fedora/RHEL), or pacman (Arch Linux). Includes Linux-specific configuration, shell integration (Bash/Zsh), and global gitignore setup.

📚 Full guide: references/install-linux.md

Topics covered: Distribution-specific installation, verification, line ending configuration, Bash/Zsh shell integration, global gitignore


WSL (Windows Subsystem for Linux)

WSL runs Linux (Ubuntu by default), so Git installation is identical to native Linux. Includes WSL-specific configuration and performance considerations.

📚 Full guide: references/install-wsl.md

Topics covered: Installation (same as Linux), verification, WSL-specific configuration, filesystem performance notes, Windows integration, credential sharing


Basic Configuration (All Platforms)

After installing Git, configure these essential settings:

Set User Identity (Required)

git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"

Important: This information is included in every commit. Use your real name and work/personal email.

Set Default Branch Name

git config --global init.defaultBranch main

Note: Modern standard is main (replacing older master convention).

Set Preferred Editor (Optional)

Choose one:

# VS Code (must be in PATH)
git config --global core.editor "code --wait"

# Notepad (Windows)
git config --global core.editor "notepad"

# Vim
git config --global core.editor "vim"

# Nano (Linux/macOS)
git config --global core.editor "nano"

Note: If not set, Git uses system default editor (usually Vim on Linux/macOS, Notepad on Windows).


Verification

After installation and configuration, verify everything is working:

Check Git Version

git --version

Verify Configuration

# View all configuration with source files
git config --list --show-origin

# View specific values
git config user.name
git config user.email
git config init.defaultBranch

Test Basic Git Operations

# Create test repository
mkdir test-repo
cd test-repo
git init

# Create and commit a file
echo "# Test Repository" > README.md
git add README.md
git commit -m "Initial commit"

# View commit history
git log

# Clean up
cd ..
rm -rf test-repo

Expected result: Repository created, commit successful, log shows your commit.


Configuration File Locations

For comprehensive details on configuration file locations, hierarchy, conditional includes, and troubleshooting, see Configuration Details.

Quick reference:

  • System: /etc/gitconfig (all users, requires sudo)
  • Global: ~/.config/git/config or ~/.gitconfig (current user)
  • Local: .git/config (current repository)
  • Hierarchy: Local > Global > System

Unsetting Config Values

To remove/unset a config value:

# Unset system config value (requires admin/sudo)
git config --system --unset status.aheadbehind

# Unset global/user config value
git config --global --unset status.aheadbehind

# Unset local config value (inside a repo)
git config --unset status.aheadbehind

Reference Loading Guide

All references in this skill are conditionally loaded based on platform detection or troubleshooting context. This progressive disclosure strategy keeps the skill efficient by loading only relevant content when needed.

Always Load (Core)

  • None - all references are contextual and loaded on-demand

Conditional Load

  • references/install-windows.md - Load when user is on Windows platform (install workflow)
  • references/install-macos.md - Load when user is on macOS platform (install workflow)
  • references/install-linux.md - Load when user is on Linux platform (install workflow)
  • references/install-wsl.md - Load when user is on WSL platform (install workflow)
  • references/git-bash-history-troubleshooting.md - Load when troubleshooting Git Bash command history issues on Windows Terminal

Token efficiency: Most users follow the Quick Start path (~3k tokens). Platform-specific deep dives load only the relevant reference (~3.5-4k tokens total).


Next Steps

After completing basic Git setup, consider:

  1. Advanced Configuration: Use the git-config skill for:

- Comprehensive global configuration (performance, aliases, maintenance) - Credential management (GitHub CLI, Windows Credential Manager) - Clone shortcuts (save typing for common repos)

  1. Line Ending Management: Use the line-endings skill for:

- Understanding line ending configuration - Setting up .gitattributes for cross-platform teams - Troubleshooting line ending issues - Git LFS setup for large files

  1. Commit Signing: Use the gpg-signing skill for:

- Setting up GPG commit signing - Generating and managing GPG keys - Adding GPG keys to GitHub/GitLab - Troubleshooting signing issues

  1. GUI Tools: Use the gui-tools skill for:

- Installing Git GUI clients (GitKraken, Sourcetree, GitHub Desktop) - Configuring GUI tools - Choosing the right GUI for your workflow


Related Skills

  • config: Comprehensive Git configuration (aliases, performance, credentials, maintenance)
  • line-endings: Line ending configuration, .gitattributes, Git LFS
  • gpg-signing: GPG commit signing setup and troubleshooting
  • gui-tools: Git GUI client installation and configuration

Testing and Evaluations

For comprehensive test scenarios, multi-model testing notes, formal evaluations, and development methodology, see Testing and Evaluations.

Evaluation Summary: 3/3 evaluations passed - Tested with Claude Sonnet 4.5 and Claude Sonnet 3.5


References

Installation Guides:

Configuration:

Troubleshooting:

Testing:


Version History

  • v1.3.0 (2025-11-28): Token optimization - extracted configuration details and testing to references/, reduced SKILL.md from 526 to ~400 lines
  • v1.2.0 (2025-11-25): Comprehensive audit improvements - enhanced WSL reference, updated Git versions to 2.47.0+
  • v1.1.0 (2025-01-11): Added Windows Terminal Git Bash command history troubleshooting reference
  • v1.0.0 (2025-01-06): Initial release with comprehensive Git installation and configuration guidance

Official Documentation


Last Updated

Date: 2025-11-28 Model: claude-opus-4-5-20251101

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

trae

25.81%
按下载量换算17

Antigravity

23.96%
按下载量换算15

windsurf

18.76%
按下载量换算12

Claude Code

14.24%
按下载量换算9

Codex

7.74%
按下载量换算5

Gemini CLI

3.51%
按下载量换算2

安全审计

Gen Agent Trust Hub

可疑

Socket

未通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills