Skip to content

Commit 57a1f6a

Browse files
wesmclaude
andauthored
Migrate docs/screenshots to roborev-dev/roborev-docs, add simpler install.sh (#71)
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 5b20930 commit 57a1f6a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+96
-96
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
if [ "$GOOS" = "windows" ]; then EXT=".exe"; fi
4444
4545
mkdir -p dist
46-
LDFLAGS="-s -w -X github.com/wesm/roborev/internal/version.Version=v${VERSION}"
46+
LDFLAGS="-s -w -X github.com/roborev-dev/roborev/internal/version.Version=v${VERSION}"
4747
go build -ldflags="$LDFLAGS" -o dist/roborev${EXT} ./cmd/roborev
4848
4949
cd dist

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Makefile for roborev development builds
22

33
VERSION := $(shell git describe --tags --always --dirty 2>/dev/null || echo "dev")
4-
LDFLAGS := -X github.com/wesm/roborev/internal/version.Version=$(VERSION)
4+
LDFLAGS := -X github.com/roborev-dev/roborev/internal/version.Version=$(VERSION)
55

66
.PHONY: build install clean test test-integration test-all postgres-up postgres-down
77

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22

33
Automatic code review for git commits using AI agents (Claude Code, Codex, Gemini, Copilot, OpenCode).
44

5-
![TUI Queue View](docs/screenshots/tui-queue.png)
5+
![TUI Queue View](https://raw.githubusercontent.com/roborev-dev/roborev-docs/main/src/assets/screenshots/tui-queue.png)
66

77
## Installation
88

99
```bash
10-
curl -fsSL https://raw.githubusercontent.com/wesm/roborev/main/scripts/install.sh | bash
10+
curl -fsSL https://roborev.io/install.sh | bash
1111
```
1212

1313
Or with Go:
1414

1515
```bash
16-
go install github.com/wesm/roborev/cmd/roborev@latest
16+
go install github.com/roborev-dev/roborev/cmd/roborev@latest
1717
```
1818

1919
Ensure `$GOPATH/bin` is in your PATH:
@@ -395,7 +395,7 @@ The interactive terminal UI (`roborev tui`) provides a real-time view of the rev
395395

396396
Filter to a single repository with `f`, or hide completed reviews with `h` to focus on items needing attention
397397

398-
<img src="docs/screenshots/tui-filter.png" width="75%" alt="Filter Modal">
398+
<img src="https://raw.githubusercontent.com/roborev-dev/roborev-docs/main/src/assets/screenshots/tui-filter.png" width="75%" alt="Filter Modal">
399399

400400
**Review/Prompt View:**
401401

@@ -410,7 +410,7 @@ Filter to a single repository with `f`, or hide completed reviews with `h` to fo
410410

411411
Reviews display a **Verdict** (Pass/Fail) parsed from the AI response, with color coding for quick triage.
412412

413-
<img src="docs/screenshots/tui-review.png" width="75%" alt="Review View">
413+
<img src="https://raw.githubusercontent.com/roborev-dev/roborev-docs/main/src/assets/screenshots/tui-review.png" width="75%" alt="Review View">
414414

415415
## Streaming Events
416416

@@ -543,7 +543,7 @@ The sync will never be left in an inconsistent state where it thinks data was sy
543543
## Development
544544

545545
```bash
546-
git clone https://github.com/wesm/roborev
546+
git clone https://github.com/roborev-dev/roborev
547547
cd roborev
548548
go test ./...
549549
make install # Installs with version info (e.g., v0.7.0-5-gabcdef)

cmd/roborev/client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"testing"
1212
"time"
1313

14-
"github.com/wesm/roborev/internal/storage"
14+
"github.com/roborev-dev/roborev/internal/storage"
1515
)
1616

1717
func TestGetResponsesForJob(t *testing.T) {

cmd/roborev/main.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ import (
2323
"time"
2424

2525
"github.com/spf13/cobra"
26-
"github.com/wesm/roborev/internal/config"
27-
"github.com/wesm/roborev/internal/daemon"
28-
"github.com/wesm/roborev/internal/git"
29-
"github.com/wesm/roborev/internal/skills"
30-
"github.com/wesm/roborev/internal/storage"
31-
"github.com/wesm/roborev/internal/update"
32-
"github.com/wesm/roborev/internal/version"
26+
"github.com/roborev-dev/roborev/internal/config"
27+
"github.com/roborev-dev/roborev/internal/daemon"
28+
"github.com/roborev-dev/roborev/internal/git"
29+
"github.com/roborev-dev/roborev/internal/skills"
30+
"github.com/roborev-dev/roborev/internal/storage"
31+
"github.com/roborev-dev/roborev/internal/update"
32+
"github.com/roborev-dev/roborev/internal/version"
3333
)
3434

3535
var (

cmd/roborev/main_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ import (
2323
"testing"
2424
"time"
2525

26-
"github.com/wesm/roborev/internal/agent"
27-
"github.com/wesm/roborev/internal/daemon"
28-
"github.com/wesm/roborev/internal/storage"
29-
"github.com/wesm/roborev/internal/version"
26+
"github.com/roborev-dev/roborev/internal/agent"
27+
"github.com/roborev-dev/roborev/internal/daemon"
28+
"github.com/roborev-dev/roborev/internal/storage"
29+
"github.com/roborev-dev/roborev/internal/version"
3030
)
3131

3232
// ============================================================================

cmd/roborev/prompt.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import (
1212
"time"
1313

1414
"github.com/spf13/cobra"
15-
"github.com/wesm/roborev/internal/config"
16-
"github.com/wesm/roborev/internal/git"
17-
"github.com/wesm/roborev/internal/storage"
15+
"github.com/roborev-dev/roborev/internal/config"
16+
"github.com/roborev-dev/roborev/internal/git"
17+
"github.com/roborev-dev/roborev/internal/storage"
1818
)
1919

2020
func promptCmd() *cobra.Command {

cmd/roborev/prompt_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"time"
1313

1414
"github.com/spf13/cobra"
15-
"github.com/wesm/roborev/internal/storage"
15+
"github.com/roborev-dev/roborev/internal/storage"
1616
)
1717

1818
func TestBuildPromptWithContext(t *testing.T) {

cmd/roborev/refine.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ import (
1616

1717
"github.com/mattn/go-isatty"
1818
"github.com/spf13/cobra"
19-
"github.com/wesm/roborev/internal/agent"
20-
"github.com/wesm/roborev/internal/config"
21-
"github.com/wesm/roborev/internal/daemon"
22-
"github.com/wesm/roborev/internal/git"
23-
"github.com/wesm/roborev/internal/prompt"
24-
"github.com/wesm/roborev/internal/storage"
19+
"github.com/roborev-dev/roborev/internal/agent"
20+
"github.com/roborev-dev/roborev/internal/config"
21+
"github.com/roborev-dev/roborev/internal/daemon"
22+
"github.com/roborev-dev/roborev/internal/git"
23+
"github.com/roborev-dev/roborev/internal/prompt"
24+
"github.com/roborev-dev/roborev/internal/storage"
2525
)
2626

2727
// postCommitWaitDelay is the delay after creating a commit before checking

cmd/roborev/refine_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import (
88
"strings"
99
"testing"
1010

11-
"github.com/wesm/roborev/internal/agent"
12-
"github.com/wesm/roborev/internal/config"
13-
"github.com/wesm/roborev/internal/daemon"
14-
"github.com/wesm/roborev/internal/storage"
11+
"github.com/roborev-dev/roborev/internal/agent"
12+
"github.com/roborev-dev/roborev/internal/config"
13+
"github.com/roborev-dev/roborev/internal/daemon"
14+
"github.com/roborev-dev/roborev/internal/storage"
1515
)
1616

1717
// mockDaemonClient is a test implementation of daemon.Client

0 commit comments

Comments
 (0)