import { z } from 'zod'; import type { ToolDefinition } from '@ariaflowagents/core'; export const tool: ToolDefinition = { description: 'Echo back the provided text', inputSchema: z.object({ text: z.string().describe('Text to echo back'), }), execute: async ({ text }) => { return { echoed: text }; }, }; export default tool;