Claude Code Plugins

Community-maintained marketplace

Feedback

Generates .gitignore file for Git version control exclusions. Defines files and directories to exclude from version control like node_modules, build artifacts, and local environment files.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name gitignore
description Generates .gitignore file for Git version control exclusions. Defines files and directories to exclude from version control like node_modules, build artifacts, and local environment files.

Git Ignore Skill

Purpose

Generate the .gitignore file for version control exclusions.

Output

Create the file: .gitignore

Notes

  • Excludes macOS system files (.DS_Store)
  • Excludes node_modules and build artifacts (dist, dist-ssr)
  • Excludes local environment files (.env.local, .env.*.local, .env)
  • Excludes all editor directories (.vscode, .idea)
  • Excludes log files from npm, yarn, and pnpm
  • Excludes test coverage reports
  • Excludes *.local files for local-only configurations