/** * Profile metadata types and utilities for cursor-agent */ /** * Profile metadata from nori.json (unified manifest format) * * nori.json is the primary source of profile metadata. * Falls back to profile.json for backward compatibility with legacy profiles. */ export type ProfileMetadata = { /** Name of the profile */ name: string; /** Semantic version (e.g., "1.0.0") */ version?: string; /** Human-readable description */ description?: string; /** Skill dependencies (skill name -> version range) */ dependencies?: { skills?: Record; }; }; /** * Read and parse profile metadata from a profile directory * * Reads from nori.json first, falls back to profile.json for backward compatibility. * * @param args - Function arguments * @param args.profileDir - Path to profile directory * * @returns Parsed profile metadata */ export declare const readProfileMetadata: (args: { profileDir: string; }) => Promise; //# sourceMappingURL=metadata.d.ts.map