From 3fb8bb625d05ccd2065855c495b9d143930f8e93 Mon Sep 17 00:00:00 2001 From: sebsalasenroute <132707139+sebsalasenroute@users.noreply.github.com> Date: Tue, 26 May 2026 11:13:50 -0700 Subject: [PATCH] chore: ignore skill install artifacts (#317) `npx skills add` writes .agents/, .claude/, and skills-lock.json into consumer projects. Ignore them in this source repo so the install can be run from inside the repo without polluting git status. https://claude.ai/code/session_01HStJ5nara1i4H6yrXrio2w Co-authored-by: Claude --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 9efae5c..d9e8a0e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,11 @@ # Dependencies node_modules/ +# Skill install artifacts (npx skills add) +.agents/ +.claude/ +skills-lock.json + # Environment variables / secrets .env .env.*