UNPKG

@posthog/agent

Version:

TypeScript agent framework wrapping Claude Agent SDK with Git-based task execution for PostHog

12 lines 504 B
import type { WorkflowRuntime, WorkflowStepDefinition } from "./types.js"; interface FinalizeGitOptions { commitMessage: string; allowEmptyCommit?: boolean; } /** * Commits (and optionally pushes) any staged changes according to the step configuration. * Returns true if a commit was created. */ export declare function finalizeStepGitActions(context: WorkflowRuntime, step: WorkflowStepDefinition, options: FinalizeGitOptions): Promise<boolean>; export {}; //# sourceMappingURL=utils.d.ts.map