Skip to content

Commit 0140dbe

Browse files
committed
feat: add more new repos
1 parent 31c4ef5 commit 0140dbe

7 files changed

Lines changed: 45 additions & 3 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 (~30 repos) across GH / GL / BB
32+
bun run seed # score the curated set (~42 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 (~30 public repos)
12+
bun run seed # optional: populate the DB with the curated set (~42 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 (~30 repos) across GH / GL / BB
92+
bun run seed # score the curated set (~42 repos) across GH / GL / BB
9393
bun run dev # http://localhost:3000
9494
```
9595

data/rank.db

4 KB
Binary file not shown.

data/rank.db-shm

0 Bytes
Binary file not shown.

data/rank.db-wal

1.38 MB
Binary file not shown.

scripts/seed.ts

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ const SEEDS: Seed[] = [
1616
url: "https://github.com/expressjs/express",
1717
},
1818
{ url: "https://github.com/prettier/prettier", note: "Code formatter" },
19+
{ url: "https://github.com/n8n-io/n8n", note: "n8n — workflow automation" },
20+
{ url: "https://github.com/calcom/cal.diy", note: "Cal.com — cal.diy" },
1921

2022
// --- GitHub, other languages ---
2123
{ url: "https://github.com/astral-sh/ruff", note: "Python linter (Rust)" },
@@ -31,6 +33,34 @@ const SEEDS: Seed[] = [
3133
note: "Gumroad (Ruby on Rails)",
3234
url: "https://github.com/antiwork/gumroad",
3335
},
36+
{
37+
url: "https://github.com/PostHog/posthog",
38+
note: "PostHog — product analytics (Python/Django)",
39+
},
40+
{
41+
url: "https://github.com/apache/airflow",
42+
note: "Airflow — workflow orchestration (Python)",
43+
},
44+
{
45+
url: "https://github.com/apache/superset",
46+
note: "Superset — data exploration + viz (Python)",
47+
},
48+
{
49+
url: "https://github.com/microsoft/presidio",
50+
note: "Presidio — PII detection / anonymization (Python)",
51+
},
52+
{
53+
url: "https://github.com/google/osv-scanner",
54+
note: "OSV-Scanner — vulnerability scanner (Go)",
55+
},
56+
{
57+
note: "MuJoCo — physics simulator (C++)",
58+
url: "https://github.com/google-deepmind/mujoco",
59+
},
60+
{
61+
note: "Flutter sample apps (Dart)",
62+
url: "https://github.com/flutter/samples",
63+
},
3464

3565
// --- AI-native: coding agents ---
3666
{
@@ -81,6 +111,18 @@ const SEEDS: Seed[] = [
81111
url: "https://github.com/vllm-project/vllm",
82112
},
83113
{ url: "https://github.com/BerriAI/litellm", note: "Unified LLM proxy" },
114+
{
115+
note: "LangChain — LLM app framework",
116+
url: "https://github.com/langchain-ai/langchain",
117+
},
118+
{
119+
note: "OpenAI Cookbook — API examples / recipes",
120+
url: "https://github.com/openai/openai-cookbook",
121+
},
122+
{
123+
url: "https://github.com/karpathy/nanochat",
124+
note: "nanochat — Karpathy's minimal LLM stack",
125+
},
84126

85127
// --- GitLab ---
86128
{ url: "https://gitlab.com/gitlab-org/cli", note: "GitLab's own CLI (Go)" },

0 commit comments

Comments
 (0)