infynon 0.2.0-beta.6.3 → 0.2.0-beta.6.5

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 (2) hide show
  1. package/README.md +9 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,15 +1,15 @@
1
1
  # INFYNON
2
2
 
3
- **Network Firewall & Dependency Security Manager**
3
+ **🔥 Stop installing vulnerable dependencies blindly**
4
4
 
5
- Real-time reverse proxy WAF with TUI dashboard + pre-install CVE verification for 14 ecosystems.
5
+ A security-first CLI: pre-install CVE scanner for 14 ecosystems + reverse proxy WAF for your backend.
6
6
 
7
7
  [![npm](https://img.shields.io/npm/v/infynon?style=flat-square&logo=npm)](https://www.npmjs.com/package/infynon)
8
8
  [![License: MIT](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/d4rkNinja/infynon-cli/blob/main/LICENSE)
9
9
  [![GitHub](https://img.shields.io/badge/source-GitHub-black?style=flat-square&logo=github)](https://github.com/d4rkNinja/infynon-cli)
10
10
 
11
- > AI generates code, installs packages you don't know what's compromised.
12
- > **INFYNON catches it before it touches your system.**
11
+ > ⚠️ AI installs packages. You don't verify them. That's the risk.
12
+ > **INFYNON fixes that — blocks threats before they reach your system.**
13
13
 
14
14
  ---
15
15
 
@@ -57,8 +57,11 @@ infynon pkg fix --auto
57
57
  # Deep audit with full dependency tree
58
58
  infynon pkg audit
59
59
 
60
- # Strict mode fail build on any vulnerability (great for CI)
61
- infynon pkg --strict npm install express
60
+ # CI / non-interactive flags (no prompts)
61
+ infynon pkg npm install express --strict high # fail build on critical/high
62
+ infynon pkg npm install express --auto-fix # auto-upgrade to safe versions
63
+ infynon pkg npm install express --skip-vulnerable # skip bad packages silently
64
+ infynon pkg npm install express --yes # install everything (audit-only CI)
62
65
  ```
63
66
 
64
67
  **Ecosystems:** npm · yarn · pnpm · bun · pip · uv · poetry · cargo · go · gem · composer · nuget · hex · pub
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "infynon",
3
- "version": "0.2.0-beta.6.3",
3
+ "version": "0.2.0-beta.6.5",
4
4
  "description": "Universal package security manager & network firewall — intercepts installs across npm, pip, cargo, go, gem and more with 3-layer CVE verification, plus a real-time reverse proxy WAF with TUI dashboard",
5
5
  "bin": {
6
6
  "infynon": "./run.js",