autokap 1.6.2 → 1.6.4

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.
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * Entry point for deterministic execution from the CLI.
5
5
  * Flow:
6
- * 1. Authenticate via stored CLI key
6
+ * 1. Authenticate via stored API key
7
7
  * 2. Fetch compiled program from server
8
8
  * 3. Validate program against Zod schema
9
9
  * 4. Launch local Playwright browser per variant
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * Entry point for deterministic execution from the CLI.
5
5
  * Flow:
6
- * 1. Authenticate via stored CLI key
6
+ * 1. Authenticate via stored API key
7
7
  * 2. Fetch compiled program from server
8
8
  * 3. Validate program against Zod schema
9
9
  * 4. Launch local Playwright browser per variant
@@ -1243,7 +1243,7 @@ async function formatServerError(response, requestedUrl) {
1243
1243
  `server returned 404 for ${requestedUrl}.`,
1244
1244
  `The configured AutoKap server (${safeOrigin(requestedUrl)}) does not expose this CLI route yet.`,
1245
1245
  'This usually means the web app deployment is older than the CLI.',
1246
- `Point the CLI at your local dev server with \`autokap run --local <preset-id>\`, \`${API_BASE_URL_ENV_VAR}=http://localhost:3000 autokap run <preset-id>\`, or re-initialize against a local server with \`autokap init --cli-key <key> --api-base-url http://localhost:3000\`.`,
1246
+ `Point the CLI at your local dev server with \`autokap run --local <preset-id>\`, \`${API_BASE_URL_ENV_VAR}=http://localhost:3000 autokap run <preset-id>\`, or re-authenticate via your IDE's MCP integration (autokap_authenticate). From CI, set \`${API_BASE_URL_ENV_VAR}=http://localhost:3000\` and run \`autokap login <key>\`.`,
1247
1247
  ].join(' ');
1248
1248
  }
1249
1249
  if (isHtml) {