@a9n-shoji/rvw 0.2.3 → 0.2.4
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 +8 -0
- package/dist/cli.mjs +1 -1
- package/dist/cli.mjs.map +1 -1
- package/package.json +15 -17
- package/skills/rvw-watch-comments/SKILL.md +20 -9
- package/skills/rvw-watch-comments/scripts/auto-ack.mjs +0 -0
- package/skills/rvw-watch-comments/scripts/preflight.mjs +0 -0
- package/skills/rvw-watch-comments/scripts/watch-driver.mjs +0 -0
- package/skills/rvw-watch-comments/scripts/watch-state.mjs +18 -7
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [0.2.4] - 2026-08-24
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- `rvw-watch-comments`のinvestigate-and-reply専用taskで、同じPR/repositoryの後続batchもworker capacity内で
|
|
13
|
+
並列に調査・返信。保証できる場合は`max-in-flight=8`を目標とし、fix-and-pushを許可したtaskだけ従来の
|
|
14
|
+
writer排他を維持
|
|
15
|
+
|
|
8
16
|
## [0.2.3] - 2026-08-21
|
|
9
17
|
|
|
10
18
|
### Added
|
package/dist/cli.mjs
CHANGED
|
@@ -19759,7 +19759,7 @@ import path5 from "node:path";
|
|
|
19759
19759
|
import { TextDecoder as TextDecoder2 } from "node:util";
|
|
19760
19760
|
|
|
19761
19761
|
// src/shared/constants.ts
|
|
19762
|
-
var APP_VERSION = "0.2.
|
|
19762
|
+
var APP_VERSION = "0.2.4";
|
|
19763
19763
|
var PROTOCOL_VERSION = 3;
|
|
19764
19764
|
var VIEWER_ID_HEADER = "x-rvw-viewer-id";
|
|
19765
19765
|
var GIT_OBJECT_ID_PATTERN = /^[0-9a-f]{40,64}$/i;
|