Skip to content

Commit f8c2a16

Browse files
committed
docs: update BrowserTrace canonical repository links
1 parent e9bef74 commit f8c2a16

7 files changed

Lines changed: 22 additions & 22 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export, or integrate with real agent frameworks.
99
## Development Setup
1010

1111
```bash
12-
git clone https://github.com/aaronagent/browsertrace
12+
git clone https://github.com/aaronlab/browsertrace
1313
cd browsertrace
1414
uv run --python 3.11 --extra dev pytest -q
1515
```

LAUNCH.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ model I/O, URL). Open localhost → see exactly where it broke.
2424
2525
Works with Browser Use, Playwright, anything.
2626
27-
github.com/aaronagent/browsertrace
27+
github.com/aaronlab/browsertrace
2828
[GIF]
2929
```
3030

@@ -40,7 +40,7 @@ So I built BrowserTrace.
4040
Find the bug in 30 seconds, not 30 minutes.
4141
4242
Free, OSS, runs locally.
43-
github.com/aaronagent/browsertrace
43+
github.com/aaronlab/browsertrace
4444
[GIF]
4545
```
4646

@@ -53,7 +53,7 @@ Screenshots: gone. DOM: changed. Logs: useless.
5353
BrowserTrace records every step the agent took.
5454
Replay it like a debugger.
5555
56-
OSS, 1-line setup. github.com/aaronagent/browsertrace
56+
OSS, 1-line setup. github.com/aaronlab/browsertrace
5757
[GIF]
5858
```
5959

@@ -81,7 +81,7 @@ log 一堆乱七八糟,截图没存,浏览器关了。
8181
8282
完全开源,本地跑,不上云。
8383
84-
GitHub:aaronagent/browsertrace
84+
GitHub:aaronlab/browsertrace
8585
(首页星标更新中)
8686
8787
#AIagent #browseruse #开发者工具 #开源
@@ -97,7 +97,7 @@ agent 挂了不知道为什么的痛,应该懂。
9797
装一行 Python decorator → 每步自动录截图 + action + LLM 输入输出 →
9898
本地 web UI 1 分钟看清楚挂在哪。
9999
100-
github.com/aaronagent/browsertrace
100+
github.com/aaronlab/browsertrace
101101
102102
求 star 求 issue 求骂🙏
103103
```
@@ -136,7 +136,7 @@ broader generic observability stacks (Laminar). I wanted the smallest
136136
useful thing for the specific "my browser agent failed, what happened"
137137
loop, so I built it.
138138
139-
Repo: https://github.com/aaronagent/browsertrace
139+
Repo: https://github.com/aaronlab/browsertrace
140140
141141
Roadmap: AI root-cause classification, public share links (Loom-style),
142142
replay-from-step-N, regression-test generation. Happy to take feedback on
@@ -153,7 +153,7 @@ priorities.
153153
BrowserTrace —— agent 挂了,1 分钟找到挂在哪一步。
154154
开源、本地、装一行代码。
155155
156-
github.com/aaronagent/browsertrace
156+
github.com/aaronlab/browsertrace
157157
158158
求各位试试,bug 反馈直接私我或 issue。
159159
```

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ computer-use agents.
2222

2323
```bash
2424
# SDK only
25-
pip install git+https://github.com/aaronagent/browsertrace
25+
pip install git+https://github.com/aaronlab/browsertrace
2626

2727
# SDK + local web UI
28-
pip install "browsertrace[ui] @ git+https://github.com/aaronagent/browsertrace"
28+
pip install "browsertrace[ui] @ git+https://github.com/aaronlab/browsertrace"
2929
```
3030

3131
## See a failure trace in 60 seconds
3232

3333
```bash
34-
git clone https://github.com/aaronagent/browsertrace
34+
git clone https://github.com/aaronlab/browsertrace
3535
cd browsertrace
3636
pip install -e ".[ui]"
3737
python examples/no_api_failure_demo.py
@@ -225,7 +225,7 @@ for teams that need:
225225
- **Multi-run regression detection** — "this DOM changed since last passing run"
226226
- **Team workspaces, comments, retention beyond a single laptop**
227227

