-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (109 loc) · 4.11 KB
/
Copy pathindex.html
File metadata and controls
113 lines (109 loc) · 4.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="PullScope is a client-side AI PR review workbench for GitHub Pull Requests with local risk analysis and BYOK OpenAI-compatible models."
/>
<meta
name="keywords"
content="PullScope, GitHub, pull request, code review, risk analysis, AI review, BYOK, OpenAI-compatible"
/>
<meta name="theme-color" content="#07080d" />
<meta name="robots" content="index,follow" />
<link rel="canonical" href="https://yudin-s.github.io/pullscope/" />
<title>PullScope — client-side AI PR review for GitHub</title>
<link rel="icon" type="image/svg+xml" href="./favicon.svg" />
<link rel="apple-touch-icon" href="./apple-touch-icon.svg" />
<link rel="mask-icon" href="./favicon.svg" color="#6d5dfc" />
<meta
name="og:site_name"
property="og:site_name"
content="PullScope"
/>
<meta
property="og:title"
content="PullScope — Client-side AI PR Review for GitHub"
/>
<meta
property="og:description"
content="Review public GitHub PRs with local deterministic risk analysis and optional model review from your own endpoint. Your token stays browser-only."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://yudin-s.github.io/pullscope/" />
<meta
property="og:image"
content="https://yudin-s.github.io/pullscope/og-image.png"
/>
<meta property="og:image:alt" content="PullScope interface preview" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:type"
content="image/png"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="PullScope — Client-side AI PR Review for GitHub"
/>
<meta
name="twitter:description"
content="PullScope combines local PR risk analysis with optional AI review through your own OpenAI-compatible endpoint."
/>
<meta
name="twitter:image"
content="https://yudin-s.github.io/pullscope/og-image.png"
/>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "SoftwareApplication",
"@id": "https://yudin-s.github.io/pullscope/#software",
"name": "PullScope",
"description": "Client-side AI PR review workbench for GitHub pull requests with local deterministic risk analysis.",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Web",
"url": "https://yudin-s.github.io/pullscope/",
"sameAs": "https://github.com/yudin-s/pullscope",
"author": {
"@type": "Organization",
"name": "PullScope"
},
"featureList": [
"GitHub public PR parsing",
"Local risk score and persona notes",
"Optional BYOK OpenAI-compatible model review",
"Browser-only CORS diagnostics",
"Copyable Codex review brief"
]
},
{
"@type": "WebApplication",
"@id": "https://yudin-s.github.io/pullscope/#webapp",
"name": "PullScope",
"applicationCategory": "DeveloperApplication",
"description": "Static, client-side dashboard for reviewing GitHub PRs with optional browser-side model calls.",
"url": "https://yudin-s.github.io/pullscope/",
"browserRequirements": "Requires a modern browser and JavaScript.",
"isAccessibleForFree": true,
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock"
}
}
]
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>