-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.tsx
More file actions
121 lines (113 loc) · 4.16 KB
/
Copy pathpage.tsx
File metadata and controls
121 lines (113 loc) · 4.16 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
114
115
116
117
118
119
120
121
import type { Metadata } from "next";
import { Footer } from "@/components/footer";
import { Nav } from "@/components/nav";
export const metadata: Metadata = {
title: "Privacy Policy — kib",
description: "Privacy policy for kib and the kib Chrome extension.",
};
export default function Privacy() {
return (
<>
<Nav />
<main className="mx-auto max-w-3xl px-6 pb-20 pt-32">
<h1 className="font-mono text-2xl font-bold tracking-tight">Privacy Policy</h1>
<p className="mt-2 mb-12 font-mono text-xs text-muted">Last updated: April 7, 2026</p>
<div className="space-y-10 font-sans text-sm leading-relaxed text-foreground/80">
<section>
<h2 className="mb-3 font-mono text-sm font-semibold text-foreground">Overview</h2>
<p>
kib is an open-source, local-first knowledge compiler. Your data stays on your
machine. We do not operate servers that receive, store, or process your content.
</p>
</section>
<section>
<h2 className="mb-3 font-mono text-sm font-semibold text-foreground">CLI Tool</h2>
<p>
The kib CLI runs entirely on your local machine. All ingested content, compiled wiki
articles, and search indexes are stored in your local vault directory. When you use
commands that call an LLM (compile, query, chat), your content is sent directly to the
LLM provider you configured (Anthropic, OpenAI, or a local Ollama instance). We do not
proxy, intercept, or log these requests.
</p>
</section>
<section>
<h2 className="mb-3 font-mono text-sm font-semibold text-foreground">
Chrome Extension
</h2>
<p>
The kib Chrome extension extracts webpage content (text, title, and URL) from the
active tab when you click "Save to kib." This content is sent to your
locally running kib server at{" "}
<code className="font-mono text-xs">localhost:4747</code> and is never transmitted to
any external server.
</p>
<p className="mt-3">The extension:</p>
<ul className="mt-2 list-none space-y-1 pl-0">
<li>— Does not collect personally identifiable information</li>
<li>— Does not track browsing history or user activity</li>
<li>— Does not use analytics, telemetry, or third-party scripts</li>
<li>— Does not transmit data to any server other than your local machine</li>
<li>— Stores only your local server connection preference using Chrome storage</li>
</ul>
</section>
<section>
<h2 className="mb-3 font-mono text-sm font-semibold text-foreground">
Third-Party Services
</h2>
<p>
When you configure an LLM provider, your content is sent to that provider under their
terms of service. Review the privacy policies of your chosen provider:
</p>
<ul className="mt-2 list-none space-y-1 pl-0">
<li>
—{" "}
<a
href="https://www.anthropic.com/privacy"
target="_blank"
rel="noopener noreferrer"
className="underline underline-offset-4 transition-colors hover:text-foreground"
>
Anthropic
</a>
</li>
<li>
—{" "}
<a
href="https://openai.com/privacy"
target="_blank"
rel="noopener noreferrer"
className="underline underline-offset-4 transition-colors hover:text-foreground"
>
OpenAI
</a>
</li>
</ul>
</section>
<section>
<h2 className="mb-3 font-mono text-sm font-semibold text-foreground">Website</h2>
<p>
This website (kib.dev) is a static site. It does not use cookies, analytics, or
tracking of any kind.
</p>
</section>
<section>
<h2 className="mb-3 font-mono text-sm font-semibold text-foreground">Contact</h2>
<p>
Questions? Open an issue on{" "}
<a
href="https://github.com/keeganthomp/kib"
target="_blank"
rel="noopener noreferrer"
className="underline underline-offset-4 transition-colors hover:text-foreground"
>
GitHub
</a>
.
</p>
</section>
</div>
</main>
<Footer />
</>
);
}