reviewflow 3.8.0 → 3.8.1
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 +7 -0
- package/README.md +28 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.8.1](https://github.com/DGouron/review-flow/compare/reviewflow-v3.8.0...reviewflow-v3.8.1) (2026-03-16)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
* **docs:** escape angle bracket placeholders in spec files ([e82ff68](https://github.com/DGouron/review-flow/commit/e82ff688a5ce9e556d01a94369ac14b4598bfa2c))
|
|
14
|
+
|
|
8
15
|
## [3.8.0](https://github.com/DGouron/review-flow/compare/reviewflow-v3.7.0...reviewflow-v3.8.0) (2026-03-16)
|
|
9
16
|
|
|
10
17
|
|
package/README.md
CHANGED
|
@@ -92,9 +92,32 @@ A WebSocket-powered dashboard shows live review progress:
|
|
|
92
92
|
- Phase and agent-level progress bars
|
|
93
93
|
- Running / queued / completed review counts
|
|
94
94
|
- Review history with duration, scores, and error details
|
|
95
|
+
- **Team tab** with developer cards, insights, and AI analysis
|
|
96
|
+
- **Stats section** with canvas charts, score trends, and animated counters
|
|
95
97
|
- Log stream for debugging
|
|
96
98
|
- Auto-reconnection with exponential backoff
|
|
97
99
|
|
|
100
|
+
### Developer & Team Insights
|
|
101
|
+
|
|
102
|
+
The dashboard computes performance insights from your review history — no configuration needed.
|
|
103
|
+
|
|
104
|
+
**Per-developer analysis** across 4 categories:
|
|
105
|
+
|
|
106
|
+
| Category | What it measures |
|
|
107
|
+
|----------|-----------------|
|
|
108
|
+
| Quality | Average score, blocking issues ratio |
|
|
109
|
+
| Responsiveness | Review turnaround time vs team average |
|
|
110
|
+
| Code Volume | Additions/deletions per review |
|
|
111
|
+
| Iteration | First-pass quality rate (reviews without blocking issues) |
|
|
112
|
+
|
|
113
|
+
Each developer gets a **level** (beginner → expert), a **trend** (improving / stable / declining), identified **strengths and weaknesses**, and a title based on their strongest category (Architect, Firefighter, Workhorse, Sentinel, or Balanced).
|
|
114
|
+
|
|
115
|
+
**Team-level analysis** shows top performer, most improved developer, and actionable tips.
|
|
116
|
+
|
|
117
|
+
**AI-powered narrative** (optional): click "Generate AI Insights" to have Claude produce a written analysis with per-developer and team recommendations.
|
|
118
|
+
|
|
119
|
+
Insights are computed from the first 5 reviews onward and persist across sessions.
|
|
120
|
+
|
|
98
121
|
### Follow-Up Reviews
|
|
99
122
|
|
|
100
123
|
When a developer pushes fixes after a review, Claude automatically:
|
|
@@ -210,6 +233,11 @@ For detailed setup, see the **[Quick Start Guide](https://dgouron.github.io/revi
|
|
|
210
233
|
| `/webhooks/github` | POST | GitHub webhook receiver |
|
|
211
234
|
| `/api/reviews` | GET | List reviews |
|
|
212
235
|
| `/api/reviews/cancel/:jobId` | POST | Cancel a running review |
|
|
236
|
+
| `/api/insights?path=` | GET | Developer & team insights |
|
|
237
|
+
| `/api/insights/generate` | POST | Generate AI-powered insights via Claude |
|
|
238
|
+
| `/api/stats/recalculate` | POST | Recalculate stats with optional diff backfill |
|
|
239
|
+
| `/api/version/check` | GET | Check for updates |
|
|
240
|
+
| `/api/version/update` | POST | Trigger self-update |
|
|
213
241
|
| `/ws` | WS | Real-time progress updates |
|
|
214
242
|
|
|
215
243
|
---
|