Skip to content

Commit 31c4ef5

Browse files
committed
feat: add Pretext repo
1 parent c7a4ad1 commit 31c4ef5

7 files changed

Lines changed: 12 additions & 5 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ See `README.md` for the full product narrative. See `tasks/` for per-version wor
2929
bun install
3030
bun run prepare-hooks # once — installs lefthook git hooks (Biome + tsc on pre-commit)
3131
bun run init-db # optional — auto-runs on first score
32-
bun run seed # score the curated set (~29 repos) across GH / GL / BB
32+
bun run seed # score the curated set (~30 repos) across GH / GL / BB
3333
bun run dev # http://localhost:3000
3434
bun run score <url> # score a single repo
3535
```

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Read [AGENTS.md](./AGENTS.md) first — it's the source of truth for stack, conv
99
```bash
1010
bun install
1111
bun run prepare-hooks # once — installs lefthook pre-commit (Biome + tsc)
12-
bun run seed # optional: populate the DB with the curated set (~29 public repos)
12+
bun run seed # optional: populate the DB with the curated set (~30 public repos)
1313
bun run dev # http://localhost:3000
1414
```
1515

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Auth and per-maintainer controls land with the opt-out / claim flow in v0.4.0.
8989
```bash
9090
bun install
9191
bun run prepare-hooks # once — installs lefthook pre-commit (Biome + tsc)
92-
bun run seed # score the curated set (~29 repos) across GH / GL / BB
92+
bun run seed # score the curated set (~30 repos) across GH / GL / BB
9393
bun run dev # http://localhost:3000
9494
```
9595

data/rank.db

28 KB
Binary file not shown.

data/rank.db-shm

0 Bytes
Binary file not shown.

data/rank.db-wal

-905 KB
Binary file not shown.

scripts/seed.ts

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ const SEEDS: Seed[] = [
2727
{ url: "https://github.com/oven-sh/bun", note: "Bun runtime (Zig)" },
2828
{ url: "https://github.com/pallets/flask", note: "Python web framework" },
2929
{ url: "https://github.com/django/django", note: "Django (Python)" },
30-
{ url: "https://github.com/antiwork/gumroad", note: "Gumroad (Ruby on Rails)" },
30+
{
31+
note: "Gumroad (Ruby on Rails)",
32+
url: "https://github.com/antiwork/gumroad",
33+
},
3134

3235
// --- AI-native: coding agents ---
3336
{
@@ -59,8 +62,12 @@ const SEEDS: Seed[] = [
5962
note: "OpenClaw — Captain Claw engine reimplementation (C++)",
6063
},
6164
{
62-
url: "https://github.com/championswimmer/TwoFac",
6365
note: "TwoFac — 2FA TOTP manager",
66+
url: "https://github.com/championswimmer/TwoFac",
67+
},
68+
{
69+
note: "pretext — chenglou",
70+
url: "https://github.com/chenglou/pretext",
6471
},
6572

6673
// --- AI-native: models + infra ---

0 commit comments

Comments
 (0)