import type { ExecutionContext, ToolCallResult } from '@/lib/copilot/request/types' import { PLATFORM_ACTIONS_CONTENT } from './platform-actions' export async function executeGetPlatformActions( _rawParams: Record, _context: ExecutionContext ): Promise { return { success: true, output: { content: PLATFORM_ACTIONS_CONTENT } } }