Gaunt Sloth Assistant - v1.4.0
    Preparing search index...

    Interface CustomCommandParameter

    Configuration for a custom command parameter. Parameters allow the model to provide dynamic values to commands.

    interface CustomCommandParameter {
        allow?: ValidationCheck[];
        description: string;
    }
    Index

    Properties

    Properties

    allow?: ValidationCheck[]

    Optional list of validation checks to skip for this parameter's value. Use when this parameter legitimately requires values that would normally be blocked. For example, ["absolute-paths"] allows values like /dev/ttyUSB0 for this parameter.

    Available checks: absolute-paths, directory-traversal, shell-injection, null-bytes

    description: string

    Description of the parameter shown to the model.