eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
19 lines (18 loc) • 679 B
TypeScript
import type { z } from "#compiled/zod/index.js";
import { SUBAGENT_TASK_RECEIPT_OUTPUT_SCHEMA } from "#tools/framework/task-contract.js";
export declare const agent: {
description: string;
execution: string;
inputSchema: z.ZodObject<{
agentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
message: z.ZodString;
outputSchema: z.ZodOptional<z.ZodObject<{}, z.core.$loose>>;
}, z.core.$strict>;
outputSchema: z.ZodObject<{
agentId: z.ZodString;
status: z.ZodLiteral<"working">;
taskId: z.ZodString;
}, z.core.$strict>;
execute(): z.infer<typeof SUBAGENT_TASK_RECEIPT_OUTPUT_SCHEMA>;
};
export default agent;