.gitignore

 1# Binary files
 2/planning-mcp-server
 3*.exe
 4*.exe~
 5*.dll
 6*.so
 7*.dylib
 8
 9# Test binary, built with `go test -c`
10*.test
11
12# Output of the go coverage tool
13*.out
14
15# Dependency directories
16vendor/
17
18# IDE and editor files
19.idea/
20.vscode/
21*.swp
22*.swo
23*~
24
25# Crush database files
26.crush/
27
28# macOS
29.DS_Store
30
31# Build artifacts
32/dist/
33/bin/
34
35# Log files
36*.log