projscan 1.8.0 → 1.8.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
@@ -5,8 +5,9 @@
5
5
  [![npm version](https://img.shields.io/npm/v/projscan.svg)](https://www.npmjs.com/package/projscan)
6
6
  [![license](https://img.shields.io/npm/l/projscan.svg)](https://github.com/abhiyoheswaran1/projscan/blob/main/LICENSE)
7
7
  [![node](https://img.shields.io/node/v/projscan.svg)](https://nodejs.org)
8
+ [![projscan health](https://img.shields.io/badge/projscan-A-brightgreen)](#quick-start)
8
9
 
9
- **Agent-first code intelligence.** An MCP server that lets AI coding agents (Claude Code, Cursor, Windsurf) query your codebase - with a CLI for humans on the side.
10
+ **Agent-first code intelligence.** An MCP server that lets AI coding agents (Claude Code, Codex, Cursor, Gemini, Windsurf, Cline, Continue, Zed — any MCP-aware client) query your codebase with a CLI for humans on the side.
10
11
 
11
12
  [AI Agent Quick Start](#ai-agent-integration-mcp) · [CLI Quick Start](#quick-start) · [Commands](#commands) · [Full Guide](docs/GUIDE.md) · [Roadmap](docs/ROADMAP.md)
12
13
 
@@ -106,7 +107,7 @@ For a comprehensive walkthrough, see the **[Full Guide](docs/GUIDE.md)**.
106
107
  | `projscan workspace` | *(1.6)* Register sibling repos for cross-repo intelligence (`add` / `list` / `remove`) |
107
108
  | `projscan apply-fix <id>` | *(1.6)* Mechanically execute the safe fix templates with rollback (default dry-run) |
108
109
  | `projscan taint` | *(1.6)* Source-to-sink reachability over the call graph |
109
- | `projscan mcp` | Run as an MCP server for AI coding agents (Claude Code, Cursor, …) |
110
+ | `projscan mcp` | Run as an MCP server for AI coding agents (Claude Code, Codex, Cursor, Gemini, Windsurf, …) |
110
111
 
111
112
  To see all commands and options, run:
112
113
 
@@ -532,6 +533,33 @@ One-liner — adds projscan as an MCP server in the current project:
532
533
  claude mcp add projscan -- npx -y projscan mcp
533
534
  ```
534
535
 
536
+ ### Codex CLI (OpenAI)
537
+
538
+ Add to `~/.codex/config.toml`:
539
+
540
+ ```toml
541
+ [mcp_servers.projscan]
542
+ command = "npx"
543
+ args = ["-y", "projscan", "mcp"]
544
+ ```
545
+
546
+ Restart `codex` and the tool surface (`projscan_graph`, `projscan_review`, …) appears alongside Codex's built-ins.
547
+
548
+ ### Gemini CLI (Google)
549
+
550
+ Add to `~/.gemini/settings.json`:
551
+
552
+ ```json
553
+ {
554
+ "mcpServers": {
555
+ "projscan": {
556
+ "command": "npx",
557
+ "args": ["-y", "projscan", "mcp"]
558
+ }
559
+ }
560
+ }
561
+ ```
562
+
535
563
  ### Cursor
536
564
 
537
565
  Add to `~/.cursor/mcp.json` (global) or `.cursor/mcp.json` (per-project):
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "projscan",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "mcpProtocolVersion": "2025-03-26",
5
- "generatedAt": "2026-05-07T22:25:02.535Z",
5
+ "generatedAt": "2026-05-08T20:06:22.086Z",
6
6
  "toolCount": 27,
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.8.0",
4
+ "version": "1.8.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, C#, Kotlin, Swift, 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) and long-running PR-watch mode (projscan_review_watch), rule-driven fix suggestions + mechanical apply layer with rollback (projscan_apply_fix, projscan_fix_suggest, projscan_explain_issue), source-to-sink taint analysis (projscan_taint) with truncation reporting, transitive blast-radius analysis with cross-repo mode (projscan_impact for files and symbols), cross-repo workspace registration + intelligence (projscan_workspace_graph), per-function semantic search chunks (sub-file embeddings), per-rule confidence + cost-summary analytics (projscan_cost_summary), 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",