This repository has been archived on 2026-06-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
master-ai/vibn-agent-runner/dist/tools/agent-api.d.ts

11 lines
351 B
TypeScript

export interface AgentRunnerConfig {
runnerUrl: string;
}
export interface SpawnAgentInput {
agent: string;
task: string;
repo: string;
}
export declare function spawnAgent(cfg: AgentRunnerConfig, input: SpawnAgentInput): Promise<unknown>;
export declare function getJobStatus(cfg: AgentRunnerConfig, jobId: string): Promise<unknown>;