The Framework for Building Agents
This report presents the forensic synthetic code analysis of vercel/eve, a TypeScript project with 3,508 GitHub stars. SynthScan v2.0 examined 340,151 lines of code across 1858 source files, recording 1916 pattern matches distributed across 9 syntactic categories. The overall adjusted score of 7.5 places this repository in the Low AI signal band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
Longitudinal tracking requires multiple scan runs. Once this repository is re-scanned after new commits land, this chart will visualise how the synthetic code signal evolves over time — enabling you to detect whether AI authorship is growing, stabilising, or being actively corrected by human engineers.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 1916 distinct pattern matches across 9 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | packages/eve/test/runtime-tool-registry.test.ts | 86 | function createResolvedToolDefinition(input: { | CODE |
| LOW | packages/eve/test/dev-send-message.test.ts | 28 | function createControlledStreamResponse(): { | CODE |
| LOW | packages/eve/test/dev-send-message.test.ts | 57 | function createStartedMessageResponse( | CODE |
| LOW | packages/eve/test/dev-send-message.test.ts | 72 | function createResumedMessageResponse(continuationToken: string): Response { | CODE |
| LOW | packages/eve/test/runtime-subagent-registry.test.ts | 81 | function createResolvedRuntimeSubagentNode(input: { | CODE |
| LOW | packages/eve/test/runtime-sandbox-registry.test.ts | 85 | function createResolvedSandboxDefinition(input: { | CODE |
| LOW | packages/eve/test/client.test.ts | 25 | function createControlledStreamResponse(): { | CODE |
| LOW⚡ | packages/eve/test/client.test.ts | 54 | function createStartedMessageResponse(sessionId: string, continuationToken: string): Response { | CODE |
| LOW⚡ | packages/eve/test/client.test.ts | 64 | function createResumedMessageResponse(continuationToken: string): Response { | CODE |
| LOW⚡ | packages/eve/test/client.test.ts | 71 | function createEagerStreamResponse(events: readonly unknown[]): Response { | CODE |
| LOW | …eve/test/vercel/vercel-verbose-bundling.vercel.test.ts | 74 | async function sendToolMessageAndCollectResult(input: { | CODE |
| LOW | …eve/test/vercel/vercel-verbose-bundling.vercel.test.ts | 143 | function collectDeploymentEnvironment(names: readonly string[]): Record<string, string> { | CODE |
| LOW | …eve/test/vercel/vercel-verbose-bundling.vercel.test.ts | 161 | function readOptionalEnvironmentVariable(name: string): string | undefined { | CODE |
| LOW | …eve/test/vercel/vercel-verbose-bundling.vercel.test.ts | 171 | function readRequiredEnvironmentVariable(name: string): string { | CODE |
| LOW | …eve/test/vercel/vercel-sandbox-bundling.vercel.test.ts | 71 | function expectAtLeastOneAssistantTextEvent(events: readonly HandleMessageStreamEvent[]): void { | CODE |
| LOW | …eve/test/vercel/vercel-sandbox-bundling.vercel.test.ts | 90 | function collectDeploymentEnvironment(names: readonly string[]): Record<string, string> { | CODE |
| LOW | …eve/test/vercel/vercel-sandbox-bundling.vercel.test.ts | 108 | function readOptionalEnvironmentVariable(name: string): string | undefined { | CODE |
| LOW | …eve/test/vercel/vercel-sandbox-bundling.vercel.test.ts | 118 | function readRequiredEnvironmentVariable(name: string): string { | CODE |
| LOW | packages/eve/test/tui-client/tui-slash-commands.ts | 104 | async function runLocalChannelsCancellation(): Promise<void> { | CODE |
| LOW | packages/eve/test/tui-client/tui-status-line.ts | 101 | async function runUnlinkedShowsNoVercelSegment(): Promise<void> { | CODE |
| LOW | packages/eve/test/tui-client/target/create-target.ts | 31 | function freezeTestTargetCapabilities( | CODE |
| LOW | …ckages/eve/test/tui-client/target/local-environment.ts | 29 | export function createLocalTestEnvironment( | CODE |
| LOW | …ckages/eve/test/tui-client/target/local-environment.ts | 262 | async function resolveOwnedWorkflowDataDir(input: { | CODE |
| LOW | …ckages/eve/test/tui-client/target/local-environment.ts | 362 | function localTargetKindToServerMode(kind: LocalTestTargetRequest["kind"]): AgentServerMode { | CODE |
| LOW | packages/eve/test/tui-client/lib/server.ts | 112 | export function createAgentServerCommandPlan(input: { | CODE |
| LOW | packages/eve/test/tui-client/lib/server.ts | 248 | export function getAgentNameFromInfoPayload(payload: unknown): string | undefined { | CODE |
| LOW | packages/eve/test/setup/mock-ai-gateway.ts | 43 | function createGatewayModelCatalogResponse(modelIds: ReadonlySet<string>): Response { | CODE |
| LOW | packages/eve/test/setup/mock-ai-gateway.ts | 83 | function collectGatewayModelIdsFromDirectory(directoryPath: string, ids: Set<string>): void { | CODE |
| LOW | packages/eve/test/setup/mock-ai-gateway.ts | 107 | function collectGatewayModelIdsFromSource(source: string, ids: Set<string>): void { | CODE |
| LOW | packages/eve/test/dev-client-harness/url.ts | 1 | function createDevelopmentServerBaseUrl(serverUrl: string): URL { | CODE |
| LOW | packages/eve/test/dev-client-harness/url.ts | 19 | export function resolveDevelopmentServerRouteUrl(input: { | CODE |
| LOW | packages/eve/test/dev-client-harness/url.ts | 36 | export function resolveDevelopmentServerResourceUrl(input: { | CODE |
| LOW | packages/eve/test/dev-client-harness/stream.ts | 34 | export function countCurrentTurnBoundaryEvents( | CODE |
| LOW | packages/eve/test/dev-client-harness/stream.ts | 46 | export function extractCurrentTurnBoundaryEvent( | CODE |
| LOW | packages/eve/test/dev-client-harness/live-stream.ts | 4 | function isDevelopmentMessageStreamDisconnectError(error: unknown): boolean { | CODE |
| LOW | packages/eve/test/dev-client-harness/live-stream.ts | 231 | export function openDevelopmentMessageStream(input: { | CODE |
| LOW | packages/eve/test/dev-client-harness/session.ts | 30 | export function createDevelopmentSessionState( | CODE |
| LOW | packages/eve/test/dev-client-harness/session.ts | 50 | export function createDevelopmentMessageRequest(input: { | CODE |
| LOW | packages/eve/test/dev-client-harness/session.ts | 70 | export function updateDevelopmentSessionState(input: { | CODE |
| LOW | packages/eve/test/dev-client-harness/send-message.ts | 25 | async function fetchDevelopmentSessionStreamResponse(input: { | CODE |
| LOW | packages/eve/test/dev-client-harness/send-message.ts | 64 | async function openDevelopmentSessionStream(input: { | CODE |
| LOW | packages/eve/test/dev-client-harness/send-message.ts | 79 | async function readDevelopmentTurnEvents(input: { | CODE |
| LOW | packages/eve/test/dev-client-harness/send-message.ts | 260 | function createMessageRouteHeaders(headers?: DevelopmentRequestHeaders): DevelopmentRequestHeaders { | CODE |
| LOW | packages/eve/test/dev-client-harness/send-message.ts | 266 | function copyDevelopmentRequestHeaders( | CODE |
| LOW | packages/eve/test/dev-client-harness/request-headers.ts | 25 | export async function createDevelopmentRequestHeadersAsync(input: { | CODE |
| LOW | …e/test/scenarios/vercel-build-prewarm.scenario.test.ts | 169 | async function createTemplateFreeScenarioAppRoot(): Promise<string> { | CODE |
| LOW | …e/test/scenarios/vercel-build-prewarm.scenario.test.ts | 331 | function createFailingBootstrapDispatch() { | CODE |
| LOW | …test/scenarios/compiled-vendor-assets.scenario.test.ts | 39 | function rewriteDeclarationImports( | CODE |
| LOW | …es/eve/test/scenarios/dev-environment.scenario.test.ts | 47 | function clearDevelopmentEnvironment(): void { | CODE |
| LOW | …st/scenarios/eval-command-environment.scenario.test.ts | 76 | function clearDevelopmentEnvironment(): void { | CODE |
| LOW | …st/scenarios/bundle-module-evaluation.scenario.test.ts | 36 | async function bundleEveDistAsSingleChunk(input: RolldownInputOptions): Promise<string> { | CODE |
| LOW | packages/eve/test/scenarios/dev-server.scenario.test.ts | 58 | function hasUnsupportedWindowsEsmImport(text: string): boolean { | CODE |
| LOW | packages/eve/test/scenarios/dev-server.scenario.test.ts | 66 | function hasKnownDevBundlingFailure(text: string): boolean { | CODE |
| LOW | …ages/eve/test/scenarios/compile-agent.scenario.test.ts | 1359 | async function createSandboxRevalidationKeyValidationApp(input: { | CODE |
| LOW | …e/test/scenarios/runtime-sandbox-keys.scenario.test.ts | 55 | function stubEmptyVercelProjectSources(): void { | CODE |
| LOW | …/scenarios/production-build-isolation.scenario.test.ts | 222 | async function observeConcurrentBuildWorkspaces(input: { | CODE |
| LOW | …/scenarios/production-build-isolation.scenario.test.ts | 323 | async function watchStableDevBuildSurfaces(appRoot: string): Promise<{ | CODE |
| LOW | …/scenarios/production-build-isolation.scenario.test.ts | 413 | async function readPublishedCompilationState(appRoot: string): Promise<PublishedCompilationState> { | CODE |
| LOW | …s/eve/test/scenarios/bin-build-output.scenario.test.ts | 33 | function removeRolldownPluginTimingWarningBlock(stderr: string): string { | CODE |
| LOW | packages/eve/test/scenarios/eve-init.scenario.test.ts | 56 | function withoutCodingAgentMarkers(env: NodeJS.ProcessEnv): NodeJS.ProcessEnv { | CODE |
| 1449 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | packages/eve/src/context/dynamic-tool-lifecycle.ts | 3 | import type { HarnessToolDefinition } from "#harness/execute-tool.js"; | CODE |
| MEDIUM | …rc/context/build-base-tool-context.integration.test.ts | 4 | import { createTestRuntime } from "#internal/testing/app-harness.js"; | CODE |
| MEDIUM | packages/eve/src/context/keys.ts | 155 | import("#harness/execute-tool.js").HarnessToolDefinition[] | CODE |
| MEDIUM | packages/eve/src/context/provider.ts | 1 | import type { HarnessSession } from "#harness/types.js"; | CODE |
| MEDIUM | packages/eve/src/context/run-step.ts | 1 | import type { HarnessSession, StepResult } from "#harness/types.js"; | CODE |
| MEDIUM | packages/eve/src/context/accessors.integration.test.ts | 4 | import { createTestRuntime } from "#internal/testing/app-harness.js"; | CODE |
| MEDIUM | packages/eve/src/context/build-dynamic-tools.ts | 3 | import type { HarnessToolDefinition } from "#harness/execute-tool.js"; | CODE |
| MEDIUM | packages/eve/src/context/providers/sandbox.test.ts | 4 | import type { HarnessSession } from "#harness/types.js"; | CODE |
| MEDIUM | packages/eve/src/context/providers/sandbox.ts | 2 | import type { HarnessSession } from "#harness/types.js"; | CODE |
| MEDIUM | packages/eve/src/context/providers/session.ts | 10 | import { getHarnessEmissionState } from "#harness/emission.js"; | CODE |
| MEDIUM | …c/runtime/framework-tools/connection-search-dynamic.ts | 9 | } from "#harness/authorization.js"; | CODE |
| MEDIUM | …es/eve/src/runtime/connections/scoped-authorization.ts | 20 | } from "#harness/authorization.js"; | CODE |
| MEDIUM | packages/eve/src/internal/instrumentation.ts | 3 | * builder (`#channel/instrumentation.ts`) and the harness telemetry | COMMENT |
| MEDIUM | packages/eve/src/internal/instrumentation.ts | 4 | * builder (`#harness/instrumentation-runtime-context.ts`). | COMMENT |
| MEDIUM | …/eve/src/internal/testing/task-model-retry-workflow.ts | 16 | import { createToolLoopHarness } from "#harness/tool-loop.js"; | CODE |
| MEDIUM | …/eve/src/internal/testing/task-model-retry-workflow.ts | 17 | import type { HarnessSession } from "#harness/types.js"; | CODE |
| MEDIUM | …s/eve/src/internal/testing/durable-session-workflow.ts | 15 | import type { HarnessSession } from "#harness/types.js"; | CODE |
| MEDIUM | …e/src/internal/testing/app-harness.integration.test.ts | 7 | import { createTestRuntime } from "#internal/testing/app-harness.js"; | CODE |
| MEDIUM | packages/eve/src/cli/dev/tui/errors.ts | 15 | } from "#harness/model-call-error.js"; | CODE |
| MEDIUM | packages/eve/src/channel/adapter.ts | 2 | import type { StepInput } from "#harness/types.js"; | CODE |
| MEDIUM⚡ | …kages/eve/src/harness/workflow-runtime-action-state.ts | 1 | import type { HarnessRuntimeActionDefinition } from "#harness/execute-tool.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/input-requests.test.ts | 8 | import type { HarnessToolDefinition } from "#harness/execute-tool.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/input-requests.test.ts | 17 | } from "#harness/input-requests.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/input-requests.test.ts | 18 | import { createSessionLimitContinuationRequest } from "#harness/session-limit-continuation.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/input-requests.test.ts | 19 | import { buildToolApproval, buildToolSet } from "#harness/tools.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/input-requests.test.ts | 20 | import type { HarnessSession, HarnessToolMap } from "#harness/types.js"; | CODE |
| MEDIUM | packages/eve/src/harness/instrumentation-config.test.ts | 8 | * via the bundled harness chunk (inlined via the `#harness/*` import alias). | COMMENT |
| MEDIUM⚡ | packages/eve/src/harness/instrumentation-config.test.ts | 26 | const moduleA = await import("#harness/instrumentation-config.js"); | CODE |
| MEDIUM⚡ | packages/eve/src/harness/instrumentation-config.test.ts | 31 | const moduleB = await import("#harness/instrumentation-config.js"); | CODE |
| MEDIUM⚡ | packages/eve/src/harness/instrumentation-config.test.ts | 40 | const { registerInstrumentationConfig } = await import("#harness/instrumentation-config.js"); | CODE |
| MEDIUM⚡ | packages/eve/src/harness/instrumentation-config.test.ts | 52 | const moduleA = await import("#harness/instrumentation-config.js"); | CODE |
| MEDIUM⚡ | packages/eve/src/harness/instrumentation-config.test.ts | 58 | await import("#harness/instrumentation-config.js"); | CODE |
| MEDIUM⚡ | packages/eve/src/harness/instrumentation-config.test.ts | 66 | const { registerInstrumentationConfig } = await import("#harness/instrumentation-config.js"); | CODE |
| MEDIUM | …ckages/eve/src/harness/prompt-cache-accounting.test.ts | 8 | } from "#harness/prompt-cache.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/emission.ts | 39 | } from "#harness/action-result-helpers.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/emission.ts | 43 | } from "#harness/runtime-actions.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/emission.ts | 44 | import { createInvalidToolCallInputError } from "#harness/tool-call-input-errors.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/emission.ts | 49 | import { createProviderStreamActionBatch } from "#harness/stream-actions.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/emission.ts | 50 | import { normalizeModelStreamError } from "#harness/model-call-error.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/emission.ts | 51 | import { createOrderedStreamEmitter } from "#harness/ordered-stream-emitter.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/emission.ts | 52 | import { interruptStreamOnFailure } from "#harness/interruptible-stream.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/emission.ts | 53 | import { isInlineAuthorizationToolResult } from "#harness/inline-tool-authorization.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/emission.ts | 60 | } from "#harness/types.js"; | CODE |
| MEDIUM | packages/eve/src/harness/stream-actions.ts | 3 | import type { HarnessEmitFn } from "#harness/types.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/workflow-sandbox.test.ts | 4 | import type { HarnessToolDefinition } from "#harness/execute-tool.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/workflow-sandbox.test.ts | 5 | import { applyWorkflowTool, buildWorkflowHostTools } from "#harness/workflow-sandbox.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/workflow-sandbox.test.ts | 6 | import { buildToolSet } from "#harness/tools.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/workflow-sandbox.test.ts | 7 | import type { HarnessToolMap } from "#harness/types.js"; | CODE |
| MEDIUM | packages/eve/src/harness/messages.test.ts | 3 | import { coalesceTurnInputs, resolveAssistantStepText } from "#harness/messages.js"; | CODE |
| MEDIUM | packages/eve/src/harness/messages.test.ts | 4 | import type { StepInput } from "#harness/types.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/emission.test.ts | 9 | } from "#harness/emission.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/emission.test.ts | 10 | import type { HarnessToolDefinition } from "#harness/execute-tool.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/emission.test.ts | 11 | import type { HarnessEmitFn, HarnessSession } from "#harness/types.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/tool-interrupts.test.ts | 14 | } from "#harness/authorization.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/tool-interrupts.test.ts | 15 | import { createRuntimeToolResultFromValue } from "#harness/action-result-helpers.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/tool-interrupts.test.ts | 16 | import { readToolInterrupt, stashToolInterrupt } from "#harness/tool-interrupts.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/harness/tool-interrupts.test.ts | 17 | import { wrapToolExecute } from "#harness/tools.js"; | CODE |
| MEDIUM | …ckages/eve/src/harness/workflow-subagent-limit.test.ts | 3 | import { WORKFLOW_RUNTIME_ACTION_INTERRUPT_KIND } from "#harness/workflow-runtime-action-state.js"; | CODE |
| MEDIUM | …ckages/eve/src/harness/workflow-subagent-limit.test.ts | 8 | } from "#harness/workflow-subagent-limit.js"; | CODE |
| MEDIUM | …ges/eve/src/harness/instrumentation-runtime-context.ts | 12 | import type { HarnessEmissionState } from "#harness/emission.js"; | CODE |
| 226 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | docs/guides/dynamic-workflows.md | 52 | ## What a workflow can orchestrate | COMMENT |
| MEDIUM | packages/eve/README.md | 150 | - [Getting Started](https://eve.dev/docs/getting-started) — install, scaffold, and run locally | CODE |
| MEDIUM | …ckages/eve/test/tui-client/tui-packed-install-model.ts | 78 | // `--min-release-age=0` matches eve's own scaffold install (the packed | COMMENT |
| MEDIUM⚡ | packages/eve/src/setup/state.ts | 1 | import type { ChannelKind, ConnectionInput, ConnectionProtocol } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/setup/state.ts | 4 | // Re-exported from the scaffold's project module, the single owner of the "." sentinel. | COMMENT |
| MEDIUM⚡ | packages/eve/src/setup/state.ts | 5 | export { CURRENT_DIRECTORY_PROJECT_NAME } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM | packages/eve/src/setup/slack-connect-lifecycle.ts | 4 | import { SLACK_CHANNEL_DEFAULT_ROUTE } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM | packages/eve/src/setup/slackbot.ts | 5 | import { SLACK_CHANNEL_DEFAULT_ROUTE } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM | packages/eve/src/setup/slackbot.ts | 14 | import { updateSlackChannelConnectorUid } from "#setup/scaffold/update/update-slack-channel.js"; | CODE |
| MEDIUM | packages/eve/src/setup/channel-add-conflicts.ts | 3 | import { isNextJsProject, type ChannelKind } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM | packages/eve/src/setup/onboarding.ts | 127 | // project plan after scaffold and records the resolution in `state.project`, | COMMENT |
| MEDIUM | packages/eve/src/setup/slackbot.test.ts | 5 | import { updateSlackChannelConnectorUid } from "#setup/scaffold/update/update-slack-channel.js"; | CODE |
| MEDIUM | packages/eve/src/setup/slackbot.test.ts | 21 | vi.mock("#setup/scaffold/update/update-slack-channel.js", () => ({ | CODE |
| MEDIUM⚡ | packages/eve/src/setup/build.ts | 2 | // `apps/templates/web-chat-next` source app, applies the declared scaffold transforms, | COMMENT |
| MEDIUM⚡ | packages/eve/src/setup/build.ts | 3 | // and writes `scaffold/create/web-template.ts`. Not part of the shipped package: it is | COMMENT |
| MEDIUM⚡ | packages/eve/src/setup/build.ts | 8 | // walks the whole dist and stamps the scaffold's __*_VERSION__ tokens for free. | COMMENT |
| MEDIUM | packages/eve/src/setup/primitives/run-vercel.test.ts | 283 | // The project parent does not exist until scaffold; account lookups must not | COMMENT |
| MEDIUM | …kages/eve/src/setup/scaffold/index.integration.test.ts | 801 | // Every scaffold ships @types/node plus tsconfig `types: ["node"]` so agent | COMMENT |
| MEDIUM | packages/eve/src/setup/scaffold/version-tokens.ts | 46 | // The published name; rule 28 keeps the scaffold layer free of `#internal/*` | COMMENT |
| MEDIUM | packages/eve/src/setup/scaffold/version-tokens.ts | 129 | // the fallback must never turn a loud failure into a corrupt scaffold. | COMMENT |
| MEDIUM | packages/eve/src/setup/scaffold/create/project.ts | 138 | // scaffold ships (see `packageJsonTemplate`). | COMMENT |
| MEDIUM | packages/eve/src/setup/scaffold/create/extension.ts | 80 | // Same trailing engines block the agent scaffold appends for non-workspace roots. | COMMENT |
| MEDIUM | packages/eve/src/setup/flows/channels.ts | 1 | import { SCAFFOLDABLE_CHANNELS, type ChannelKind } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM | packages/eve/src/setup/flows/channels.test.ts | 12 | import { deriveSlackConnectorSlug } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM | packages/eve/src/setup/flows/connections.ts | 5 | } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM | packages/eve/src/setup/boxes/select-channels.ts | 1 | import { SCAFFOLDABLE_CHANNELS, type ChannelKind } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM | packages/eve/src/setup/boxes/select-channels.ts | 149 | // ChannelKind-typed scaffold input. | COMMENT |
| MEDIUM | packages/eve/src/setup/boxes/scaffold.ts | 5 | } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM | packages/eve/src/setup/boxes/add-channels.test.ts | 4 | import { normalizeSlackConnectorSlug } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM | packages/eve/src/setup/boxes/add-channels.test.ts | 188 | // An earlier success must go stale: the scaffold just changed package.json. | COMMENT |
| MEDIUM | packages/eve/src/setup/boxes/add-channels.test.ts | 535 | // The deliberate asymmetry: a skipped Web scaffold is NOT recorded, so it | COMMENT |
| MEDIUM | packages/eve/src/setup/boxes/add-channels.test.ts | 572 | // The slack channel scaffold never ran (only web's). | COMMENT |
| MEDIUM | packages/eve/src/setup/boxes/add-connections.ts | 6 | } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM | packages/eve/src/setup/boxes/resolve-target.ts | 3 | import { isEveProject } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM | packages/eve/src/setup/boxes/preflight.test.ts | 67 | // The byok scaffold bakes a gateway-format model id just like the gateway | COMMENT |
| MEDIUM | packages/eve/src/setup/boxes/select-connections.ts | 12 | } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM | packages/eve/src/setup/boxes/select-connections.ts | 13 | import { connectorServiceForEntry } from "#setup/scaffold/connections/catalog.js"; | CODE |
| MEDIUM | packages/eve/src/setup/boxes/resolve-provisioning.ts | 3 | import { byokProviderEnvVar } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM | packages/eve/src/setup/boxes/resolve-provisioning.ts | 407 | // "Use my own provider API key": no managed credential. The scaffold writes | COMMENT |
| MEDIUM | packages/eve/src/setup/boxes/add-channels.ts | 8 | } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM | packages/eve/src/setup/boxes/add-channels.ts | 379 | // A skipped Web scaffold (the project already runs Next.js) records | COMMENT |
| MEDIUM | packages/eve/src/cli/dev/tui/mcp-connection-status.ts | 1 | import { CONNECTION_CATALOG } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM | packages/eve/src/cli/dev/tui/setup-commands.ts | 224 | // post-scaffold fault (e.g. a UID reconcile), reported as-is. | COMMENT |
| MEDIUM | …ckages/eve/src/cli/commands/deploy.integration.test.ts | 10 | import { isEveProject } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/cli/commands/init.ts | 27 | import { addAgentToProject } from "#setup/scaffold/create/add-to-project.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/cli/commands/init.ts | 28 | import { ensureChannel, scaffoldBaseProject } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/cli/commands/init.ts | 30 | import type { WorkspaceRootMutation } from "#setup/scaffold/workspace-root.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/cli/commands/init.ts | 34 | } from "#setup/scaffold/create/project.js"; | CODE |
| MEDIUM | packages/eve/src/cli/commands/init.ts | 391 | // The scaffold pins versions younger than typical release-age cooldown | COMMENT |
| MEDIUM | packages/eve/src/cli/commands/channels.ts | 1 | import { isEveProject, listAuthoredChannels, type ChannelKind } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM | packages/eve/src/cli/commands/agent-instructions.ts | 9 | // caller; `{{workingDirectory}}` is post-scaffold only and lives in the handoff | COMMENT |
| MEDIUM | …ages/eve/src/cli/commands/channels.integration.test.ts | 10 | } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM | …ages/eve/src/cli/commands/channels.integration.test.ts | 279 | // Run the REAL web scaffold. The command itself passes no versions (the | COMMENT |
| MEDIUM | …ages/eve/src/cli/commands/channels.integration.test.ts | 318 | // scaffold writes the services config even in an unlinked directory. | COMMENT |
| MEDIUM⚡ | packages/eve/src/cli/commands/extension-init.ts | 25 | } from "#setup/scaffold/create/project.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/cli/commands/extension-init.ts | 26 | import { scaffoldExtensionProject } from "#setup/scaffold/index.js"; | CODE |
| MEDIUM⚡ | packages/eve/src/cli/commands/extension-init.ts | 27 | import type { WorkspaceRootMutation } from "#setup/scaffold/workspace-root.js"; | CODE |
| MEDIUM | …ckages/eve/src/cli/commands/agent-instructions.test.ts | 27 | // pre-scaffold guide renders the universal `npx eve dev` through the shared | COMMENT |
| MEDIUM | …ckages/eve/src/cli/commands/agent-instructions.test.ts | 37 | // The shared renderer resolves every placeholder, even in the pre-scaffold guide. | COMMENT |
| MEDIUM | packages/eve/src/cli/commands/channel-add-conflicts.ts | 3 | import type { ChannelKind } from "#setup/scaffold/index.js"; | CODE |
| 10 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | packages/eve/src/execution/sandbox/write-file-tool.ts | 55 | // ── Read current file ─────────────────────────────────────────────── | COMMENT |
| MEDIUM | packages/eve/src/execution/sandbox/write-file-tool.ts | 77 | // ── File exists — enforce read-before-write ───────────────────────── | COMMENT |
| MEDIUM | packages/eve/src/execution/sandbox/write-file-tool.ts | 87 | // ── Stale-read detection ──────────────────────────────────────────── | COMMENT |
| MEDIUM | packages/eve/src/execution/sandbox/write-file-tool.ts | 103 | // ── Write and refresh stamp ───────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | packages/eve/src/execution/sandbox/read-file-tool.ts | 64 | // ── Validate offset / limit ───────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | packages/eve/src/execution/sandbox/read-file-tool.ts | 72 | // ── Read full file for fingerprinting ─────────────────────────────── | COMMENT |
| MEDIUM⚡ | packages/eve/src/execution/sandbox/read-file-tool.ts | 81 | // ── Reject non-text (NUL bytes) ───────────────────────────────────── | COMMENT |
| MEDIUM⚡ | packages/eve/src/execution/sandbox/read-file-tool.ts | 89 | // ── Split into lines ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | packages/eve/src/execution/sandbox/read-file-tool.ts | 101 | // ── Validate offset against file length ───────────────────────────── | COMMENT |
| MEDIUM | packages/eve/src/execution/sandbox/read-file-tool.ts | 113 | // ── Persist full-file stamp ───────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | packages/eve/src/execution/sandbox/read-file-tool.ts | 125 | // ── Handle empty file ─────────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | packages/eve/src/execution/sandbox/read-file-tool.ts | 135 | // ── Apply offset and limit ────────────────────────────────────────── | COMMENT |
| MEDIUM⚡ | packages/eve/src/execution/sandbox/read-file-tool.ts | 140 | // ── Number and truncate lines, cap at MAX_OUTPUT_BYTES ────────────── | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …ages/eve/test/tui-client/tui-connection-auth-states.ts | 261 | }, | COMMENT |
| LOW | packages/eve/src/runtime/channels/registry.test.ts | 41 | COMMENT | |
| LOW | packages/eve/src/setup/ask.ts | 1 | // The single ask channel of the setup contract. A box owns data acquisition | COMMENT |
| LOW | …e/src/internal/workflow-bundle/workflow-transformer.ts | 421 | declarations.push(source.slice(node.start, node.end).trim()); | COMMENT |
| LOW | …internal/nitro/host/build-vercel-agent-summary.test.ts | 401 | // `build-application.scenario.test.ts`, which asserts the summary JSON file | COMMENT |
| LOW | packages/eve/src/cli/dev/tui/terminal-renderer.ts | 341 | /** Vercel segment of the bottom status line; pushed by the runner. */ | COMMENT |
| LOW | packages/eve/src/cli/dev/tui/terminal-renderer.ts | 361 | #spinnerIndex = 0; | COMMENT |
| LOW | packages/eve/src/cli/commands/agent-instructions.ts | 1 | import { readFileSync } from "node:fs"; | COMMENT |
| LOW | packages/eve/src/harness/tool-loop.ts | 1221 | // | COMMENT |
| LOW | packages/eve/src/execution/sandbox/glob-tool.ts | 181 | // pattern. | COMMENT |
| LOW | packages/eve/src/client/eve-agent-store.ts | 101 | #abortController: AbortController | undefined; | COMMENT |
| LOW | apps/docs/wgsl-env.d.ts | 1 | /// <reference types="@vgpu/wgsl/wgsl-types" /> | COMMENT |
| LOW | apps/docs/next-env.d.ts | 1 | /// <reference types="next" /> | COMMENT |
| LOW | apps/docs/scripts/render-eve-5.ts | 1 | // This script uses @vgpu/adapter-node, which requires native Vulkan support and a | COMMENT |
| LOW | apps/docs/scripts/render-eve-5.ts | 21 | // Set EVE_LOGO_RENDER_THEME=light|dark and EVE_LOGO_RENDER_WIDTH/HEIGHT when | COMMENT |
| LOW | apps/templates/web-chat-next/next-env.d.ts | 1 | /// <reference types="next" /> | COMMENT |
| LOW | apps/frameworks/next-multi-agent/next-env.d.ts | 1 | /// <reference types="next" /> | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | packages/eve/src/harness/tool-loop.test.ts | 6846 | // Step 1: user sends "Do something else" while approval is pending. | COMMENT |
| LOW⚡ | packages/eve/src/harness/tool-loop.test.ts | 6854 | // Step 2: user denies the approval; the deferred message is NOT in this call. | COMMENT |
| LOW⚡ | packages/eve/src/harness/tool-loop.test.ts | 6862 | // Step 3: harness consumes the deferred message. | COMMENT |
| LOW | packages/eve/src/harness/tool-loop.test.ts | 6730 | // Step 1: pending approval + user sends a follow-up message. The approval | COMMENT |
| LOW | packages/eve/src/harness/tool-loop.test.ts | 7279 | // Step 1: tool call → harness continues (next === runStep). | COMMENT |
| LOW | packages/eve/src/harness/tool-loop.test.ts | 7305 | // Step 2: continuation — model responds with text, turn ends. | COMMENT |
| LOW | packages/eve/src/harness/tool-loop.test.ts | 7323 | // Step 3: new turn with compaction. The mock simulates the | COMMENT |
| LOW | packages/eve/src/harness/tool-loop.test.ts | 8248 | // Step 1: tool call → continues | COMMENT |
| LOW | packages/eve/src/harness/tool-loop.test.ts | 8282 | // Step 2: simulate step boundary by creating a NEW harness (as durableRunStep does). | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | packages/eve/src/harness/tool-loop.test.ts | 6846 | // Step 1: user sends "Do something else" while approval is pending. | COMMENT |
| LOW⚡ | packages/eve/src/harness/tool-loop.test.ts | 6854 | // Step 2: user denies the approval; the deferred message is NOT in this call. | COMMENT |
| LOW⚡ | packages/eve/src/harness/tool-loop.test.ts | 6862 | // Step 3: harness consumes the deferred message. | COMMENT |
| LOW | packages/eve/src/harness/tool-loop.test.ts | 6730 | // Step 1: pending approval + user sends a follow-up message. The approval | COMMENT |
| LOW | packages/eve/src/harness/tool-loop.test.ts | 7279 | // Step 1: tool call → harness continues (next === runStep). | COMMENT |
| LOW | packages/eve/src/harness/tool-loop.test.ts | 7305 | // Step 2: continuation — model responds with text, turn ends. | COMMENT |
| LOW | packages/eve/src/harness/tool-loop.test.ts | 7323 | // Step 3: new turn with compaction. The mock simulates the | COMMENT |
| LOW | packages/eve/src/harness/tool-loop.test.ts | 8248 | // Step 1: tool call → continues | COMMENT |
| LOW | packages/eve/src/harness/tool-loop.test.ts | 8282 | // Step 2: simulate step boundary by creating a NEW harness (as durableRunStep does). | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …ages/eve/test/tui-client/tui-connection-auth-states.ts | 60 | continuationToken: `fake-token-${this.#turnIndex}`, | CODE |
| LOW | packages/eve/src/cli/dev/tui/blocks.test.ts | 59 | const long = "lorem ipsum ".repeat(40).trim(); | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | packages/eve/test/tui-client/lib/mcp-stub-server.ts | 128 | async function handleRequest( | CODE |