depwire-cli 0.8.0 โ†’ 0.9.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
@@ -39,7 +39,7 @@ Depwire analyzes codebases to build a cross-reference graph showing how every fi
39
39
  - ๐Ÿ” **Impact analysis** โ€” "What breaks if I rename this function?" answered precisely
40
40
  - ๐Ÿงน **Dead code detection** โ€” Find symbols that are defined but never referenced, categorized by confidence level
41
41
  - ๐Ÿ‘€ **Live updates** โ€” Graph stays current as you edit code
42
- - ๐ŸŒ **Multi-language** โ€” TypeScript, JavaScript, Python, and Go
42
+ - ๐ŸŒ **Multi-language** โ€” TypeScript, JavaScript, Python, Go, Rust, and C
43
43
 
44
44
  ## Why Depwire?
45
45
 
@@ -177,6 +177,8 @@ Settings โ†’ Features โ†’ Experimental โ†’ Enable MCP โ†’ Add Server:
177
177
  | JavaScript | `.js`, `.jsx`, `.mjs`, `.cjs` | ES modules, CommonJS require(), JSX components |
178
178
  | Python | `.py` | Imports, classes, decorators, inheritance |
179
179
  | Go | `.go` | go.mod resolution, structs, interfaces, methods |
180
+ | Rust | `.rs` | Functions, structs, enums, traits, impl blocks, use declarations |
181
+ | C | `.c`, `.h` | Functions, structs, enums, typedefs, macros, #include directives |
180
182
 
181
183
  ## Visualization
182
184
 
@@ -612,10 +614,26 @@ See [SECURITY.md](SECURITY.md) for full details.
612
614
 
613
615
  ## Roadmap
614
616
 
615
- - [ ] PR Impact Visualization (GitHub Action)
616
- - [ ] Temporal Graph โ€” watch your architecture evolve over git history
617
+ ### โœ… Shipped
618
+ - [x] Arc diagram visualization
619
+ - [x] MCP server (15 tools)
620
+ - [x] Multi-language support (TypeScript, JavaScript, Python, Go, Rust, C)
621
+ - [x] File watching + live refresh
622
+ - [x] Auto-generated documentation (13 documents)
623
+ - [x] Dependency health score (0-100)
624
+ - [x] Dead code detection with confidence scoring
625
+ - [x] Temporal graph โ€” watch your architecture evolve over git history
626
+ - [x] PR Impact GitHub Action (depwire-action v1.0.0)
627
+ - [x] Auto-detect project root (no path needed)
628
+ - [x] WASM migration (Windows support)
629
+
630
+ ### ๐Ÿ”œ Coming Next
631
+ - [ ] New language support (C โ€” community requested)
632
+ - [ ] "What If" simulation โ€” simulate refactors before touching code
617
633
  - [ ] Cross-language edge detection (API routes โ†” frontend calls)
618
- - [ ] Dependency health scoring
634
+ - [ ] Cloud dashboard (first paid feature)
635
+ - [ ] AI-suggested refactors
636
+ - [ ] Natural language architecture queries
619
637
  - [ ] VSCode extension
620
638
 
621
639
  ## Contributing