/** * Seed Agent OS entities from OpenClaw config. * * Auto-detects the OpenClaw agent, installed skills, and model provider, * then creates corresponding entities in the Synap pod so the dashboard * is pre-populated on first open. */ import type { OpenClawInfo } from "./openclaw.js"; /** * Detect OpenClaw config and create Agent, Skill, Provider entities. * Returns the number of entities created. */ export declare function seedAgentEntities(podUrl: string, apiKey: string, oc: OpenClawInfo): Promise;