| 6 | import { inferVerifyProjectProfile, type VerifyProjectProfile } from "./recipes"; |
| 7 | |
| 8 | export interface VerifyAgentLike { |
| 9 | getCwd(): string; |
| 10 | getSandboxSettings(): SandboxSettings; |
| 11 | setSandboxSettings(settings: SandboxSettings): void; |
| 12 | detectVerifyRecipe(settings?: SandboxSettings, abortSignal?: AbortSignal): Promise<VerifyRecipe | null>; |
| 13 | runTaskRequest( |
| 14 | request: TaskRequest, |
| 15 | onActivity?: (detail: string) => void, |
| 16 | abortSignal?: AbortSignal, |
| 17 | ): Promise<ToolResult>; |
| 18 | } |
| 19 | |
| 20 | export interface PreparedVerifyRun { |
| 21 | profile: VerifyProjectProfile; |
no outgoing calls
no test coverage detected