claude-devkit-cli 1.3.1 → 1.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-devkit-cli",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "CLI toolkit for spec-first development with Claude Code — hooks, commands, guards, and test runners",
5
5
  "bin": {
6
6
  "claude-devkit": "./bin/devkit.js",
@@ -46,17 +46,35 @@ COMMAND=$(extract_command "$INPUT") || exit 0
46
46
  BLOCKED="(^|[ /])node_modules(/|$| )"
47
47
  BLOCKED+="|(__pycache__)"
48
48
  BLOCKED+="|\.git/(objects|refs)"
49
- BLOCKED+="|(^|[ /])dist(/|$| )"
50
- BLOCKED+="|(^|[ /])build(/|$| )"
49
+ BLOCKED+="|(^|[ /])dist/"
50
+ BLOCKED+="|(^|[ /])build/"
51
51
  BLOCKED+="|\.next/"
52
52
  BLOCKED+="|(^|[ /])vendor(/|$| )"
53
53
  BLOCKED+="|(^|[ /])Pods(/|$| )"
54
54
  BLOCKED+="|\.build/"
55
55
  BLOCKED+="|DerivedData"
56
56
  BLOCKED+="|\.gradle/"
57
- BLOCKED+="|target/(debug|release)(/|$| )"
57
+ BLOCKED+="|(^|[ /])target/"
58
58
  BLOCKED+="|\.nuget"
59
59
  BLOCKED+="|\.cache(/|$| )"
60
+ # Python
61
+ BLOCKED+="|(^|[ /])\.venv/"
62
+ BLOCKED+="|(^|[ /])venv/"
63
+ BLOCKED+="|\.mypy_cache/"
64
+ BLOCKED+="|\.pytest_cache/"
65
+ BLOCKED+="|\.ruff_cache/"
66
+ BLOCKED+="|\.egg-info(/|$| )"
67
+ # C# .NET (match .NET-specific subdirs to avoid false positives on generic bin/)
68
+ BLOCKED+="|(^|[ /])bin/(Debug|Release|net|x64|x86)"
69
+ BLOCKED+="|(^|[ /])obj/(Debug|Release|net)"
70
+ # Node.js frameworks
71
+ BLOCKED+="|\.nuxt/"
72
+ BLOCKED+="|\.svelte-kit/"
73
+ BLOCKED+="|\.parcel-cache/"
74
+ BLOCKED+="|\.turbo/"
75
+ BLOCKED+="|(^|[ /])out/(server|static|_next)"
76
+ # Ruby
77
+ BLOCKED+="|\.bundle/"
60
78
 
61
79
  # Append project-specific patterns from env
62
80
  if [[ -n "${PATH_GUARD_EXTRA:-}" ]]; then