feat(cli): declare agent runs via x-checkly-source: AGENT [ship]#1412
Open
martzoukos wants to merge 1 commit into
Open
feat(cli): declare agent runs via x-checkly-source: AGENT [ship]#1412martzoukos wants to merge 1 commit into
martzoukos wants to merge 1 commit into
Conversation
When the CLI is driven by an agent (detectCliMode() === 'agent'), send `x-checkly-source: AGENT` instead of `CLI` on API requests. Auth can't tell an agent from a human (same API key), so the backend keys off this header to tell agent-created import plans apart from human ones and to safely GC abandoned agent onboarding reservations. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
martzoukos
enabled auto-merge (squash)
July 16, 2026 14:23
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
When the CLI is driven by an agent (
detectCliMode() === 'agent'), sendx-checkly-source: AGENTon API requests instead of the hardcodedCLI.Why
Authentication can't distinguish an agent from a human — they share the same API key. The backend needs a self-declared signal to tell agent-created import plans apart from human ones, so it can safely garbage-collect abandoned agent onboarding reservations (agent onboarding reserves pending mappings server-side that outlive the throwaway sandbox; if the user never finalizes with
checkly import commit, they'd linger forever).detectCliMode()already returns'agent'for agent-driven runs — including when the AI runner setsCHECKLY_CLI_MODE=agent— so this just routes that existing signal onto the source header. Composes with the agent-drivable import flow from #1402.Backend counterpart
The backend adds
AGENTto its client-source vocabulary, persists this header onto the import plan's newsourcecolumn, and runs a daily reaper oversource = 'AGENT' AND committedAt IS NULL AND createdAt < now() - TTL. This CLI change is what makessource = 'AGENT'actually get set.Testing
rest/__tests__/request-interceptor.spec.ts: assertsAGENTin agent mode,CLIfor interactive/CI.detectOperatorsuite unaffected (16/16 green together);tsc+ eslint clean.Note: no
[ship]tag — leaving the release call to maintainers.🤖 Generated with Claude Code