depwire-cli 0.9.15 → 0.9.16
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 +35 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -181,6 +181,41 @@ Settings → Features → Experimental → Enable MCP → Add Server:
|
|
|
181
181
|
| `find_dead_code` | Find dead code — symbols defined but never referenced |
|
|
182
182
|
| `get_temporal_graph` | Show how the graph evolved over git history |
|
|
183
183
|
|
|
184
|
+
## GitHub Action — PR Impact Analysis
|
|
185
|
+
|
|
186
|
+
Depwire integrates directly into your CI/CD pipeline via the [depwire-action](https://github.com/depwire/depwire-action) GitHub Action.
|
|
187
|
+
|
|
188
|
+
On every pull request, it automatically:
|
|
189
|
+
- Analyzes which symbols and files are affected by the changes
|
|
190
|
+
- Posts a dependency impact report as a PR comment
|
|
191
|
+
- Shows added, removed, and changed dependencies
|
|
192
|
+
- Helps reviewers understand the architectural blast radius before merging
|
|
193
|
+
|
|
194
|
+
### Usage
|
|
195
|
+
|
|
196
|
+
Add this to `.github/workflows/depwire.yml`:
|
|
197
|
+
```yaml
|
|
198
|
+
name: Depwire PR Impact
|
|
199
|
+
on:
|
|
200
|
+
pull_request:
|
|
201
|
+
branches: [main]
|
|
202
|
+
|
|
203
|
+
jobs:
|
|
204
|
+
impact:
|
|
205
|
+
runs-on: ubuntu-latest
|
|
206
|
+
steps:
|
|
207
|
+
- uses: actions/checkout@v4
|
|
208
|
+
with:
|
|
209
|
+
fetch-depth: 0
|
|
210
|
+
- uses: depwire/depwire-action@v1
|
|
211
|
+
with:
|
|
212
|
+
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
### Links
|
|
216
|
+
- [GitHub Marketplace](https://github.com/marketplace/actions/depwire-pr-impact)
|
|
217
|
+
- [depwire-action repository](https://github.com/depwire/depwire-action)
|
|
218
|
+
|
|
184
219
|
## Supported Languages
|
|
185
220
|
|
|
186
221
|
| 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.16",
|
|
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": {
|