ucn 3.7.7 → 3.7.8

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 +2 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,6 +5,7 @@ UCN gives AI agents call-graph-level understanding of code. Instead of reading e
5
5
  Designed for large codebases where agents waste context on reading large files. UCN's surgical output means agents spend tokens on reasoning, not on ingesting thousands of lines to find three callers, discourages agents from cutting corners, as without UCN, agents working with large codebases tend to skip parts of the code structure, assuming they have "enough data".
6
6
 
7
7
  Everything runs locally on your machine and nothing leaves your project.
8
+ The ucn mcp is kept light, as all 28 commands ship as a single MCP tool, under 2k tokens total.
8
9
 
9
10
  ---
10
11
 
@@ -43,7 +44,7 @@ Precise answers without reading files.
43
44
  │ $ ucn about myFunc Works standalone, no agent required. │
44
45
  │ │
45
46
  │ 2. MCP Server Any MCP-compatible AI agent connects │
46
- │ $ ucn --mcp and gets 28 commands automatically.
47
+ │ $ ucn --mcp and gets 28 commands automatically.
47
48
  │ │
48
49
  │ 3. Agent Skill Drop-in skill for Claude Code and │
49
50
  │ /ucn about myFunc OpenAI Codex CLI. No server needed. │
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ucn",
3
- "version": "3.7.7",
3
+ "version": "3.7.8",
4
4
  "description": "Universal Code Navigator — AST-based call graph analysis for AI agents. Find callers, trace impact, detect dead code across JS/TS, Python, Go, Rust, Java, and HTML. CLI, MCP server, and agent skill.",
5
5
  "main": "index.js",
6
6
  "bin": {