rust-symbol-analyzer
182
总安装量
182
周安装量
#1463
全站排名
安装命令
npx skills add https://github.com/zhanghandong/rust-skills --skill rust-symbol-analyzer
Agent 安装分布
opencode
148
codex
138
gemini-cli
132
claude-code
125
amp
86
Skill 文档
Rust Symbol Analyzer
Analyze project structure by examining symbols across your Rust codebase.
Usage
/rust-symbol-analyzer [file.rs] [--type struct|trait|fn|mod]
Examples:
/rust-symbol-analyzer– Analyze entire project/rust-symbol-analyzer src/lib.rs– Analyze single file/rust-symbol-analyzer --type trait– List all traits in project
LSP Operations
1. Document Symbols (Single File)
Get all symbols in a file with their hierarchy.
LSP(
operation: "documentSymbol",
filePath: "src/lib.rs",
line: 1,
character: 1
)
Returns: Nested structure of modules, structs, functions, etc.
2. Workspace Symbols (Entire Project)
Search for symbols across the workspace.
LSP(
operation: "workspaceSymbol",
filePath: "src/lib.rs",
line: 1,
character: 1
)
Note: Query is implicit in the operation context.
Workflow
User: "What's the structure of this project?"
â
â¼
[1] Find all Rust files
Glob("**/*.rs")
â
â¼
[2] Get symbols from each key file
LSP(documentSymbol) for lib.rs, main.rs
â
â¼
[3] Categorize by type
â
â¼
[4] Generate structure visualization
Output Format
Project Overview
## Project Structure: my-project
### Modules
âââ src/
â âââ lib.rs (root)
â âââ config/
â â âââ mod.rs
â â âââ parser.rs
â âââ handlers/
â â âââ mod.rs
â â âââ auth.rs
â â âââ api.rs
â âââ models/
â âââ mod.rs
â âââ user.rs
â âââ order.rs
âââ tests/
âââ integration.rs
By Symbol Type
## Symbols by Type
### Structs (12)
| Name | Location | Fields | Derives |
|------|----------|--------|---------|
| Config | src/config.rs:10 | 5 | Debug, Clone |
| User | src/models/user.rs:8 | 4 | Debug, Serialize |
| Order | src/models/order.rs:15 | 6 | Debug, Serialize |
| ... | | | |
### Traits (4)
| Name | Location | Methods | Implementors |
|------|----------|---------|--------------|
| Handler | src/handlers/mod.rs:5 | 3 | AuthHandler, ApiHandler |
| Repository | src/db/mod.rs:12 | 5 | UserRepo, OrderRepo |
| ... | | | |
### Functions (25)
| Name | Location | Visibility | Async |
|------|----------|------------|-------|
| main | src/main.rs:10 | pub | yes |
| parse_config | src/config.rs:45 | pub | no |
| ... | | | |
### Enums (6)
| Name | Location | Variants |
|------|----------|----------|
| Error | src/error.rs:5 | 8 |
| Status | src/models/order.rs:5 | 4 |
| ... | | |
Single File Analysis
## src/handlers/auth.rs
### Symbols Hierarchy
mod auth
âââ struct AuthHandler
â âââ field: config: Config
â âââ field: db: Pool
â âââ impl AuthHandler
â âââ fn new(config, db) -> Self
â âââ fn authenticate(&self, token) -> Result<User>
â âââ fn refresh_token(&self, user) -> Result<Token>
âââ struct Token
â âââ field: value: String
â âââ field: expires: DateTime
âââ enum AuthError
â âââ InvalidToken
â âââ Expired
â âââ Unauthorized
âââ impl Handler for AuthHandler
âââ fn handle(&self, req) -> Response
âââ fn name(&self) -> &str
Analysis Features
Complexity Metrics
## Complexity Analysis
| File | Structs | Functions | Lines | Complexity |
|------|---------|-----------|-------|------------|
| src/handlers/auth.rs | 2 | 8 | 150 | Medium |
| src/models/user.rs | 3 | 12 | 200 | High |
| src/config.rs | 1 | 3 | 50 | Low |
**Hotspots:** Files with high complexity that may need refactoring
- src/handlers/api.rs (15 functions, 300 lines)
Dependency Analysis
## Internal Dependencies
auth.rs
âââ imports from: config.rs, models/user.rs, db/mod.rs
âââ imported by: main.rs, handlers/mod.rs
user.rs
âââ imports from: (none - leaf module)
âââ imported by: auth.rs, api.rs, tests/
Symbol Types
| Type | Icon | LSP Kind |
|---|---|---|
| Module | ð¦ | Module |
| Struct | ðï¸ | Struct |
| Enum | ð¢ | Enum |
| Trait | ð | Interface |
| Function | â¡ | Function |
| Method | ð§ | Method |
| Constant | ð | Constant |
| Field | ð | Field |
Common Queries
| User Says | Analysis |
|---|---|
| “What structs are in this project?” | workspaceSymbol + filter |
| “Show me src/lib.rs structure” | documentSymbol |
| “Find all async functions” | workspaceSymbol + async filter |
| “List public API” | documentSymbol + pub filter |
Related Skills
| When | See |
|---|---|
| Navigate to symbol | rust-code-navigator |
| Call relationships | rust-call-graph |
| Trait implementations | rust-trait-explorer |
| Safe refactoring | rust-refactor-helper |