You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/components/home/FeatureBento.tsx
+19-47Lines changed: 19 additions & 47 deletions
Original file line number
Diff line number
Diff line change
@@ -11,65 +11,37 @@ type Feature = {
11
11
constFEATURES: Feature[]=[
12
12
{
13
13
icon: 'verdict',
14
-
title: 'Verdict-first',
15
-
body: 'A fit call — strong / solid / care / risky — plus a one-line bottom line, before anything else. The decision, then the evidence.',
16
-
tags: ['fit','bottom line','health'],
14
+
title: 'Scan the dependency page',
15
+
body: 'Open a GitHub, GitLab, npm, or PyPI page and get a verdict-first briefing: fit, risk, maintenance, license, and the bottom line.',
16
+
tags: ['scan','verdict','risk'],
17
17
span: 'wide',
18
18
},
19
19
{
20
-
icon: 'search',
21
-
title: 'Discovery & recommendations',
22
-
body: 'Search GitHub from inside the extension, or let RepoLens recommend peers from the repos you’ve already adopted — same capabilities, same language, ones you haven’t seen yet.',
23
-
tags: ['discover','recommend','github'],
20
+
icon: 'layers',
21
+
title: 'Read the evidence',
22
+
body: 'Deep Dive explains the actual shape of the project — files, dependency graph, tests, lineage, and plain-English reasoning.',
23
+
tags: ['evidence','deep dive'],
24
24
span: 'wide',
25
25
},
26
26
{
27
27
icon: 'rows',
28
-
title: 'Library + triage',
29
-
body: 'Every scan becomes a sortable, filterable grid. Decide with the keyboard, in flow.',
30
-
tags: ['triage','keyboard'],
31
-
span: 'normal',
32
-
},
33
-
{
34
-
icon: 'kanban',
35
-
title: 'Boards',
36
-
body: 'Group the repos you’re weighing into collections you can compare and revisit.',
37
-
tags: ['collections'],
38
-
span: 'normal',
39
-
},
40
-
{
41
-
icon: 'star',
42
-
title: 'Evaluations',
43
-
body: 'Score repos 1–5 against your own weighted rubric. The badge follows each card.',
44
-
tags: ['rubric','scoring'],
28
+
title: 'Triage the shortlist',
29
+
body: 'Every scan lands in a sortable library with boards, evaluations, drift alerts, and keyboard-first decisions.',
30
+
tags: ['library','boards'],
45
31
span: 'normal',
46
32
},
47
33
{
48
34
icon: 'bars',
49
-
title: 'N-way compare',
50
-
body: 'Put any 2–10 repos side-by-side in a structured matrix; export to CSV or Markdown.',
51
-
tags: ['matrix','export'],
52
-
span: 'normal',
53
-
},
54
-
{
55
-
icon: 'layers',
56
-
title: 'Deep Dive',
57
-
body: 'Atoms → lineage → a Feynman-style explanation, optionally grounded in measured facts from the source: real file counts, the dependency graph, tests, and a secret scan.',
58
-
tags: ['eli5','lineage','grounded'],
59
-
span: 'wide',
60
-
},
61
-
{
62
-
icon: 'clock',
63
-
title: 'Drift alerts',
64
-
body: 'A daily background check flags repos that have gone stale, so your shortlist stays honest.',
65
-
tags: ['stale','daily'],
35
+
title: 'Compare alternatives',
36
+
body: 'Put candidates side-by-side, search GitHub for peers, and export the reasoning to CSV or Markdown.',
37
+
tags: ['compare','export'],
66
38
span: 'normal',
67
39
},
68
40
{
69
41
icon: 'sliders',
70
-
title: 'Bring any model',
71
-
body: 'Your keys, 20+ providers, route each part of a scan to a different model — or run local Ollama for $0.',
72
-
tags: ['byo-keys','local'],
42
+
title: 'Keep it local/private',
43
+
body: 'Bring your own keys, route scans across 20+ providers, or run local Ollama. No server account required.',
44
+
tags: ['local','byo keys'],
73
45
span: 'normal',
74
46
},
75
47
];
@@ -80,11 +52,11 @@ export function FeatureBento() {
0 commit comments