@@ -183,6 +183,7 @@ pm run order-service
183183- 🐳 ** Docker support** - Detect Docker Compose projects, default commands (build, up, down, clean)
184184- 🪝 ** Pre-/post-command hooks** - Run custom scripts before or after any command with ` pm hooks `
185185- 🔤 ** Shell autocompletion** - TAB completion for bash, zsh, fish, and PowerShell with ` pm completions `
186+ - 🔐 ** Security scan** - Detect misconfigurations (Dockerfile root, exposed secrets, insecure URLs) with ` pm secure ` , auto-fix with ` --fix `
186187- 🌐 ** Multi-platform** - Works on Windows, Linux, and Mac
187188
188189---
@@ -246,6 +247,8 @@ chmod +x scripts/install.sh && ./scripts/install.sh
246247| ` pm update ` | Update to the latest version |
247248| ` pm doctor ` | Diagnose environment (runtimes, paths, health scores) |
248249| ` pm doctor --score ` | Show only health grades (A/B/C/D/F) per project |
250+ | ` pm secure ` | Scan projects for security misconfigurations |
251+ | ` pm secure --fix ` | Auto-fix .gitignore issues (add .env, * .pem, * .key entries) |
249252| ` pm help ` | Show help |
250253| ` pm version ` | Show version |
251254
@@ -455,9 +458,10 @@ Projects are saved in:
455458- ** CLI** — ` pm doctor ` , ` pm env ` , ` pm refresh ` , ` pm rename ` , ` pm update ` , ` pm commands add/remove `
456459- ** Runtimes** — Gradle, Maven, Node.js, .NET, Python, Rust, Go, pnpm, Bun, Yarn, Flutter, Docker
457460- ** Integrations** — Git status, interactive TTY, multi-platform installers, GitHub Actions
458- - ** Reliability** — Atomic writes, backup/recovery, directory validation, download integrity, 441 tests
461+ - ** Security** — ` pm secure ` scans for misconfigurations, ` --fix ` auto-remediates .gitignore issues
462+ - ** Reliability** — Atomic writes, backup/recovery, directory validation, download integrity, 498 tests
459463
460- > Latest release: ** v1.6.1 ** (Doctor Health Score ) — Full version history in [ ROADMAP.md] ( ROADMAP.md )
464+ > Latest release: ** v1.6.2 ** (Security Scan ) — Full version history in [ ROADMAP.md] ( ROADMAP.md )
461465
462466### 💡 Future Ideas
463467- [ ] ` pm run-all ` / ` pm build-all ` - Execute commands across all projects
0 commit comments