@a9n-shoji/rvw 0.6.0 → 0.7.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 +11 -0
- package/README.md +38 -20
- package/dist/cli.mjs +2 -2
- package/dist/cli.mjs.map +2 -2
- package/dist/web/assets/StructureViewer-CXtsUfYG.js +7 -0
- package/dist/web/assets/{index-D6YvPSBz.css → index-CbUV8NfH.css} +1 -1
- package/dist/web/assets/index-zyXQjX9Z.js +11 -0
- package/dist/web/index.html +2 -2
- package/package.json +1 -1
- package/skills/rvw/SKILL.md +5 -1
- package/skills/rvw-review-compose/SKILL.md +102 -47
- package/skills/rvw-review-compose/agents/openai.yaml +2 -2
- package/skills/rvw-review-compose/references/review-composition.md +200 -48
- package/skills/rvw-structure/SKILL.md +59 -32
- package/skills/rvw-structure/agents/openai.yaml +2 -2
- package/skills/rvw-structure/references/structure-authoring.md +196 -80
- package/skills/rvw-walkthrough/SKILL.md +42 -5
- package/skills/rvw-walkthrough/agents/openai.yaml +2 -2
- package/skills/rvw-walkthrough/references/walkthrough-authoring.md +140 -27
- package/dist/web/assets/StructureViewer-dhpw7G3m.js +0 -7
- package/dist/web/assets/index-k6AcFBgL.js +0 -11
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [0.7.0] - 2026-09-08
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- PR全体の`rvw-review-compose` defaultを、実在fileを1 Nodeずつsource anchorへ結ぶ必須の
|
|
13
|
+
file-map Structureと、必要に応じたWalkthrough・通常Structure・直接code readingのadaptive compositionへ変更
|
|
14
|
+
- `rvw-walkthrough`を具体的な問いからcode確認とmental-model更新を繰り返す読解pathとして明確化し、
|
|
15
|
+
interaction、state、branch等を文章から再構築させる場合は問いに合うMermaid図を標準的に選ぶauthoring guidanceを追加
|
|
16
|
+
- `rvw-structure`に、bounded behavior mapとは別のPR-scoped file responsibility / dependency map用途を追加。
|
|
17
|
+
generic architecture inventory、新しいArtifact kind、schema、Viewer modeは追加しない
|
|
18
|
+
|
|
8
19
|
## [0.6.0] - 2026-09-07
|
|
9
20
|
|
|
10
21
|
### Added
|
package/README.md
CHANGED
|
@@ -152,12 +152,21 @@ lineを誤適用せずlatest全文を表示します。fallbackでは、同じfi
|
|
|
152
152
|
|
|
153
153
|
Walkthrough本文のinline referenceとMermaid node linkは維持しますが、同じ参照を横や下へ列挙する
|
|
154
154
|
`Code references` indexとsidebar上の参照件数は表示しません。そのため、本文linkと、本文中に実在する
|
|
155
|
-
|
|
155
|
+
対応済みnode-like elementへのMermaid bindingのどちらからも使われないreferenceはpublish/update時に
|
|
156
156
|
拒否します。存在しないnode名だけをbindingへ宣言しても使用済みにはなりません。
|
|
157
157
|
|
|
158
158
|
Mermaidの描画はflowchartだけに限定せず、class、sequence、state、ERなどbundled Mermaidが対応する
|
|
159
|
-
記法を受け付けます。code referenceとの要素bindingはflowchart
|
|
160
|
-
|
|
159
|
+
記法を受け付けます。code referenceとの要素bindingはflowchart node、class、sequence participant / actor、
|
|
160
|
+
state、ER entity、architecture serviceをE2Eで保証します。message、transition、relationship、architecture
|
|
161
|
+
edge / groupなどのedge-like elementはbindingできないため、そのclaimの根拠は図の近くのinline referenceで
|
|
162
|
+
開けるようにします。binding IDはWalkthrough全体で共有され、別sourceを開く複数図では別IDを使います。
|
|
163
|
+
|
|
164
|
+
authoringの既定は、具体的な状況と最初のcode入口から始め、一つの問いに必要な小さな説明を得てsourceで
|
|
165
|
+
確かめ、何が分かったかを責務・状態・条件・結果へ位置付け、次の探索理由へつなぐ読解pathです。複数の主体、
|
|
166
|
+
状態、順序、分岐を文章だけから組み立て直す必要がある場合、Mermaidを標準的に使います。flowchartは分岐、
|
|
167
|
+
stateDiagram-v2はstate / lifecycle、sequenceDiagramはinteraction / async順序というように中心の問いから
|
|
168
|
+
図法を選び、必要になった地点へ一問一図の小さな図を置きます。小さな定数や局所条件は図なしの方が明快です。
|
|
169
|
+
図の矢印、状態、順序もsourceについてのclaimであり、renderやbinding成功だけで意味の正しさは保証されません。
|
|
161
170
|
|
|
162
171
|
これはin-app AI chatではありません。説明と図はAgentのclaimで、commit済みcodeが検証対象の正本です。
|
|
163
172
|
Walkthroughにはローカルな版履歴を持たせません。説明全体へのfeedbackはstableなWalkthrough IDへ残るため、
|
|
@@ -168,12 +177,15 @@ Agentは現在内容を読み、同じ`rvw://walkthrough/<uuid>`を更新して
|
|
|
168
177
|
## codeの関係を空間として検証する
|
|
169
178
|
|
|
170
179
|
外部Agentは単一Artifact producerである`rvw-structure` SkillとCLIを使い、PRに関係する一つのboundedな
|
|
171
|
-
behaviorをfactualなcode entrypointからdependency、contract、side effect
|
|
180
|
+
behavior / review questionをfactualなcode entrypointからdependency、contract、side effectへ辿る空間、
|
|
181
|
+
またはPRを理解するためのfile responsibility / dependency mapを提示できます。ファイル地図では実在する
|
|
182
|
+
repository fileを1 Nodeずつfile-level anchorへ結び、Edgeを具体的なsource evidenceで検証します。
|
|
172
183
|
thesis、最初に見るNode、必要な場合だけ2〜12 Node / 1〜16 Edgeのconnected exact-relation backbone、
|
|
173
|
-
stable IDと責務summaryを持つcomprehension regionで説明の意図を表せます。artifactは一つのbounded behavior
|
|
174
|
-
relationを保持し、Viewerはstableな全体像とfocus-relative
|
|
184
|
+
stable IDと責務summaryを持つcomprehension regionで説明の意図を表せます。artifactは一つのbounded behavior、
|
|
185
|
+
review question、またはfile relation setに必要なrelationを保持し、Viewerはstableな全体像とfocus-relativeな
|
|
186
|
+
局所lensを往復します。正直なspatial organizerがない場合も、意味のある
|
|
175
187
|
thesisとattention startだけを提示できます。順序とprose自体がartifactならWalkthroughです。
|
|
176
|
-
|
|
188
|
+
PRへ接地しない静的なarchitecture/責務inventoryやrepository全体のimport graphへは広げません。
|
|
177
189
|
|
|
178
190
|
```bash
|
|
179
191
|
rvw structure preview --stdin --json
|
|
@@ -183,7 +195,7 @@ rvw structure update rvw://structure/<uuid> --stdin --json
|
|
|
183
195
|
rvw structure delete rvw://structure/<uuid> --json
|
|
184
196
|
```
|
|
185
197
|
|
|
186
|
-
Structureは一つのexact `sourceOid`、宣言されたtitle / scope、
|
|
198
|
+
Structureは一つのexact `sourceOid`、宣言されたtitle / scope、roleに合うorigin、stableなNode / Edge ID、required nullableな
|
|
187
199
|
`presentation`からなります。presentationはraw座標ではなく、thesis、authorialなattention start、exact factual
|
|
188
200
|
Edgeのunordered setからなる一つのoptionalなconnected primary backbone、stable ID / label / 責務summary /
|
|
189
201
|
重複しないNode membershipを持つcomprehension regionからなるauthorial semanticsです。backboneもregionも持たないstart-only presentationは、
|
|
@@ -210,9 +222,10 @@ region membershipは囲い枠ではなく明示Node IDに
|
|
|
210
222
|
何を寄与するかを伝えます。Region arrayと各`nodeIds`の順序に意味はなく、stable IDでcanonical化されます。
|
|
211
223
|
Region間の関係は別のauthorial graphではなく、member間のdirect factual EdgeからViewerが導出します。
|
|
212
224
|
viewerではHomeでauthorial start(null presentationではorigin)とexact 1-hopを読み、canvas / minimapに残る
|
|
213
|
-
backbone emphasisでcoreの位置を保ちながら、Node
|
|
225
|
+
backbone emphasisでcoreの位置を保ちながら、single clickではcameraを動かさずNodeを選択し、double clickでは
|
|
226
|
+
選択Nodeとexact 1-hopへone-shotでfocusします。1-hop / 2-hop、Region frame、AllをBackで往復できます。
|
|
214
227
|
HomeとRegion frameは対象を確実に見せるためAllへ切り替えます。Region frame中はfocusを維持したままmemberと内部relationを
|
|
215
|
-
full relevanceで読め、Home、Node
|
|
228
|
+
full relevanceで読め、Home、Node selection、depth変更で解除します。Backは直前のview mode / focus / hop depth / framed region / viewportを復元します。
|
|
216
229
|
backbone membershipは固定されたauthorial salience、focus hopは一時的なreviewer attentionとして別に表示します。
|
|
217
230
|
低zoomで省略するdetailもvisible / total件数、minimap、selection、Allから回収でき、pan、zoom、fit、node drag、
|
|
218
231
|
layout resetで探索できます。通常clickでexact sourceを左、
|
|
@@ -292,11 +305,14 @@ rvw-review-compose Skillを使って、https://github.com/owner/repository/pull/
|
|
|
292
305
|
Walkthrough / Structureをおすすめの構成で作ってください。
|
|
293
306
|
```
|
|
294
307
|
|
|
295
|
-
composerはcommit済みcodeと周辺context
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
308
|
+
composerはcommit済みcodeと周辺contextを調査します。PR全体のdefault compositionでは、変更を理解するために
|
|
309
|
+
必要な実在fileの責務と具体的な依存を示すファイル地図Structureを必ず含め、その制約内で総理解コストを
|
|
310
|
+
最小化します。小さなPRなら1 Node / 0 Edgeの地図と直接code readingだけで構いません。意味のあるbehavior
|
|
311
|
+
changeには原則Walkthroughを選び、ownership、state authority、contract等の関係理解に独立した価値があれば、
|
|
312
|
+
ファイル地図とは別の通常Structureも選びます。Walkthroughと通常Structureを常に一組にせず、固定の3 Artifact、
|
|
313
|
+
overview、section template、reading orderも要求しません。recommendation-onlyでは必須地図も未作成briefに留まり、
|
|
314
|
+
権限やtransportが足りなければ未達理由を返します。作成後は通常のAgent responseで、構成理由、推奨される最初の入口、作成または
|
|
315
|
+
更新したURI、ファイル地図に含めた/除外した範囲、意図的に直接code readingへ残した論点を返します。このresponseとcomposer内部の理解単位やbriefは
|
|
300
316
|
永続Artifactではなく、厳密なreview完了planでもありません。ReviewerはWalkthrough、Structure、codeのどこからでも
|
|
301
317
|
入り直せます。
|
|
302
318
|
|
|
@@ -316,14 +332,16 @@ representation rejectionは残ります。
|
|
|
316
332
|
Walkthrough全体へのコメントから説明を改善する場合は、現在内容を取得して同じURIを更新し、重複した
|
|
317
333
|
「改訂版」を追加しません。
|
|
318
334
|
|
|
319
|
-
Structure
|
|
335
|
+
Structureを作る場合は、通常Structureかファイル地図か、behavior / review question、roleに合うorigin候補、scope、含める/除外する関係と、必要なら伝えたいthesis、
|
|
320
336
|
最初に見るNode、connectedなexact factual relation setのprimary backbone、regionを伝えて`rvw-structure` Skillを使います。
|
|
321
|
-
Skillは上位composerを含む明示briefを調査boundaryのauthorityとして一つのbounded
|
|
322
|
-
|
|
337
|
+
Skillは上位composerを含む明示briefを調査boundaryのauthorityとして一つのbounded mapだけを扱い、suggested
|
|
338
|
+
originやrelationを実際のcommit済みcodeから再検証して、labelではなくclaimのidentityとしてstable IDを割り当てます。
|
|
339
|
+
通常Structureはresponsibility等をcode-level Nodeへ分けられます。ファイル地図は同一pathを分割せず、複数fileを
|
|
340
|
+
まとめず、全Nodeをfile-level anchorへ置きます。独立領域を架空Edgeで結ばず、必要ならcomposerが別地図を判断します。
|
|
323
341
|
PR全体の構成や別behaviorのArtifactは自律的に増やしません。順序とprose自体が本質ならWalkthroughを提案し、
|
|
324
|
-
Structureを一本道のstepper
|
|
342
|
+
Structureを一本道のstepperにせず、genericな静的architecture inventoryも作らないrepresentation rejectionは残ります。
|
|
325
343
|
producer authoringの実地評価は
|
|
326
|
-
[Structure producer evaluation](docs/structure-producer-evaluation.md)、composition判断のfresh-context評価は
|
|
344
|
+
[Structure producer evaluation](docs/structure-producer-evaluation.md)、[Walkthrough producer evaluation](docs/walkthrough-producer-evaluation.md)、composition判断のfresh-context評価は
|
|
327
345
|
[Review composition decision evaluation](docs/review-composition-evaluation.md)に記録しています。
|
|
328
346
|
|
|
329
347
|
新規root commentとreplyを継続監視する場合は`rvw-watch-comments` Skillを起動します。全登録PRを
|
package/dist/cli.mjs
CHANGED
|
@@ -18762,7 +18762,7 @@ function parseWalkthroughUri(uri) {
|
|
|
18762
18762
|
}
|
|
18763
18763
|
|
|
18764
18764
|
// src/shared/constants.ts
|
|
18765
|
-
var APP_VERSION = "0.
|
|
18765
|
+
var APP_VERSION = "0.7.0";
|
|
18766
18766
|
var PROTOCOL_VERSION = 5;
|
|
18767
18767
|
var VIEWER_ID_HEADER = "x-rvw-viewer-id";
|
|
18768
18768
|
var VIEWER_OPEN_LEASE_HEADER = "x-rvw-viewer-open-lease";
|
|
@@ -45047,7 +45047,7 @@ function structureAuthoringWarnings(diagnostics) {
|
|
|
45047
45047
|
if (diagnostics.originOutgoingDirectionalLinkCount === 0) {
|
|
45048
45048
|
warnings.push({
|
|
45049
45049
|
code: "STRUCTURE_ORIGIN_NO_OUTGOING_DIRECTIONAL_RELATION",
|
|
45050
|
-
message: "origin has no outgoing unambiguous directed relation; verify that it is the factual
|
|
45050
|
+
message: "origin has no outgoing unambiguous directed relation; verify that it is the factual source-verification start for this Structure. For a behavior Structure, recheck the code entrypoint. For a file map, a terminal, intermediate, or single-file origin may still be valid. Do not change factual relation direction solely to remove this warning."
|
|
45051
45051
|
});
|
|
45052
45052
|
}
|
|
45053
45053
|
if (diagnostics.maxRows >= 8) {
|