|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>Privacy Policy — SkillKit</title> |
| 7 | + <style> |
| 8 | + * { margin: 0; padding: 0; box-sizing: border-box; } |
| 9 | + body { background: #09090b; color: #d4d4d8; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; line-height: 1.7; } |
| 10 | + .container { max-width: 640px; margin: 0 auto; padding: 48px 24px; } |
| 11 | + h1 { color: #fafafa; font-size: 28px; font-weight: 700; margin-bottom: 8px; font-family: 'JetBrains Mono', monospace; } |
| 12 | + .updated { color: #71717a; font-size: 13px; margin-bottom: 32px; } |
| 13 | + h2 { color: #fafafa; font-size: 18px; font-weight: 600; margin-top: 32px; margin-bottom: 12px; } |
| 14 | + p { margin-bottom: 16px; font-size: 15px; } |
| 15 | + ul { margin-bottom: 16px; padding-left: 24px; } |
| 16 | + li { margin-bottom: 8px; font-size: 15px; } |
| 17 | + a { color: #fafafa; text-decoration: underline; text-underline-offset: 2px; } |
| 18 | + a:hover { color: #a1a1aa; } |
| 19 | + .back { display: inline-block; margin-bottom: 24px; color: #71717a; font-size: 13px; text-decoration: none; font-family: 'JetBrains Mono', monospace; } |
| 20 | + .back:hover { color: #fafafa; } |
| 21 | + </style> |
| 22 | +</head> |
| 23 | +<body> |
| 24 | + <div class="container"> |
| 25 | + <a href="/" class="back">← Back to SkillKit</a> |
| 26 | + <h1>Privacy Policy</h1> |
| 27 | + <p class="updated">Last updated: February 10, 2026</p> |
| 28 | + |
| 29 | + <h2>Overview</h2> |
| 30 | + <p>SkillKit ("we", "our", "us") is an open-source CLI tool and Chrome extension for managing AI agent skills. We are committed to protecting your privacy. This policy explains what data we collect (or don't) across all SkillKit products.</p> |
| 31 | + |
| 32 | + <h2>Chrome Extension — "SkillKit - Save as Skill"</h2> |
| 33 | + <p>The Chrome extension operates entirely within your browser. It does not collect, transmit, or store any personal data externally.</p> |
| 34 | + <ul> |
| 35 | + <li><strong>No data collection:</strong> We do not collect browsing history, page content, personal information, or any other user data.</li> |
| 36 | + <li><strong>No external requests:</strong> The extension makes zero network requests. All processing (HTML to markdown conversion, SKILL.md generation) happens locally in your browser.</li> |
| 37 | + <li><strong>No analytics or tracking:</strong> We do not use any analytics, telemetry, or tracking services.</li> |
| 38 | + <li><strong>Local storage only:</strong> The Chrome storage API is used solely to store user preferences (e.g., default settings) on your device. This data never leaves your browser.</li> |
| 39 | + <li><strong>Downloads:</strong> Generated skill files are saved to your local filesystem via the Chrome Downloads API. No files are uploaded anywhere.</li> |
| 40 | + </ul> |
| 41 | + |
| 42 | + <h2>CLI Tool</h2> |
| 43 | + <p>The SkillKit CLI runs entirely on your local machine. It does not phone home, collect telemetry, or transmit any data to external servers unless you explicitly use network features (e.g., <code>skillkit install</code> fetches public GitHub repositories).</p> |
| 44 | + |
| 45 | + <h2>MCP Server</h2> |
| 46 | + <p>The SkillKit MCP server runs locally and provides skill discovery over the Model Context Protocol. It loads skill data from a bundled JSON file and does not make external network requests or collect user data.</p> |
| 47 | + |
| 48 | + <h2>Website</h2> |
| 49 | + <p>The SkillKit website (<a href="https://agenstskills.com">agenstskills.com</a>) is a static site hosted on Vercel. We do not use cookies, analytics trackers, or collect personal information. Vercel may collect standard web server logs (IP address, user agent) as described in their <a href="https://vercel.com/legal/privacy-policy">privacy policy</a>.</p> |
| 50 | + |
| 51 | + <h2>Third-Party Services</h2> |
| 52 | + <p>SkillKit does not integrate with any third-party data processors, advertising networks, or analytics services.</p> |
| 53 | + |
| 54 | + <h2>Data Retention</h2> |
| 55 | + <p>We do not retain any user data because we do not collect any user data.</p> |
| 56 | + |
| 57 | + <h2>Changes to This Policy</h2> |
| 58 | + <p>We may update this privacy policy from time to time. Changes will be posted on this page with an updated revision date.</p> |
| 59 | + |
| 60 | + <h2>Contact</h2> |
| 61 | + <p>If you have questions about this privacy policy, contact us at <a href="mailto:ghumare64@gmail.com">ghumare64@gmail.com</a>.</p> |
| 62 | + |
| 63 | + <h2>Open Source</h2> |
| 64 | + <p>SkillKit is open source under the Apache 2.0 license. You can review all source code at <a href="https://github.com/rohitg00/skillkit">github.com/rohitg00/skillkit</a>.</p> |
| 65 | + </div> |
| 66 | +</body> |
| 67 | +</html> |
0 commit comments