You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .plugin/plugin.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "vercel-plugin",
3
-
"version": "0.32.0",
3
+
"version": "0.32.1",
4
4
"description": "Comprehensive Vercel ecosystem plugin — relational knowledge graph, skills for every major product, specialized agents, and Vercel conventions. Turns any AI agent into a Vercel expert.",
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,14 +113,14 @@ After installing, skills and context are injected automatically. You can also in
113
113
114
114
The plugin has two separate telemetry controls:
115
115
116
-
-`~/.claude/vercel-plugin-telemetry-preference` controls prompt text only.
116
+
-`~/.claude/vercel-plugin-telemetry-preference` controls raw content telemetry only.
117
117
-`VERCEL_PLUGIN_TELEMETRY=off` disables all telemetry.
118
118
119
119
Behavior:
120
120
121
-
-`echo 'enabled' > ~/.claude/vercel-plugin-telemetry-preference` keeps default base telemetry on and also allows prompt text telemetry.
122
-
-`echo 'disabled' > ~/.claude/vercel-plugin-telemetry-preference` keeps prompt text off, but base telemetry remains on by default.
123
-
-`VERCEL_PLUGIN_TELEMETRY=off` disables all telemetry, including prompt text, session metadata, tool events, bash command telemetry, and skill-injection telemetry.
121
+
-`echo 'enabled' > ~/.claude/vercel-plugin-telemetry-preference` keeps default base telemetry on and also allows raw content telemetry for prompt text and full bash commands.
122
+
-`echo 'disabled' > ~/.claude/vercel-plugin-telemetry-preference` keeps prompt text and full bash commands off, but base telemetry remains on by default.
123
+
-`VERCEL_PLUGIN_TELEMETRY=off` disables all telemetry, including prompt text, full bash command telemetry, session metadata, tool names, and skill-injection telemetry.
`Prompt telemetry is currently ${existing}. This setting only controls prompt telemetry.
25
-
To change prompt sharing, edit ~/.claude/vercel-plugin-telemetry-preference. To disable all telemetry, set VERCEL_PLUGIN_TELEMETRY=off in the environment that launches your agent.
24
+
`Content telemetry is currently ${existing}. This setting controls prompt text and full bash command sharing only.
25
+
To change content sharing, edit ~/.claude/vercel-plugin-telemetry-preference. To disable all telemetry, set VERCEL_PLUGIN_TELEMETRY=off in the environment that launches your agent.
26
26
`
27
27
);
28
28
process.exit(0);
29
29
}
30
30
process.stdout.write(
31
31
[
32
32
"The Vercel plugin collects anonymous usage data such as skill injection patterns and tools used by default.",
33
-
"Ask the user if they would also like to share their prompt text to help improve skill matching. This choice only controls prompt telemetry.",
33
+
"Ask the user if they would also like to share raw content telemetry, including prompt text and full bash commands, to help improve skill matching and command understanding. This choice only controls content telemetry.",
34
34
"To disable all telemetry, set VERCEL_PLUGIN_TELEMETRY=off in the environment that launches your agent.",
35
35
"If they agree, run `echo 'enabled' > ~/.claude/vercel-plugin-telemetry-preference`.",
36
36
"If they decline, run `echo 'disabled' > ~/.claude/vercel-plugin-telemetry-preference`.",
`Prompt telemetry is currently ${existing}. This setting only controls prompt telemetry.\nTo change prompt sharing, edit ~/.claude/vercel-plugin-telemetry-preference. To disable all telemetry, set VERCEL_PLUGIN_TELEMETRY=off in the environment that launches your agent.\n`,
28
+
`Content telemetry is currently ${existing}. This setting controls prompt text and full bash command sharing only.\nTo change content sharing, edit ~/.claude/vercel-plugin-telemetry-preference. To disable all telemetry, set VERCEL_PLUGIN_TELEMETRY=off in the environment that launches your agent.\n`,
29
29
);
30
30
process.exit(0);
31
31
}
32
32
33
33
process.stdout.write(
34
34
[
35
35
"The Vercel plugin collects anonymous usage data such as skill injection patterns and tools used by default.",
36
-
"Ask the user if they would also like to share their prompt text to help improve skill matching. This choice only controls prompt telemetry.",
36
+
"Ask the user if they would also like to share raw content telemetry, including prompt text and full bash commands, to help improve skill matching and command understanding. This choice only controls content telemetry.",
37
37
"To disable all telemetry, set VERCEL_PLUGIN_TELEMETRY=off in the environment that launches your agent.",
38
38
"If they agree, run `echo 'enabled' > ~/.claude/vercel-plugin-telemetry-preference`.",
39
39
"If they decline, run `echo 'disabled' > ~/.claude/vercel-plugin-telemetry-preference`.",
@@ -106,13 +106,13 @@ async function main(): Promise<void> {
106
106
constmessage=[
107
107
"After responding to the user's message, use the AskUserQuestion tool to ask about telemetry.",
108
108
"Use this exact question configuration:",
109
-
'- question: "The Vercel plugin collects anonymous usage data such as skill injection patterns and tools used by default. Would you like to also share your prompt text to help improve skill matching? This choice only controls prompt telemetry."',
109
+
'- question: "The Vercel plugin collects anonymous usage data such as skill injection patterns and tools used by default. Would you like to also share raw content telemetry, including your prompt text and full bash commands, to help improve skill matching and command understanding? This choice only controls content telemetry."',
110
110
'- header: "Telemetry"',
111
-
'- options: [{"label": "Share prompts", "description": "Share prompt text in addition to default anonymous usage data"}, {"label": "No thanks", "description": "Keep prompt text private. This only disables prompt telemetry"}]',
111
+
'- options: [{"label": "Share content", "description": "Share prompt text and full bash commands in addition to default anonymous usage data"}, {"label": "No thanks", "description": "Keep prompt text and full bash commands private. This only disables content telemetry"}]',
112
112
"- multiSelect: false",
113
113
"",
114
114
"After the user responds:",
115
-
"- If they chose \"Share prompts\", run: `echo 'enabled' > ~/.claude/vercel-plugin-telemetry-preference`",
115
+
"- If they chose \"Share content\", run: `echo 'enabled' > ~/.claude/vercel-plugin-telemetry-preference`",
116
116
"- If they chose \"No thanks\" or anything else, run: `echo 'disabled' > ~/.claude/vercel-plugin-telemetry-preference`",
0 commit comments