@a9n-shoji/rvw 0.4.3 → 0.5.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/CHANGELOG.md +22 -0
- package/README.md +4 -1
- package/dist/cli.mjs +699 -3
- package/dist/cli.mjs.map +4 -4
- package/dist/web/assets/StructureViewer-RiN3cqvU.js +5 -0
- package/dist/web/assets/{index-B0xRoLW2.css → index-CUAdTtdU.css} +1 -1
- package/dist/web/assets/index-D0LsMDeu.js +11 -0
- package/dist/web/index.html +2 -2
- package/package.json +1 -1
- package/skills/rvw-structure/SKILL.md +27 -2
- package/skills/rvw-structure/references/structure-authoring.md +33 -4
- package/dist/web/assets/StructureViewer-EKDvAQ2a.js +0 -5
- package/dist/web/assets/index-DC6BgBp4.js +0 -11
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,28 @@
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [0.5.0] - 2026-09-03
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Structure contentを保存せずcanonical projection、layout diagnostics、authoring warningsを確認できる
|
|
13
|
+
`rvw structure preview --stdin --json`と`structure.preview` protocol capability
|
|
14
|
+
- Structure publish / update成功時に、保存済みgraphから導出したlayout authoring warningを返すfeedback loop
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Structureのinitial projectionをpair-level topologyとSCC layeringを共有する実装へ整理し、terminal / hub originの
|
|
19
|
+
predecessorをnegative rankへ展開。入力順やpresentation contentに依存しないdeterministicなrefinement、diagnostics、
|
|
20
|
+
initial viewportを導入
|
|
21
|
+
- Structure Skillにpublish / update前のcanonical preview、factual entrypointとしてのorigin選択、短いEdge predicate、
|
|
22
|
+
overlapping / nested Node anchorの再検討手順を追加
|
|
23
|
+
- ViewerのEdge labelをgeometryと一致する最大2行へ制限し、SVG / PNG exportでは全文を省略せずwrapして保持
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- terminal originへ入る多数のpredecessorがoriginと同じ左端columnへ潰れ、non-forward relationと縦積みが増える問題
|
|
28
|
+
- Viewer向けEdge labelのellipsisがSVG / PNG exportにも流用され、standalone artifactからrelation全文が失われる回帰
|
|
29
|
+
|
|
8
30
|
## [0.4.3] - 2026-09-02
|
|
9
31
|
|
|
10
32
|
### Fixed
|
package/README.md
CHANGED
|
@@ -164,6 +164,7 @@ dependency、contract、side effectへ辿る空間として提示できます。
|
|
|
164
164
|
entrypointを置けない静的なarchitecture/責務inventoryはStructureへ広げません。
|
|
165
165
|
|
|
166
166
|
```bash
|
|
167
|
+
rvw structure preview --stdin --json
|
|
167
168
|
rvw structure publish --stdin --json
|
|
168
169
|
rvw structure get rvw://structure/<uuid> --json
|
|
169
170
|
rvw structure update rvw://structure/<uuid> --stdin --json
|
|
@@ -173,6 +174,8 @@ rvw structure delete rvw://structure/<uuid> --json
|
|
|
173
174
|
Structureは一つのexact `sourceOid`、宣言されたtitle / scope、entrypoint、stableなNode / Edge IDからなります。
|
|
174
175
|
Nodeは0または1件、Edgeは0件以上のsource anchorを持ち、rvwはcommit、UTF-8 path、line pair、endpoint、
|
|
175
176
|
focus、重複ID、sizeを保存前に検証します。publish / updateはbrowserやnavigationを操作しません。
|
|
177
|
+
publish / update前には同じgraph contentをpreviewし、canonical layout diagnosticsとauthoring warningから
|
|
178
|
+
origin、granularity、behavior / subject boundaryを再確認できます。warningは保存を拒否せず、graphを自動変更しません。
|
|
176
179
|
|
|
177
180
|
viewerではfocusがある時に1-hop / 2-hopへ絞り、Allでは全Node / Edgeを表示します。relationを次数やIDで
|
|
178
181
|
暗黙に隠さず、pan、zoom、fit、node drag、layout resetで探索できます。通常clickでexact sourceを左、
|
|
@@ -261,7 +264,7 @@ queue、retry、batch内のthread単位status post、自己返信抑制をtransa
|
|
|
261
264
|
line rangeへ`rvw-ref:` linkを付け、reviewerが根拠へ直接移動できるようにします。
|
|
262
265
|
|
|
263
266
|
四つのSkillはSQLiteを直接読まず、`rvw protocol --json`、`rvw comment ... --json`、
|
|
264
|
-
`rvw walkthrough get/update/publish/delete ... --json`、`rvw structure get/update/publish/delete ... --json`、
|
|
267
|
+
`rvw walkthrough get/update/publish/delete ... --json`、`rvw structure preview/get/update/publish/delete ... --json`、
|
|
265
268
|
`rvw pr sync --stdin --json`だけを利用します。
|
|
266
269
|
ローカルDBやrepositoryへアクセスできないCloud Agentは対象外です。
|
|
267
270
|
|