chore(git): ignore custom documentation files

Add AGENTS.md and CLAUDE.md to .gitignore to exclude project-specific documentation files.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-01 18:49:44 +01:00
parent 7f39bf1eca
commit d21945dbc0
9 changed files with 7 additions and 3 deletions

4
.gitignore vendored
View File

@@ -1,3 +1,7 @@
### Custom
AGENTS.md
CLAUDE.md
### Rust template ### Rust template
# Generated by Cargo # Generated by Cargo
# will have compiled files and executables # will have compiled files and executables

View File

@@ -11,9 +11,9 @@ tokio = { version = "1.39", features = ["macros", "rt-multi-thread"] }
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_json = "1" serde_json = "1"
color-eyre = "0.6" color-eyre = "0.6"
llm-ollama = { path = "../llm/ollama" } llm-ollama = { path = "../../llm/ollama" }
tools-fs = {path = "../tools/fs"} tools-fs = {path = "../../tools/fs" }
config-agent = { package = "config-agent", path = "../config" } config-agent = { package = "config-agent", path = "../../config" }
futures-util = "0.3.31" futures-util = "0.3.31"
[dev-dependencies] [dev-dependencies]