@papi-ai/server 0.5.3 → 0.6.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -76,6 +76,7 @@ For local-only usage with markdown files (no database), omit the `PAPI_ADAPTER`,
76
76
  | `PAPI_AUTO_PR` | No | `true` | Auto-create pull requests after completed builds |
77
77
  | `PAPI_BASE_BRANCH` | No | `main` | Base branch for PR creation and plan sync (pull/push) |
78
78
  | `PAPI_SLACK_WEBHOOK_URL` | No | — | Slack incoming webhook URL for sprint notifications |
79
+ | `PAPI_TELEMETRY` | No | `on` | Set to `off` to disable anonymous usage telemetry |
79
80
 
80
81
  \* Either `PAPI_PROJECT_DIR` or `--project` flag is required.
81
82
 
@@ -115,6 +116,33 @@ PAPI manages your project through markdown files in a `.papi/` directory:
115
116
 
116
117
  The AI planner reads this context each sprint to make informed recommendations that compound over time — sprint 20 is smarter than sprint 1 because it has 19 sprints of history to learn from.
117
118
 
119
+ ## Telemetry
120
+
121
+ PAPI collects anonymous usage data to help improve the product. This includes:
122
+
123
+ - Tool name (e.g. `plan`, `build_execute`)
124
+ - Call duration in milliseconds
125
+ - Your project ID (a UUID, not your project name or code)
126
+
127
+ No source code, file contents, task titles, or personal data is ever collected. All data is sent to PAPI's hosted Supabase instance.
128
+
129
+ **To opt out**, add `PAPI_TELEMETRY=off` to the `env` block in your `.mcp.json`:
130
+
131
+ ```json
132
+ {
133
+ "mcpServers": {
134
+ "papi": {
135
+ "command": "npx",
136
+ "args": ["-y", "@papi-ai/server"],
137
+ "env": {
138
+ "PAPI_DATA_API_KEY": "your-key",
139
+ "PAPI_TELEMETRY": "off"
140
+ }
141
+ }
142
+ }
143
+ }
144
+ ```
145
+
118
146
  ## License
119
147
 
120
148
  MIT