-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprivacy.html
141 lines (130 loc) · 6.25 KB
/
privacy.html
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LlamaPReview - Privacy Policy</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1, h2 {
color: #0366d6;
}
.policy-section {
margin-bottom: 30px;
}
.important-notice {
background-color: #f8f9fa;
border-left: 4px solid #0366d6;
padding: 15px;
margin: 15px 0;
}
</style>
</head>
<body>
<h1>LlamaPReview Privacy Policy</h1>
<div class="policy-section">
<h2>1. Introduction</h2>
<p>This Privacy Policy explains how LlamaPReview ("we", "our", or "us") collects, uses, and protects your information when you use our GitHub App. We are committed to ensuring the privacy and security of your data while providing AI-powered code review services. This policy is designed to comply with global privacy regulations including GDPR and CCPA.</p>
</div>
<div class="policy-section">
<h2>2. Information We Collect</h2>
<p>When you install and use LlamaPReview, we collect only the minimum necessary information to provide our services:</p>
<ul>
<li>GitHub installation ID and account information (as provided by GitHub OAuth)</li>
<li>Repository metadata (repository names, PR numbers, and associated metadata)</li>
<li>Pull request content for analysis</li>
<li>Basic usage analytics (frequency of PR reviews, feature usage patterns)</li>
</ul>
<div class="important-notice">
<strong>Important Notice About Code Processing:</strong>
<p>LlamaPReview processes your repository code with the following privacy measures:</p>
<ul>
<li>Code is temporarily held in memory for analysis purposes</li>
<li>All code processing occurs in isolated, secure environments</li>
<li>No repository code is persisted to permanent storage</li>
</ul>
</div>
</div>
<div class="policy-section">
<h2>3. How We Use Your Information</h2>
<p>We use the collected information solely for:</p>
<ul>
<li>Providing automated code review services through our AI system</li>
<li>Generating and posting review comments on your pull requests</li>
<li>Improving our service based on anonymized usage patterns</li>
<li>Ensuring proper operation and security of the service</li>
<li>Communicating essential service updates</li>
</ul>
</div>
<div class="policy-section">
<h2>4. Data Protection and Processing</h2>
<p>We implement comprehensive security measures to protect your data:</p>
<ul>
<li>End-to-end encryption for all data in transit</li>
<li>Secure, ephemeral processing environments for code analysis</li>
<li>Regular security audits and updates</li>
<li>Strict access controls and authentication mechanisms</li>
<li>Compliance with GitHub's security best practices</li>
</ul>
<p>To provide our AI-powered code review service, we utilize industry-leading third-party AI services. This means:</p>
<ul>
<li>Your code may be processed by trusted third-party AI service providers who maintain the highest standards of security and privacy</li>
<li>These providers are bound by strict data protection agreements and maintain SOC 2 compliance</li>
<li>All code processing occurs through secure, encrypted connections</li>
<li>The AI services we use do not retain or store your code after processing</li>
</ul>
</div>
<div class="policy-section">
<h2>5. Data Retention</h2>
<p>Our data retention policy is designed to minimize data storage:</p>
<ul>
<li>Repository code: Temporarily held in memory for efficient processing</li>
<li>PR metadata: Retained only while the PR is active</li>
<li>Installation data: Retained only while the app remains installed</li>
<li>Usage analytics: Anonymized after 30 days</li>
</ul>
</div>
<div class="policy-section">
<h2>6. Third-Party Services</h2>
<p>LlamaPReview integrates with:</p>
<ul>
<li>GitHub (primary platform integration)</li>
<li>AWS (for secure, serverless processing)</li>
<li>Enterprise-grade AI service providers for code analysis (all of whom maintain industry-standard security certifications and compliance)</li>
</ul>
<p>Please refer to these services' respective privacy policies for additional information about their data handling practices.</p>
</div>
<div class="policy-section">
<h2>7. Your Rights</h2>
<p>Under applicable privacy laws, you have the right to:</p>
<ul>
<li>Access your personal information</li>
<li>Request correction or deletion of your data</li>
<li>Restrict or object to processing</li>
<li>Export your data (data portability)</li>
<li>Withdraw consent at any time</li>
</ul>
<p>To exercise these rights, please contact us at [email protected].</p>
</div>
<div class="policy-section">
<h2>8. Changes to This Policy</h2>
<p>We may update this privacy policy to reflect changes in our practices or for legal compliance. We will notify users of any material changes via email or through the GitHub App interface.</p>
</div>
<div class="policy-section">
<h2>9. Contact Us</h2>
<p>For any questions about this Privacy Policy or our data practices, please contact us at:</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
</div>
<footer>
<p>Last updated: November 9, 2024</p>
<p>© 2024 LlamaPReview. All rights reserved.</p>
</footer>
</body>
</html>