/** * Agent Config Resolver * * Reads a Pod-hosted Agent Profile: * - /agents/{agentId}/AGENTS.md is plain Markdown guidance. * - /agents/{agentId}/.meta#config is RDF runtime config. * - Skill refs point at shared SKILL.md documents in Pod storage. * - MCP servers are structured config entries, not mcp/*.json files. */ import type { ResolvedAgentConfig } from './types'; interface ResolveContext { podBaseUrl: string; authenticatedFetch: typeof fetch; webId?: string; } /** * Resolve a complete agent config from Pod storage. * * @param agentId - Agent folder name, for example "secretary" * @param ctx - Pod access context * @returns Fully resolved config, or null if agent is missing / disabled / invalid */ export declare function resolveAgentConfig(agentId: string, ctx: ResolveContext): Promise; export {};