sork-queb 1.1.0 → 1.1.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.
Files changed (2) hide show
  1. package/README.md +19 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,7 +4,11 @@ SORK automates your entire vulnerability lifecycle. Three AI agents work in sequ
4
4
 
5
5
  > *"SORK turns every security scan from a to-do list into a done list."*
6
6
 
7
- ---> Made by Bhargav Kalambhe
7
+ ---
8
+
9
+ **Made with ❤️ by [Devbhargav](https://github.com/Atofinite5) - Bhargav Kalambhe**
10
+
11
+ *Empowering developers with AI-driven security automation*
8
12
 
9
13
 
10
14
  ## The Problem
@@ -386,8 +390,10 @@ The verifier. Watches the fix pipeline and confirms vulnerabilities are resolved
386
390
 
387
391
  ### Installation & Setup
388
392
 
393
+ #### Option 1: Global Installation (Recommended)
394
+
389
395
  ```bash
390
- # Install globally
396
+ # Install globally (one-time)
391
397
  npm install -g sork-queb
392
398
 
393
399
  # Initialize in your project
@@ -404,6 +410,17 @@ sork fix
404
410
  sork setup-hooks
405
411
  ```
406
412
 
413
+ #### Option 2: Use npx (No Installation)
414
+
415
+ ```bash
416
+ # Run without installing globally - always latest version
417
+ cd your-project
418
+ npx sork-queb init
419
+ npx sork-queb scan
420
+ npx sork-queb fix
421
+ npx sork-queb setup-hooks
422
+ ```
423
+
407
424
  ### Usage
408
425
 
409
426
  **Run Security Scan:**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sork-queb",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "SORK - Security Orchestration, Remediation & Keeping. Global AI security brain for Node projects with Prettier, ESLint & Zod validation.",
5
5
  "main": "dist/lib/index.js",
6
6
  "types": "dist/lib/index.d.ts",