cc-safe-setup 5.3.0 → 5.3.1

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.
Files changed (3) hide show
  1. package/README.md +1 -0
  2. package/index.mjs +3 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -224,6 +224,7 @@ Or browse all available examples in [`examples/`](examples/):
224
224
  - **session-handoff.sh** — Auto-save git state and session info to `~/.claude/session-handoff.md` on session end
225
225
  - **diff-size-guard.sh** — Warn/block when committing too many files at once (default: warn at 10, block at 50)
226
226
  - **dependency-audit.sh** — Warn when installing packages not in manifest (npm/pip/cargo supply chain awareness)
227
+ - **env-source-guard.sh** — Block sourcing .env files into shell environment ([#401](https://github.com/anthropics/claude-code/issues/401))
227
228
  - **symlink-guard.sh** — Detect symlink/junction traversal in rm targets ([#36339](https://github.com/anthropics/claude-code/issues/36339) [#764](https://github.com/anthropics/claude-code/issues/764))
228
229
  - **binary-file-guard.sh** — Warn when Write targets binary file types (images, archives)
229
230
  - **stale-branch-guard.sh** — Warn when working branch is far behind default
package/index.mjs CHANGED
@@ -363,6 +363,9 @@ function examples() {
363
363
  'commit-quality-gate.sh': 'Warn on vague or too-long commit messages',
364
364
  'diff-size-guard.sh': 'Warn/block on large diffs (10+ files warn, 50+ block)',
365
365
  'dependency-audit.sh': 'Warn on new package installs not in manifest',
366
+ 'binary-file-guard.sh': 'Warn when Write targets binary file types',
367
+ 'stale-branch-guard.sh': 'Warn when branch is far behind default',
368
+ 'symlink-guard.sh': 'Detect symlink/junction traversal in rm targets',
366
369
  'cost-tracker.sh': 'Estimate session token cost ($1 warn, $5 alert)',
367
370
  'read-before-edit.sh': 'Warn when editing files not recently read',
368
371
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-safe-setup",
3
- "version": "5.3.0",
3
+ "version": "5.3.1",
4
4
  "description": "One command to make Claude Code safe for autonomous operation. 8 built-in + 39 examples. 23 commands including dashboard, issues, create, audit, lint, diff. 260 tests. 2,500+ daily npm downloads.",
5
5
  "main": "index.mjs",
6
6
  "bin": {