Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .claude/skills/rust-async-patterns
1 change: 1 addition & 0 deletions .claude/skills/rust-best-practices
1 change: 1 addition & 0 deletions .claude/skills/rust-engineer
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
/target
.env
.agents
/skills
Comment on lines +3 to +4
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick | 🔵 Trivial

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Check for references to a skills directory at repo root

# Check if skills directory exists
fd -t d '^skills$' . --max-depth 1

# Search for references to /skills or ./skills in codebase
rg -n '\bskills\b' --type=rust --type=toml --type=json --type=md -C2

Repository: CLoaKY233/Valygate

Length of output: 840


The /skills entry's purpose is now clear—consider adding a comment to clarify the pattern.

The skills-lock.json file shows that skills are downloaded and managed as dependencies. The /skills entry is the gitignore for the generated skills directory (parallel to .agents), so it has a valid purpose. Adding a brief comment in .gitignore explaining that both .agents and /skills are generated/downloaded directories would improve clarity for contributors.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In @.gitignore around lines 3 - 4, Add a short clarifying comment to .gitignore
explaining that both ".agents" and "/skills" are generated/downloaded
directories managed via skills-lock.json (i.e., do not commit these
directories), so contributors understand the purpose of those ignore entries;
reference the existing entries ".agents" and "/skills" and mention
"skills-lock.json" in the comment.

Loading
Loading