projscan 1.2.0 → 1.2.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.
package/README.md CHANGED
@@ -38,7 +38,7 @@ Run `projscan doctor` for a focused health check:
38
38
  npx projscan doctor
39
39
  ```
40
40
 
41
- <img src="docs/npx%20projscan%20doctor.png" alt="npx projscan doctor" width="700">
41
+ <img src="docs/npx%20projscan%20doctor.gif" alt="npx projscan doctor" width="700">
42
42
 
43
43
  ## Install
44
44
 
@@ -76,7 +76,7 @@ projscan structure # Directory tree
76
76
  projscan mcp # Run as an MCP server for AI coding agents
77
77
  ```
78
78
 
79
- <img src="docs/npx%20projscan%20--help.png" alt="npx projscan --help" width="700">
79
+ <img src="docs/npx%20projscan%20--help.gif" alt="npx projscan --help" width="700">
80
80
 
81
81
  For a comprehensive walkthrough, see the **[Full Guide](docs/GUIDE.md)**.
82
82
 
@@ -114,31 +114,31 @@ projscan --help
114
114
  <details>
115
115
  <summary><strong>projscan structure</strong> - Directory tree with file counts</summary>
116
116
 
117
- <img src="docs/npx%20projscan%20structure.png" alt="npx projscan structure" width="700">
117
+ <img src="docs/npx%20projscan%20structure.gif" alt="npx projscan structure" width="700">
118
118
  </details>
119
119
 
120
120
  <details>
121
121
  <summary><strong>projscan diagram</strong> - Architecture visualization</summary>
122
122
 
123
- <img src="docs/npx%20projscan%20diagram.png" alt="npx projscan diagram" width="700">
123
+ <img src="docs/npx%20projscan%20diagram.gif" alt="npx projscan diagram" width="700">
124
124
  </details>
125
125
 
126
126
  <details>
127
127
  <summary><strong>projscan dependencies</strong> - Dependency analysis</summary>
128
128
 
129
- <img src="docs/npx%20projscan%20dependencies.png" alt="npx projscan dependencies" width="700">
129
+ <img src="docs/npx%20projscan%20dependencies.gif" alt="npx projscan dependencies" width="700">
130
130
  </details>
131
131
 
132
132
  <details>
133
133
  <summary><strong>projscan explain</strong> - File explanation</summary>
134
134
 
135
- <img src="docs/npx%20projscan%20explain.png" alt="npx projscan explain" width="700">
135
+ <img src="docs/npx%20projscan%20explain.gif" alt="npx projscan explain" width="700">
136
136
  </details>
137
137
 
138
138
  <details>
139
139
  <summary><strong>projscan badge</strong> - Health badge generation</summary>
140
140
 
141
- <img src="docs/npx%20projscan%20badge.png" alt="npx projscan badge" width="700">
141
+ <img src="docs/npx%20projscan%20badge.gif" alt="npx projscan badge" width="700">
142
142
  </details>
143
143
 
144
144
  ### Output Formats
@@ -344,7 +344,7 @@ projscan ci --changed-only # Gate only on this PR's diff
344
344
  projscan ci --format sarif > projscan.sarif # SARIF for Code Scanning
345
345
  ```
346
346
 
347
- <img src="docs/npx%20projscan%20ci%20--min-score%2070.png" alt="npx projscan ci --min-score 70" width="700">
347
+ <img src="docs/npx%20projscan%20ci%20--min-score%2070.gif" alt="npx projscan ci --min-score 70" width="700">
348
348
 
349
349
  ### GitHub Action (recommended)
350
350
 
@@ -426,7 +426,7 @@ projscan diff # Compare against baseline
426
426
  projscan diff --format markdown # Markdown diff for PRs
427
427
  ```
428
428
 
429
- <img src="docs/npx%20projscan%20diff%20--save-baseline.png" alt="npx projscan diff --save-baseline" width="700">
429
+ <img src="docs/npx%20projscan%20diff%20--save-baseline.gif" alt="npx projscan diff --save-baseline" width="700">
430
430
 
431
431
  ## Hotspots - Where to Fix First
432
432
 
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "projscan",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "mcpProtocolVersion": "2025-03-26",
5
- "generatedAt": "2026-05-04T22:17:32.216Z",
5
+ "generatedAt": "2026-05-05T03:34:00.203Z",
6
6
  "toolCount": 20,
7
7
  "tools": [
8
8
  {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "projscan",
3
3
  "mcpName": "io.github.abhiyoheswaran1/projscan",
4
- "version": "1.2.0",
4
+ "version": "1.2.1",
5
5
  "description": "Agent-first code intelligence. MCP server (2025-03-26) with AST parsing for JavaScript, TypeScript, Python, Go, Java, Ruby, Rust, PHP, and C#; code graph, file + per-function AST cyclomatic complexity, per-function fan-in + fan-out, coupling + cycle detection, structural PR diff with HTML reporter, coverage report with HTML reporter, one-call PR review (projscan_review), rule-driven fix suggestions (projscan_fix_suggest, projscan_explain_issue) closing the diagnose-fix loop, transitive blast-radius analysis (projscan_impact for files and symbols), per-function semantic search chunks (sub-file embeddings), monorepo workspace awareness with cross-package import policy + per-package dependencies / outdated / audit, BM25 + optional semantic search, cursor pagination, progress notifications, context-budgeted output, and a stable-surface CI guard. CLI on the side.",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",