Interface SkillCommandSpec

Command specification for a skill.

interface SkillCommandSpec {
    name: string;
    skillName: string;
    description: string;
    dispatch?: SkillCommandDispatch;
}

Properties

name: string

Command name (e.g., "/github")

skillName: string

Parent skill name

description: string

Command description

Optional dispatch behavior