-
Notifications
You must be signed in to change notification settings - Fork 392
Expand file tree
/
Copy pathprivacy.html
More file actions
90 lines (76 loc) · 4.86 KB
/
privacy.html
File metadata and controls
90 lines (76 loc) · 4.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy — Harness</title>
<style>
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{--bg:#0a0a0f;--surface:#12121a;--border:#2a2a3a;--text:#e4e4ef;--text-dim:#8888a0;--accent:#7c6bf0;--accent2:#a78bfa;--radius:16px}
html{font-size:16px}
body{font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;background:var(--bg);color:var(--text);line-height:1.8}
a{color:var(--accent2);text-decoration:none}
a:hover{color:#c4b5fd}
.container{max-width:760px;margin:0 auto;padding:4rem 2rem}
h1{font-size:2rem;font-weight:700;letter-spacing:-.02em;margin-bottom:.5rem}
h2{font-size:1.3rem;font-weight:700;margin-top:2.5rem;margin-bottom:.8rem}
p,li{color:var(--text-dim);margin-bottom:.8rem}
ul{padding-left:1.5rem}
li{margin-bottom:.4rem}
.meta{font-size:.85rem;color:var(--text-dim);margin-bottom:3rem}
.back{display:inline-flex;align-items:center;gap:.4rem;font-size:.9rem;margin-bottom:2rem;color:var(--text-dim)}
.back:hover{color:var(--accent2)}
.card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem;margin:1.5rem 0}
.card h3{font-size:1rem;margin-bottom:.5rem;color:var(--text)}
footer{border-top:1px solid var(--border);margin-top:4rem;padding-top:2rem;text-align:center;font-size:.85rem;color:var(--text-dim)}
</style>
</head>
<body>
<div class="container">
<a href="index.html" class="back">← Back to Harness</a>
<h1>Privacy Policy</h1>
<p class="meta">Last updated: March 27, 2026</p>
<p>Harness ("the Plugin") is an open-source Claude Code plugin distributed under the Apache 2.0 license. This Privacy Policy explains how Harness handles user data.</p>
<div class="card">
<h3>The short version</h3>
<p style="margin-bottom:0">Harness does <strong>not</strong> collect, store, transmit, or share any personal data. It runs entirely within your local Claude Code environment.</p>
</div>
<h2>1. Data Collection</h2>
<p>Harness does not collect any personal information. Specifically:</p>
<ul>
<li>No user accounts or registration required</li>
<li>No analytics, telemetry, or tracking of any kind</li>
<li>No cookies or local storage for tracking purposes</li>
<li>No network requests to external servers</li>
<li>No collection of IP addresses, device identifiers, or usage patterns</li>
</ul>
<h2>2. How the Plugin Works</h2>
<p>Harness operates exclusively within the Claude Code runtime environment:</p>
<ul>
<li>It reads your project files to analyze the domain and codebase</li>
<li>It generates Markdown files (<code>.claude/agents/</code> and <code>.claude/skills/</code>) written to your local project directory</li>
<li>All processing happens locally through Claude Code's built-in tools</li>
<li>No data leaves your machine through the plugin itself</li>
</ul>
<h2>3. Third-Party Services</h2>
<p>Harness does not integrate with or send data to any third-party services. However, please note:</p>
<ul>
<li>Harness runs within <strong>Claude Code</strong>, which is operated by Anthropic. Your interactions with Claude Code are subject to <a href="https://www.anthropic.com/privacy" target="_blank">Anthropic's Privacy Policy</a>.</li>
<li>If you install Harness via a GitHub marketplace, your interaction with GitHub is subject to <a href="https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement" target="_blank">GitHub's Privacy Statement</a>.</li>
</ul>
<h2>4. Generated Files</h2>
<p>Files generated by Harness (agent definitions, skills, orchestrator configurations) are stored locally in your project directory. You have full control over these files — they can be modified, deleted, or version-controlled as you see fit.</p>
<h2>5. Open Source Transparency</h2>
<p>Harness is fully open source. You can audit the complete source code at <a href="https://github.com/revfactory/harness" target="_blank">github.com/revfactory/harness</a> to verify these privacy claims.</p>
<h2>6. Children's Privacy</h2>
<p>Harness does not knowingly collect any data from anyone, including children under 13. Since no data is collected at all, there is no age-specific concern.</p>
<h2>7. Changes to This Policy</h2>
<p>If this privacy policy changes, the updated version will be published in the GitHub repository and on this page. The "Last updated" date at the top will reflect the most recent revision.</p>
<h2>8. Contact</h2>
<p>For questions about this privacy policy or the Harness plugin, please open an issue at <a href="https://github.com/revfactory/harness/issues" target="_blank">github.com/revfactory/harness/issues</a> or contact the maintainer via <a href="https://github.com/revfactory" target="_blank">GitHub</a>.</p>
<footer>
<p>Harness — Apache 2.0 — <a href="https://github.com/revfactory" target="_blank">revfactory</a></p>
</footer>
</div>
</body>
</html>