vigiles API reference
    Preparing search index...

    Interface SkillInput

    A declared skill input. Compiles to the argument-hint frontmatter and a ## Arguments section; referenced as $1/$2/$ARGUMENTS in the body.

    interface SkillInput {
        hint: string;
        name: string;
        required?: boolean;
    }
    Index

    Properties

    Properties

    hint: string

    Human-readable hint shown in argument-hint and the Arguments section.

    name: string

    Argument name, e.g. "pattern".

    required?: boolean

    Required by default; set false to render as optional ([<name>]).