228-
If you want it, **[open an issue with the `cloud-interest` label](https://github.com/aaronagent/browsertrace/issues/new?title=Cloud+interest:+%5Byour+use+case%5D&labels=cloud-interest)** describing your agent setup and team size. Pricing will likely be:
228+
If you want it, **[open an issue with the `cloud-interest` label](https://github.com/aaronlab/browsertrace/issues/new?title=Cloud+interest:+%5Byour+use+case%5D&labels=cloud-interest)** describing your agent setup and team size. Pricing will likely be:
229229

230230
| Tier | Price | For |
231231
|---|---:|---|

browsertrace/templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ <h1>Runs</h1>
6565
my_agent("hello world")</pre>
6666
<p>Then refresh this page. Or run the bundled demo:</p>
6767
<pre>python examples/multipage_failure.py</pre>
68-
<p>Full docs: <a href="https://github.com/aaronagent/browsertrace#readme" target="_blank">github.com/aaronagent/browsertrace</a></p>
68+
<p>Full docs: <a href="https://github.com/aaronlab/browsertrace#readme" target="_blank">github.com/aaronlab/browsertrace</a></p>
6969
{% endif %}
7070
</div>
7171
{% endif %}

docs/superpowers/plans/2026-05-09-browsertrace-launch-readiness.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -362,16 +362,16 @@ computer-use agents.
362362

363363
```bash
364364
# SDK only
365-
pip install git+https://github.com/aaronagent/browsertrace
365+
pip install git+https://github.com/aaronlab/browsertrace
366366

367367
# SDK + local web UI
368-
pip install "browsertrace[ui] @ git+https://github.com/aaronagent/browsertrace"
368+
pip install "browsertrace[ui] @ git+https://github.com/aaronlab/browsertrace"
369369
```
370370

371371
## See a failure trace in 60 seconds
372372

373373
```bash
374-
git clone https://github.com/aaronagent/browsertrace
374+
git clone https://github.com/aaronlab/browsertrace
375375
cd browsertrace
376376
pip install -e ".[ui]"
377377
python examples/no_api_failure_demo.py
@@ -608,7 +608,7 @@ git status --short
608608
Run:
609609

610610
```bash
611-
gh repo view aaronagent/browsertrace --json name,owner,visibility,stargazerCount,repositoryTopics,licenseInfo
611+
gh repo view aaronlab/browsertrace --json name,owner,visibility,stargazerCount,repositoryTopics,licenseInfo
612612
```
613613

614614
Expected audit interpretation:

docs/superpowers/specs/2026-05-09-browsertrace-1000-star-design.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# BrowserTrace 1000-Star Design
22

33
Date: 2026-05-09
4-
Project: `aaronagent/browsertrace`
4+
Project: `aaronlab/browsertrace`
55
Goal owner: aaronagent
66

77
## Objective
@@ -10,7 +10,7 @@ Build BrowserTrace into an AI-related open-source project that can credibly
1010
reach more than 1000 GitHub stars.
1111

1212
The final objective is only complete when an actual GitHub star count check
13-
shows `aaronagent/browsertrace` has more than 1000 stars. Engineering work,
13+
shows `aaronlab/browsertrace` has more than 1000 stars. Engineering work,
1414
launch assets, releases, tests, and distribution are necessary supporting
1515
artifacts, but none of them are completion proof by themselves.
1616

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ dev = [
4141
]
4242

4343
[project.urls]
44-
Homepage = "https://github.com/aaronagent/browsertrace"
45-
Repository = "https://github.com/aaronagent/browsertrace"
46-
Issues = "https://github.com/aaronagent/browsertrace/issues"
44+
Homepage = "https://github.com/aaronlab/browsertrace"
45+
Repository = "https://github.com/aaronlab/browsertrace"
46+
Issues = "https://github.com/aaronlab/browsertrace/issues"
4747

4848
[project.scripts]
4949
browsertrace = "browsertrace.cli:main"

0 commit comments

Comments
 (0)