|
| 1 | +# BrowserTrace Owner Next Actions |
| 2 | + |
| 3 | +This is the shortest owner-facing checklist. Use it when the repo is ready and |
| 4 | +the owner can perform account/login actions personally. |
| 5 | + |
| 6 | +Do not ask for stars, upvotes, reposts, vote swaps, or artificial engagement. |
| 7 | +Ask for workflow feedback from people building browser agents. |
| 8 | + |
| 9 | +## 1. Unblock PyPI |
| 10 | + |
| 11 | +This is the highest-friction launch blocker. Public posts convert better after |
| 12 | +the install command becomes: |
| 13 | + |
| 14 | +```bash |
| 15 | +pip install "browsertrace[ui]" |
| 16 | +``` |
| 17 | + |
| 18 | +Configure PyPI Trusted Publisher: |
| 19 | + |
| 20 | +| Field | Value | |
| 21 | +|---|---| |
| 22 | +| PyPI project | `browsertrace` | |
| 23 | +| GitHub owner | `aaronlab` | |
| 24 | +| GitHub repository | `browsertrace` | |
| 25 | +| Workflow filename | `publish.yml` | |
| 26 | +| Environment name | `pypi` | |
| 27 | + |
| 28 | +Then run: |
| 29 | + |
| 30 | +```bash |
| 31 | +gh workflow run Publish --repo aaronlab/browsertrace |
| 32 | +``` |
| 33 | + |
| 34 | +Verification after publish: |
| 35 | + |
| 36 | +```bash |
| 37 | +python -m pip index versions browsertrace |
| 38 | +pipx run --spec "browsertrace[ui]" browsertrace --help |
| 39 | +``` |
| 40 | + |
| 41 | +Tracking issue: https://github.com/aaronlab/browsertrace/issues/5 |
| 42 | + |
| 43 | +## 2. Fix The GitHub Profile README |
| 44 | + |
| 45 | +The old public profile README repo is `aaronlab/aaronagent`, which no longer |
| 46 | +matches the renamed account. The profile README should be `aaronlab/aaronlab`. |
| 47 | + |
| 48 | +Use this draft once the profile repository is available: |
| 49 | + |
| 50 | +```text |
| 51 | +docs/launch/github-profile-readme.md |
| 52 | +``` |
| 53 | + |
| 54 | +Keep BrowserTrace as the first featured project during launch. |
| 55 | + |
| 56 | +Tracking issue: https://github.com/aaronlab/browsertrace/issues/13 |
| 57 | + |
| 58 | +## 3. Publish Day 1 Posts |
| 59 | + |
| 60 | +Use this packet: |
| 61 | + |
| 62 | +```text |
| 63 | +docs/launch/day-1-publish-packet.md |
| 64 | +``` |
| 65 | + |
| 66 | +Recommended order: |
| 67 | + |
| 68 | +1. X |
| 69 | +2. LinkedIn |
| 70 | +3. One or two relevant WeChat AI-builder groups |
| 71 | +4. Jike |
| 72 | + |
| 73 | +Use `docs/demo.mp4` as primary media and `docs/demo-poster.png` as backup. |
| 74 | + |
| 75 | +Tracking issue: https://github.com/aaronlab/browsertrace/issues/9 |
| 76 | + |
| 77 | +## 4. Submit Directories And Newsletters |
| 78 | + |
| 79 | +Use: |
| 80 | + |
| 81 | +```text |
| 82 | +docs/launch/directory-submission-sheet.md |
| 83 | +docs/launch/outreach-targets.md |
| 84 | +``` |
| 85 | + |
| 86 | +Submit once per target. Do not repeatedly submit or ask for votes. |
| 87 | + |
| 88 | +Tracking issue: https://github.com/aaronlab/browsertrace/issues/10 |
| 89 | + |
| 90 | +## 5. Record Metrics After Each Action |
| 91 | + |
| 92 | +After every public post, profile update, PyPI publish, or directory submission: |
| 93 | + |
| 94 | +```bash |
| 95 | +uv run --python 3.11 python scripts/launch_metrics.py --append --note "after <action>: <URL or note>" |
| 96 | +uv run --python 3.11 python scripts/launch_metrics.py --json |
| 97 | +``` |
| 98 | + |
| 99 | +The goal remains incomplete until GitHub reports more than 1000 stars: |
| 100 | + |
| 101 | +```bash |
| 102 | +gh repo view aaronlab/browsertrace --json stargazerCount,url,homepageUrl,owner |
| 103 | +``` |
0 commit comments