-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdependencies.txt
More file actions
36 lines (30 loc) · 1.57 KB
/
dependencies.txt
File metadata and controls
36 lines (30 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Claude Code Custom Commands Dependencies
# Format: command|install_message|required (true/false)
# Comments start with #
# Core dependencies (required)
bash|Install bash shell|true
jq|Install with: brew install jq (macOS) or apt-get install jq (Ubuntu)|true
curl|Install with: brew install curl (macOS) or apt-get install curl (Ubuntu)|true
git|Install with: brew install git (macOS) or apt-get install git (Ubuntu)|true
# Node.js ecosystem (required for Claude Code)
node|Install Node.js from: https://nodejs.org/|true
npm|Install Node.js from: https://nodejs.org/ (includes npm)|true
# Claude Code (required)
claude|Install with: npm install -g @anthropic/claude-code|true
# Security tools (optional but recommended)
rg|Install ripgrep with: brew install ripgrep (macOS) or apt-get install ripgrep (Ubuntu)|false
find|Standard Unix utility - should be available|true
grep|Standard Unix utility - should be available|true
file|Standard Unix utility - should be available|true
# Development tools (optional)
diff|Standard Unix utility - should be available|false
wc|Standard Unix utility - should be available|false
head|Standard Unix utility - should be available|false
tail|Standard Unix utility - should be available|false
chmod|Standard Unix utility - should be available|true
mkdir|Standard Unix utility - should be available|true
cp|Standard Unix utility - should be available|true
mv|Standard Unix utility - should be available|true
rm|Standard Unix utility - should be available|true
# GitHub CLI (optional)
gh|Install with: brew install gh (macOS) or follow https://cli.github.com/|false