<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Kirti kant Pareek</title>
    <description>The latest articles on DEV Community by Kirti kant Pareek (@kk092).</description>
    <link>https://dev.to/kk092</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4058767%2F678643b7-61dc-4d60-982e-784e1e372af8.jpg</url>
      <title>DEV Community: Kirti kant Pareek</title>
      <link>https://dev.to/kk092</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kk092"/>
    <language>en</language>
    <item>
      <title>I built PrivyPrompt, a local-first privacy guard for AI prompts</title>
      <dc:creator>Kirti kant Pareek</dc:creator>
      <pubDate>Sun, 02 Aug 2026 08:55:12 +0000</pubDate>
      <link>https://dev.to/kk092/i-built-privyprompt-a-local-first-privacy-guard-for-ai-prompts-4hal</link>
      <guid>https://dev.to/kk092/i-built-privyprompt-a-local-first-privacy-guard-for-ai-prompts-4hal</guid>
      <description>&lt;p&gt;Developers are pasting more into AI tools every day.&lt;/p&gt;

&lt;p&gt;Logs. Stack traces. .env files. API responses. SQL errors. Customer notes. Contracts. PDFs. Screenshots. Internal docs.&lt;/p&gt;

&lt;p&gt;That workflow is useful, but it also creates a quiet privacy risk:&lt;/p&gt;

&lt;p&gt;What if the prompt contains an API key?&lt;br&gt;&lt;br&gt;
What if a file includes customer data?&lt;br&gt;&lt;br&gt;
What if a screenshot has sensitive information nobody noticed?&lt;/p&gt;

&lt;p&gt;I built &lt;strong&gt;PrivyPrompt&lt;/strong&gt; to help reduce that accidental sharing.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What PrivyPrompt does&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;PrivyPrompt is a Chrome extension that checks prompts and supported files before they are submitted to AI tools.&lt;/p&gt;

&lt;p&gt;It can warn, mask, or block sensitive content like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;API keys, tokens, JWTs, private keys, and database URLs&lt;/li&gt;
&lt;li&gt;Password-like values and custom protected terms&lt;/li&gt;
&lt;li&gt;Emails, phone numbers, credit cards, and IBANs&lt;/li&gt;
&lt;li&gt;National identifiers and country-specific ID formats&lt;/li&gt;
&lt;li&gt;Sensitive business, healthcare, finance, legal, and HR-style data&lt;/li&gt;
&lt;li&gt;Risky AI instructions such as prompt-injection or secret-exfiltration wording&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It also supports local checks for files like text, code, .env&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fcscw17zutuc4vktu7lfk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fcscw17zutuc4vktu7lfk.png" alt=" " width="800" height="500"&gt;&lt;/a&gt;, config, CSV, JSON, Markdown, SQL, logs, PDFs, DOCX files, and clear screenshots.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Local-first by design&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I did not want to build a tool where users upload sensitive content just to check if the content is sensitive.&lt;/p&gt;

&lt;p&gt;So PrivyPrompt works locally inside the browser.&lt;/p&gt;

&lt;p&gt;No account.&lt;br&gt;&lt;br&gt;
No telemetry.&lt;br&gt;&lt;br&gt;
No PrivyPrompt upload endpoint.&lt;/p&gt;

&lt;p&gt;Prompt text, extracted file text, OCR text, custom terms, and temporary alias mappings stay on the user's device. The AI website receives only what the user approves.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How masking works&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If PrivyPrompt detects something risky, the user can choose what to do with it.&lt;/p&gt;

&lt;p&gt;For example, a real secret can be replaced with a session-only alias:&lt;/p&gt;

&lt;p&gt;&lt;a href="mailto:demo@gmail.com"&gt;demo@gmail.com&lt;/a&gt; =&amp;gt; [PP_SECRET_1]&lt;br&gt;
This lets the AI tool understand the structure of the request without receiving the original sensitive value.&lt;br&gt;
Why I built it&lt;br&gt;
Most AI privacy mistakes are not intentional.&lt;br&gt;
They happen because someone is moving fast.&lt;br&gt;
A developer pastes a log.&lt;br&gt;
A freelancer uploads a client document.&lt;br&gt;
A support person summarizes customer notes.&lt;br&gt;
A founder asks AI to review a contract.&lt;br&gt;
PrivyPrompt is meant to be a lightweight review layer before that final submit.&lt;br&gt;
It is not a compliance certification tool, and it does not guarantee complete protection. It is a practical privacy aid that helps users catch obvious and high-risk mistakes before sending content online.&lt;br&gt;
Current status&lt;/p&gt;

&lt;p&gt;PrivyPrompt v1.0 is now published on the Chrome Web Store.&lt;br&gt;
The current focus is:&lt;br&gt;
Getting feedback from real AI-tool users&lt;br&gt;
Improving detection quality&lt;br&gt;
Making the review flow clearer&lt;br&gt;
Keeping the extension local-first&lt;br&gt;
Exploring a future Teams/SaaS version&lt;br&gt;
The longer-term idea is PrivyPrompt Teams: a version for companies that want policies, custom rules, privacy-safe reporting, and admin controls for AI usage.&lt;br&gt;
Who this is for&lt;br&gt;
PrivyPrompt may be useful if you:&lt;br&gt;
Use AI tools while coding&lt;br&gt;
Paste logs, stack traces, or config snippets into AI chats&lt;br&gt;
Work with client data, support data, contracts, or internal docs&lt;br&gt;
Upload screenshots or files to AI tools&lt;br&gt;
Want a local safety check before sending sensitive content online&lt;br&gt;
I would love feedback&lt;br&gt;
I am sharing this early because I want feedback from developers, freelancers, security-conscious users, and teams adopting AI tools.&lt;br&gt;
A few things I am trying to learn:&lt;br&gt;
Which sensitive data types matter most in your workflow?&lt;br&gt;
Should the extension be stricter by default or more lightweight?&lt;br&gt;
Which AI workflows create the most privacy risk?&lt;br&gt;
Would a Teams version be useful for your company?&lt;br&gt;
What would make you trust a tool like this?&lt;br&gt;
You can try PrivyPrompt here:&lt;br&gt;
Chrome Web Store: &lt;a href="https://chromewebstore.google.com/detail/privyprompt-privacy-firew/hkpfbehbdjaaoohpdacbiepdccmpcnmp" rel="noopener noreferrer"&gt;https://chromewebstore.google.com/detail/privyprompt-privacy-firew/hkpfbehbdjaaoohpdacbiepdccmpcnmp&lt;/a&gt;&lt;br&gt;
Website: &lt;a href="https://kk-092.github.io/PrivyPrompt/" rel="noopener noreferrer"&gt;https://kk-092.github.io/PrivyPrompt/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>privacy</category>
      <category>chatgpt</category>
      <category>chromeextension</category>
    </item>
  </channel>
</rss>
