Install
$ agentstack add skill-khaledsaeed18-dotclaude-gitignore ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Produce a .gitignore that fits this repo (driven by the stacks actually present, not a generic blob) and fix the common failure where a pattern is added but the file is already tracked, so Git keeps it anyway.
Hard rules: never break these
- Never ignore source. Ignore dependencies, build output, caches, logs, secrets, and local cruft, never the code or config the project needs to build.
- Adding a pattern does not untrack a tracked file.
.gitignoreonly affects untracked files. Already-committed files needgit rm --cached(Step 5) to stop being tracked. - Preserve existing intent. Don't wipe a hand-tuned
.gitignore; merge, dedupe, and organize. Keep custom and negation (!) rules unless they're clearly wrong. - Treat tracked secrets as an incident. A committed
.env, key, or credential is already in history; adding it to.gitignoreandrm --cachedstops future tracking but does not remove it from past commits. Flag it loudly and point to history-rewrite tooling (git filter-repo, BFG) and secret rotation. - Confirm before
git rm --cached. It changes what's tracked and lands in the next commit.
Step 1: Detect the stacks
Scan the repo for what's actually in use rather than guessing:
- Manifests → ecosystem:
package.json(Node),Cargo.toml(Rust),pyproject.toml/requirements.txt/Pipfile(Python),go.mod(Go),pom.xml/build.gradle(Java/Kotlin),Gemfile(Ruby),composer.json(PHP),*.csproj/*.sln(.NET),pubspec.yaml(Dart/Flutter),mix.exs(Elixir). - Frameworks (they add their own build/cache dirs): Next.js (
.next/), Nuxt (.nuxt/), Astro, SvelteKit, Vite (dist/), Angular, Django (*.sqlite3,staticfiles/), Rails, Terraform (.terraform/), etc. - OS files: macOS (
.DS_Store), Windows (Thumbs.db,Desktop.ini), Linux (*~). - Editors/IDEs:
.vscode/,.idea/,*.swp,.fleet/; these typically belong in a global gitignore, but include locally if the team standardizes there. - Tooling: test coverage (
coverage/,.nyc_output/), env files (.env*), local caches (.cache/,.turbo/,__pycache__/).
Step 2: Audit what's already tracked
- Read the current
.gitignore(s); there may be nested ones in subdirectories. - Find files that are tracked but shouldn't be: compare
git ls-filesagainst the patterns you intend (look especially fornode_modules/,dist//build/,target/,__pycache__/,*.log,.env*, key material*.pem/*.key/id_rsa). git status --ignoredshows what's currently ignored vs. not.- Anything sensitive already tracked → escalate per the hard rules.
Step 3: Build the patterns
Compose sections per detected stack. Cover, for each:
- Dependencies:
node_modules/,vendor/,target/,.venv/,Pods/. - Build output:
dist/,build/,out/,*.pyc/__pycache__/,*.class,bin/,obj/. - Env & secrets:
.env,.env.*(but keep!.env.example),*.pem,*.key,*.p12,credentials.json. - Logs & caches:
*.log,.cache/,.turbo/,.gradle/,.pytest_cache/. - Coverage:
coverage/,.nyc_output/,htmlcov/. - OS / editor: per Step 1.
Use the canonical templates as reference (GitHub's github/gitignore, gitignore.io / Toptal generator) but tailor; don't dump every language. Prefer anchored, specific patterns (/dist/ for a root-only dir) over broad ones that may catch wanted files.
Step 4: Write / repair the file
- Group with section comments (
# Dependencies,# Build output,# Env & secrets, …) for maintainability. - Deduplicate and remove contradictions; keep legitimate custom and
!negation rules. - Don't over-ignore: if a glob would swallow a needed file (e.g. a committed
config/*.json), add a negation (!config/required.json) or tighten the pattern. - Layer correctly: root
.gitignorefor repo-wide rules; nested.gitignoreonly where a subtree needs its own; suggest a personal global gitignore (core.excludesFile) for editor/OS noise rather than imposing it on the repo.
Step 5: Untrack already-committed files (with confirmation)
Editing .gitignore won't stop tracking files Git already knows about. For each such file/dir, after confirming:
git rm -r --cached path/to/thing # removes from tracking, keeps it on disk
Then it stays on disk but drops out of the repo on the next commit. For tracked secrets, also flag history rewrite + credential rotation; rm --cached alone leaves them in every past commit.
Step 6: Verify
git status --ignored: intended files now show as ignored; nothing wanted is being ignored.git check-ignore -v: explains which rule matches a given path (great for debugging surprises).- Confirm source and required config still appear in
git status/git ls-files.
Report the stacks detected, what got newly ignored or untracked, and any secrets/artifacts that need follow-up beyond .gitignore.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: KhaledSaeed18
- Source: KhaledSaeed18/dotclaude
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.