@hyperlogue/r3 0.5.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/README.md +12 -7
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -11,6 +11,11 @@
|
|
|
11
11
|
<a href="https://hyperlogue.github.io/r3/demo/"><img src="https://img.shields.io/badge/live-demo-6164ff?logo=googlechrome&logoColor=white" alt="live demo"></a>
|
|
12
12
|
</p>
|
|
13
13
|
|
|
14
|
+
<p align="center">
|
|
15
|
+
<img alt="r3_cc" src="https://github.com/user-attachments/assets/ba85f5a2-e244-4a04-b673-22cb88694c2b" width="49.6%">
|
|
16
|
+
<img alt="r3_web" src="https://github.com/user-attachments/assets/4b99a128-3484-44ce-a727-8d72a3dc532b" width="42.4%">
|
|
17
|
+
</p>
|
|
18
|
+
|
|
14
19
|
<p align="center">
|
|
15
20
|
<a href="https://hyperlogue.github.io/r3/demo/"><b>▶ Try the live demo</b></a> — the full UI, running entirely in your browser.
|
|
16
21
|
</p>
|
|
@@ -19,12 +24,12 @@ r3 is a review tool for the diffs and docs produced by your coding agents, runni
|
|
|
19
24
|
locally with a web interface. You leave feedback pinned to the exact line or
|
|
20
25
|
quote it's about, and track each comment to resolution.
|
|
21
26
|
|
|
22
|
-
r3 fills a gap
|
|
23
|
-
you want to fix a handful of
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
locally.
|
|
27
|
+
r3 fills a gap that chat boxes can’t. Say your agent writes a long planning
|
|
28
|
+
document and you want to fix a handful of issues. In chat, you have to copy and
|
|
29
|
+
paste each passage, explain your feedback, and then keep track of what has or
|
|
30
|
+
hasn’t been addressed across multiple turns. r3 replaces that linear,
|
|
31
|
+
unstructured stream with a workflow modeled on the code review tools you already
|
|
32
|
+
know—built specifically for you and your agents, and running entirely locally.
|
|
28
33
|
|
|
29
34
|
<div align="center">
|
|
30
35
|
<video src="https://github.com/user-attachments/assets/0c1aefaf-0229-49e7-a4dc-e660dc0214f6" width="760" muted controls></video>
|
|
@@ -32,7 +37,7 @@ locally.
|
|
|
32
37
|
|
|
33
38
|
## Workflow
|
|
34
39
|
|
|
35
|
-
|
|
40
|
+
r3 offers a tight, copy-paste-free review loop between you and an agent.
|
|
36
41
|
|
|
37
42
|
```mermaid
|
|
38
43
|
sequenceDiagram
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hyperlogue/r3",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "Review. Revise. Resolve. — a local-first review tool for AI-generated code and docs. Runs the matching prebuilt native r3 binary (shipped as a per-platform optional dependency); works with `bunx @hyperlogue/r3` and `npx @hyperlogue/r3`.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
"launch.mjs"
|
|
18
18
|
],
|
|
19
19
|
"optionalDependencies": {
|
|
20
|
-
"@hyperlogue/r3-darwin-arm64": "0.
|
|
21
|
-
"@hyperlogue/r3-darwin-x64": "0.
|
|
22
|
-
"@hyperlogue/r3-linux-x64": "0.
|
|
23
|
-
"@hyperlogue/r3-linux-arm64": "0.
|
|
20
|
+
"@hyperlogue/r3-darwin-arm64": "0.7.0",
|
|
21
|
+
"@hyperlogue/r3-darwin-x64": "0.7.0",
|
|
22
|
+
"@hyperlogue/r3-linux-x64": "0.7.0",
|
|
23
|
+
"@hyperlogue/r3-linux-arm64": "0.7.0"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": ">=18"
|