archtracker-mcp 0.1.0 → 0.2.0
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 -0
- package/dist/cli/index.js +627 -98
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +9 -9
- package/dist/index.js +626 -96
- package/dist/index.js.map +1 -1
- package/dist/mcp/index.js +656 -120
- package/dist/mcp/index.js.map +1 -1
- package/package.json +16 -3
- package/scripts/postinstall.cjs +45 -0
- package/scripts/screenshot.mjs +121 -0
package/README.md
CHANGED
|
@@ -88,18 +88,29 @@ archtracker check --target src
|
|
|
88
88
|
The interactive web viewer provides three visualization modes:
|
|
89
89
|
|
|
90
90
|
### Graph View (Force-Directed)
|
|
91
|
+
|
|
92
|
+

|
|
93
|
+
|
|
91
94
|
- Drag, zoom, and click nodes to explore dependencies
|
|
92
95
|
- Click a node to **pin** its highlight — hover other nodes to compare
|
|
93
96
|
- Filter by directory with bottom pills
|
|
94
97
|
- Adjust gravity, node size, font size, link opacity
|
|
95
98
|
- **Impact mode**: click any file to see all transitively affected files
|
|
96
99
|
|
|
100
|
+

|
|
101
|
+
|
|
97
102
|
### Hierarchy View (DAG Layout)
|
|
103
|
+
|
|
104
|
+

|
|
105
|
+
|
|
98
106
|
- Layered top-down layout showing dependency depth
|
|
99
107
|
- Click-to-pin highlighting with detail panel
|
|
100
108
|
- Directory-based color coding with legend
|
|
101
109
|
|
|
102
110
|
### Diff View
|
|
111
|
+
|
|
112
|
+

|
|
113
|
+
|
|
103
114
|
- Color-coded visualization of architecture changes
|
|
104
115
|
- Green = added, Red = removed, Yellow = modified, Blue = affected
|
|
105
116
|
- Available when a snapshot exists for comparison
|
|
@@ -325,18 +336,29 @@ archtracker check --target src
|
|
|
325
336
|
インタラクティブな Web ビューアは3つの可視化モードを提供します:
|
|
326
337
|
|
|
327
338
|
### グラフビュー(力学モデル)
|
|
339
|
+
|
|
340
|
+

|
|
341
|
+
|
|
328
342
|
- ドラッグ、ズーム、クリックでノードの依存関係を探索
|
|
329
343
|
- ノードをクリックでハイライトを**ピン固定** — 他のノードをホバーして比較
|
|
330
344
|
- 下部のピルでディレクトリごとにフィルタリング
|
|
331
345
|
- 重力、ノードサイズ、フォントサイズ、リンク透明度を調整可能
|
|
332
346
|
- **影響モード**: ファイルをクリックして推移的に影響を受ける全ファイルを表示
|
|
333
347
|
|
|
348
|
+

|
|
349
|
+
|
|
334
350
|
### 階層ビュー(DAGレイアウト)
|
|
351
|
+
|
|
352
|
+

|
|
353
|
+
|
|
335
354
|
- 依存の深さを示すレイヤー型トップダウンレイアウト
|
|
336
355
|
- クリックでピン固定 + 詳細パネル
|
|
337
356
|
- ディレクトリベースの色分け + 凡例
|
|
338
357
|
|
|
339
358
|
### 差分ビュー
|
|
359
|
+
|
|
360
|
+

|
|
361
|
+
|
|
340
362
|
- アーキテクチャ変更の色分け可視化
|
|
341
363
|
- 緑=追加、赤=削除、黄=変更、青=影響
|
|
342
364
|
- スナップショットが存在する場合に利用可能
|