depwire-cli 1.0.0 → 1.0.4
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 +22 -3
- package/dist/{chunk-IYKS66CG.js → chunk-7HLVFIVW.js} +2087 -162
- package/dist/{chunk-5BQLGAUL.js → chunk-JPDK7SOI.js} +10 -7
- package/dist/index.js +2 -2
- package/dist/mcpb-entry.js +2 -2
- package/dist/parser/grammars/tree-sitter-cpp.wasm +0 -0
- package/dist/parser/grammars/tree-sitter-java.wasm +0 -0
- package/dist/sdk.js +1 -1
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -11,6 +11,20 @@
|
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
14
|
+
<div align="center">
|
|
15
|
+
|
|
16
|
+

|
|
17
|
+

|
|
18
|
+

|
|
19
|
+

|
|
20
|
+

|
|
21
|
+

|
|
22
|
+

|
|
23
|
+

|
|
24
|
+

|
|
25
|
+
|
|
26
|
+
</div>
|
|
27
|
+
|
|
14
28
|
**Your AI doesn't know your architecture. Depwire does.**
|
|
15
29
|
|
|
16
30
|
Depwire is the infrastructure layer between your AI coding assistant and your codebase. Before your AI touches a single file, Depwire has already mapped every connection, scored every risk, and simulated every change.
|
|
@@ -294,7 +308,13 @@ The SDK is the stable public API surface. All integrations should import from `d
|
|
|
294
308
|
|
|
295
309
|
## Language support
|
|
296
310
|
|
|
297
|
-
TypeScript, JavaScript, Python, Go, Rust, C, C
|
|
311
|
+
TypeScript, JavaScript, Python, Go, Rust, C, C#, Java, C++ — with cross-language edge detection between all supported languages.
|
|
312
|
+
|
|
313
|
+
**Java / JVM** — classes, interfaces, enums, records, annotations, inner classes, anonymous classes, lambda expressions, Maven pom.xml and Gradle build file dependency edges, Spring Boot cross-language edges (@GetMapping, @PostMapping, @RequestMapping), JAX-RS / Jakarta EE route detection, Spring WebFlux RouterFunction support.
|
|
314
|
+
|
|
315
|
+
**C# / .NET** — classes, interfaces, records, structs, enums, delegates, file-scoped namespaces, primary constructors, global usings, .csproj ProjectReference and PackageReference edges, ASP.NET Core cross-language edges (attribute routing + Minimal API).
|
|
316
|
+
|
|
317
|
+
**C++ / Systems** — classes, structs, unions, enums, namespaces, concepts, coroutines, C++20 modules, template support with parameter stripping. CMakeLists.txt, Conan, and vcpkg dependency edge parsing. Crow, Drogon, Pistache, and cpp-httplib cross-language route detection. Dead code detection with vtable and template exclusions. Health score checks: circular includes, missing header guards, god classes, raw pointer fields, missing virtual destructors. Security scanner: buffer overflow, format string vulnerability, use-after-free, command injection.
|
|
298
318
|
|
|
299
319
|
---
|
|
300
320
|
|
|
@@ -358,7 +378,7 @@ Block PRs that hurt your architecture:
|
|
|
358
378
|
**Shipped**
|
|
359
379
|
- Arc diagram visualization
|
|
360
380
|
- 17 MCP tools
|
|
361
|
-
- Multi-language support (TypeScript, JavaScript, Python, Go, Rust, C, C
|
|
381
|
+
- Multi-language support (TypeScript, JavaScript, Python, Go, Rust, C, C#, Java, C++)
|
|
362
382
|
- Architecture health score
|
|
363
383
|
- Dead code detection
|
|
364
384
|
- Temporal graph
|
|
@@ -370,7 +390,6 @@ Block PRs that hurt your architecture:
|
|
|
370
390
|
- PR Impact GitHub Action
|
|
371
391
|
|
|
372
392
|
**Coming next**
|
|
373
|
-
- C# / .NET language support
|
|
374
393
|
- AI-suggested refactors
|
|
375
394
|
- VSCode extension
|
|
376
395
|
- Natural language architecture queries
|