Interface SkillEntry

Complete skill entry with all metadata.

interface SkillEntry {
    skill: Skill;
    frontmatter: ParsedSkillFrontmatter;
    metadata?: SkillMetadata;
    invocation?: SkillInvocationPolicy;
    sourcePath?: string;
    source?: string;
}

Properties

skill: Skill

Core skill data

Raw frontmatter values

metadata?: SkillMetadata

Parsed AgentOS/Wunderland/OpenClaw metadata

Invocation policy

sourcePath?: string

Source directory path

source?: string

Optional source tag indicating where the skill was loaded from (e.g., "bundled", "workspace").