depwire-cli 0.9.15 → 0.9.17
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 +41 -20
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,25 +1,11 @@
|
|
|
1
1
|
# Depwire
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
</a>
|
|
10
|
-
<a href="https://glama.ai/mcp/servers/depwire/depwire">
|
|
11
|
-
<img src="https://glama.ai/mcp/servers/depwire/depwire/badges/score.svg" alt="depwire/depwire MCP server" />
|
|
12
|
-
</a>
|
|
13
|
-
<a href="LICENSE">
|
|
14
|
-
<img src="https://img.shields.io/badge/license-BUSL--1.1-blue.svg?style=flat-square" alt="License" />
|
|
15
|
-
</a>
|
|
16
|
-
<a href="https://github.com/depwire/depwire/stargazers">
|
|
17
|
-
<img src="https://img.shields.io/github/stars/depwire/depwire.svg?style=flat-square" alt="GitHub stars" />
|
|
18
|
-
</a>
|
|
19
|
-
<a href="https://github.com/depwire/depwire/network/members">
|
|
20
|
-
<img src="https://img.shields.io/github/forks/depwire/depwire.svg?style=flat-square" alt="GitHub forks" />
|
|
21
|
-
</a>
|
|
22
|
-
</p>
|
|
3
|
+
[](https://www.npmjs.com/package/depwire-cli)
|
|
4
|
+
[](https://www.npmjs.com/package/depwire-cli)
|
|
5
|
+
[](https://glama.ai/mcp/servers/depwire/depwire)
|
|
6
|
+
[](LICENSE)
|
|
7
|
+
[](https://github.com/depwire/depwire/stargazers)
|
|
8
|
+
[](https://github.com/depwire/depwire/network/members)
|
|
23
9
|
|
|
24
10
|

|
|
25
11
|
|
|
@@ -181,6 +167,41 @@ Settings → Features → Experimental → Enable MCP → Add Server:
|
|
|
181
167
|
| `find_dead_code` | Find dead code — symbols defined but never referenced |
|
|
182
168
|
| `get_temporal_graph` | Show how the graph evolved over git history |
|
|
183
169
|
|
|
170
|
+
## GitHub Action — PR Impact Analysis
|
|
171
|
+
|
|
172
|
+
Depwire integrates directly into your CI/CD pipeline via the [depwire-action](https://github.com/depwire/depwire-action) GitHub Action.
|
|
173
|
+
|
|
174
|
+
On every pull request, it automatically:
|
|
175
|
+
- Analyzes which symbols and files are affected by the changes
|
|
176
|
+
- Posts a dependency impact report as a PR comment
|
|
177
|
+
- Shows added, removed, and changed dependencies
|
|
178
|
+
- Helps reviewers understand the architectural blast radius before merging
|
|
179
|
+
|
|
180
|
+
### Usage
|
|
181
|
+
|
|
182
|
+
Add this to `.github/workflows/depwire.yml`:
|
|
183
|
+
```yaml
|
|
184
|
+
name: Depwire PR Impact
|
|
185
|
+
on:
|
|
186
|
+
pull_request:
|
|
187
|
+
branches: [main]
|
|
188
|
+
|
|
189
|
+
jobs:
|
|
190
|
+
impact:
|
|
191
|
+
runs-on: ubuntu-latest
|
|
192
|
+
steps:
|
|
193
|
+
- uses: actions/checkout@v4
|
|
194
|
+
with:
|
|
195
|
+
fetch-depth: 0
|
|
196
|
+
- uses: depwire/depwire-action@v1
|
|
197
|
+
with:
|
|
198
|
+
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
### Links
|
|
202
|
+
- [GitHub Marketplace](https://github.com/marketplace/actions/depwire-pr-impact)
|
|
203
|
+
- [depwire-action repository](https://github.com/depwire/depwire-action)
|
|
204
|
+
|
|
184
205
|
## Supported Languages
|
|
185
206
|
|
|
186
207
|
| Language | Extensions | Features |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "depwire-cli",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.17",
|
|
4
4
|
"description": "Code cross-reference visualization and AI context engine for TypeScript, JavaScript, Python, Go, Rust, and C. Zero native dependencies — works on Windows, macOS, and Linux.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|