Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions packages/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,8 @@
},
"amicode.telemetry.enabled": {
"type": "boolean",
"default": true,
"description": "Capture agent runs to Harmoniqs' internal run corpus (OpenTelemetry). Runs include your prompts and tool output, which may contain source code. On by default, but NOTHING is transmitted until ALL of: you answer the first-run consent prompt, an endpoint is configured (amicode.telemetry.endpoint), and your Amico cloud connection is set up (\"Amico: Connect Cloud\") — capture authenticates with your per-user cloud token. Turn off to disable capture entirely."
"default": false,
"description": "Capture agent runs to Harmoniqs' internal run corpus (OpenTelemetry). Runs include your prompts and tool output, which may contain source code. Off by default; enable explicitly after confirming the configured ingest endpoint is reachable from your network. Nothing is transmitted until you answer the first-run consent prompt, an endpoint is configured (amicode.telemetry.endpoint), and your Amico cloud connection is set up (\"Amico: Connect Cloud\"). Capture authenticates with your per-user cloud token."
},
"amicode.telemetry.endpoint": {
"type": "string",
Expand Down
1 change: 1 addition & 0 deletions packages/extension/test/cloud_key.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,7 @@ describe("cloud URL resolution (review finding 6 — single-sourced)", () => {
.contributes.configuration.properties;
expect(props["amicode.cloudUrl"].default).toBe("");
expect(props["amicode.cloudUrl"].description).toMatch(/built-in production endpoint/i);
expect(props["amicode.telemetry.enabled"].default).toBe(false);
});

// ACCOUNT COUPLING. The ONE token in ~/.amico/cloud.json authenticates BOTH the
Expand Down
Loading