Plugin directory / Developer / dsh-tool-lens
dsh-tool-lens
Unverified trench-xinxin
What it does
A plugin in the Developer category for DeepSeek Harness.
Unverified — not yet verified
A plugin in the Developer category for DeepSeek Harness. Not yet verified — install and test it yourself.
“Unverified” means our automated CI has not yet installed this plugin. Feature descriptions and version compatibility are the author’s claims. This is not a security audit and not an endorsement of third-party code.
README
DeepSeek Lens (@trench-xinxin/dsh-tool-lens)
English | 简体中文
[](https://github.com/trench-xinxin/dsh-tool-lens/blob/main/LICENSE)
DeepSeek Lens is a high-performance, deterministic AST code graph and architectural analysis tool plugin designed for the DeepSeek Harness agent foundation.
It empowers AI Agents with deep codebase topological awareness, enabling instant module dependency exploration, disambiguated symbol call hierarchies, OOP inheritance tracing, circular dependency audits, architectural coupling metrics, Git diff change impact audits, domain architecture slicing, and full-stack API contract tracking.
⚡ Zero-Config All-in-One Launcher (No Extra Setup Required)
💡 Stand-alone Execution: You do NOT need to pre-install
@deepseek-ai/dsh, nor do you need to start any background Harness services beforehand.
Running the command below will automatically download the runtime, handle port allocation, and launch the complete Web UI with Lens pre-loaded:
# 🚀 Zero-config launch full Web UI (Out of the box)
npx @trench-xinxin/dsh-tool-lens
# Or execute a one-off prompt directly in terminal
npx @trench-xinxin/dsh-tool-lens "Use lens tool to audit circular dependencies in this workspace"
Once launched, your browser can access the Web UI at the indicated local address (e.g. http://127.0.0.1:3080 or http://127.0.0.1:3081).
🌟 Core Features (v2.0)
📦 Module & Dependency Topology (
dependencies)- Precise static analysis of ES and CommonJS
import/exportdeclarations. - Full Re-export Resolution: Supports
export * from './mod'and named aliased re-exports. - Path Mapping: Automatically resolves
tsconfig.jsoncompilerOptions.pathsaliases (e.g.,@/*).
- Precise static analysis of ES and CommonJS
📞 Scope-Disambiguated Call Hierarchies (
call_graph)- Resolves functions, arrow functions, and class member methods.
- 4-Tier Scope Awareness: Prioritizes same-file, explicit imports (
import { fn }), and namespace imports (Mod.fn), completely eliminating false positives from duplicate function names across the workspace. - OOP Heritage Extraction: Extracts
extendsandimplementsrelations for classes and interfaces.
💥 Tiered Refactoring Blast-Radius Analysis (
impact)- Assesses downstream and upstream impact of changing or removing symbols.
- 3-Tier Risk Classification:
- 🔴 Tier 0 Direct Breaking: External callers and direct importers breaking on signature changes.
- 🟡 Tier 1 Internal Cascading: Functions/methods within the same file/class affected by cascade.
- 🔵 Tier 2 Transitive Importers: Upstream modules transitively importing this file.
🔄 Circular Dependency Auditing (
circular)- Tarjan SCC and DFS cycle detection algorithm detects closed loops (e.g.
A -> B -> C -> A). - Outputs full cycle loops and involved file lists to avoid runtime initialization deadlocks.
- Tarjan SCC and DFS cycle detection algorithm detects closed loops (e.g.
🧭 Shortest Call Path Exploration (
action: path)- Bidirectional BFS algorithm traces shortest execution paths and intermediate hops between any two symbols.
🧹 Dead Code & Unused Symbol Audit (
action: unused)- Discovers unreferenced symbols and orphan files with zero afferent callers ($Ca = 0$).
🛡 Architecture Layer Governance (
action: lint)- Enforces architectural boundary rules (e.g.
views/**cannot directly importinfra/**) to prevent layer decay.
- Enforces architectural boundary rules (e.g.
📝 Git Diff Impact & Test Recommender (
action: diff_impact)- Scans uncommitted working tree diffs or commit ranges, traces upstream breaking callers, and recommends targeted regression test suites.
🧩 Domain Architecture Subgraph Slicing (
action: slice)- Extracts compact, high-cohesion domain slices (Ego-Networks) around seed symbols, computing cohesion scores and boundary dependencies.
🌐 Full-Stack Cross-Language API Contracts (
action: api_contracts)- Automatically links frontend HTTP requests (
fetch,axios,request) to backend route controllers (Java Spring, Python FastAPI, Go Gin), forming full-stack end-to-end call graphs.
- Automatically links frontend HTTP requests (
🌍 Polyglot Ecosystem Drivers (
Java / Python / Go / Rust / TS / SFC)- Java (
.java):package, Maven/Gradle paths,class,interface,extends,implements, and class method invocations. - Python (
.py):def,classinheritance,self.method(), and relative/absolute package imports. - Go (
.go):packagescopes,go.modmodule paths, Struct Embedding, and Receiver methods. - Rust (
.rs):modmodules,struct,trait,impl Trait for Struct, and method calls. - Vue 3 & Svelte (
.vue,.svelte): Full support for<script setup>and<template>component references.
- Java (
📄 License
MIT License © 2026 Trench / DeepSeek Lens Contributors.
Install
Install the catalog once, then DeepSeek Harness can find and install any plugin from this site automatically:
dsh plugin add dshbase-catalog Then say "install dsh-tool-lens for me" — your agent finds it in the directory and installs it. Docs: dshbase-catalog · verified packs.
This plugin is GitHub source (not published to npm) — install it straight from the repo:
Web profile:
dsh plugin --profile web add github:trench-xinxin/dsh-tool-lens Headless (CLI) profile:
dsh plugin --profile headless add github:trench-xinxin/dsh-tool-lens Test report
Not yet L3-verified — see failure note below if we already ran it.