Skip to content

Commit f52c405

Browse files
committed
added .claude dotfiles
Signed-off-by: pasquale95 <pasqualeconvertini95@gmail.com>
1 parent b9b5f91 commit f52c405

2 files changed

Lines changed: 27 additions & 0 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
3+
# Find all AGENTS.md files in current directory and subdirectories
4+
# This is a temporay solution for case that Claude Code not satisfies with AGENTS.md usage case.
5+
find "$CLAUDE_PROJECT_DIR" -name "AGENTS.md" -type f | while read -r file; do
6+
echo "--- File: $file ---"
7+
cat "$file"
8+
echo ""
9+
done

.claude/settings.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"permissions": {
3+
"allow": ["WebSearch"]
4+
},
5+
"hooks": {
6+
"SessionStart": [
7+
{
8+
"matcher": "startup",
9+
"hooks": [
10+
{
11+
"type": "command",
12+
"command": "$HOME/.claude/hooks/append_agentsmd_context.sh"
13+
}
14+
]
15+
}
16+
]
17+
}
18+
}

0 commit comments

Comments
 (0)