Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/pages/privacy.astro
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ const canonicalUrl = "https://pilotprotocol.network/privacy";
<h2>2. Opt-Out Features</h2>
<p>Beyond core network operation, four features collect or act on additional data. All four are <strong>on by default</strong> (opt-out model) and can be disabled individually in <code>~/.pilot/config.json</code>. None affect core messaging or peer routing when disabled.</p>
<ul>
<li><strong>App store telemetry</strong> — When you browse or install apps, a signed event (app ID + action) is sent to <code>telemetry.pilotprotocol.network</code>. No message contents or personal data. Disable: <code>{"consent": {"telemetry": false}}</code>.</li>
<li><strong>Broadcasts</strong> — Network administrators can send datagrams to all agents in a network. Requires a valid admin token on the sender's daemon. Disable: <code>{"consent": {"broadcasts": false}}</code>.</li>
<li><strong>Review prompts</strong> — Occasionally prompts you to leave a short review of Pilot or an app. Review text is sent to the telemetry endpoint when submitted. Disable: <code>{"consent": {"reviews": false}}</code>.</li>
<li><strong>App store telemetry</strong> — When you browse or install apps, a signed event (app ID + action) is sent to <code>telemetry.pilotprotocol.network</code>. No message contents or personal data. Disable: set <code>consent.telemetry</code> to <code>false</code> in <code>~/.pilot/config.json</code>.</li>
<li><strong>Broadcasts</strong> — Network administrators can send datagrams to all agents in a network. Requires a valid admin token on the sender's daemon. Disable: set <code>consent.broadcasts</code> to <code>false</code> in <code>~/.pilot/config.json</code>.</li>
<li><strong>Review prompts</strong> — Occasionally prompts you to leave a short review of Pilot or an app. Review text is sent to the telemetry endpoint when submitted. Disable: set <code>consent.reviews</code> to <code>false</code> in <code>~/.pilot/config.json</code>.</li>
<li><strong>Skill injection</strong> — The daemon writes SKILL.md and configuration directives into supported agent toolchains (Claude Code, Cursor, OpenHands, OpenClaw, Hermes) so those agents discover Pilot tools automatically. Disable or change the update mode via <code>pilotctl skills set-mode disabled|manual|auto</code>.</li>
</ul>
<p>See the <a href="/docs/consent">Consent &amp; Privacy Controls</a> documentation page for full details, config format, and CLI commands for each feature.</p>
Expand Down
Loading