MeMesh API Documentation - v2.8.10
    Preparing search index...

    Interface CheckpointMetadata

    Checkpoint metadata structure

    Optional metadata for checkpoints providing human-readable context, priority level, and categorization.

    const metadata: CheckpointMetadata = {
    description: 'Trigger code review after tests complete',
    priority: 'high',
    category: 'testing'
    };
    interface CheckpointMetadata {
        description?: string;
        priority?: string;
        category?: string;
    }
    Index

    Properties

    description?: string

    Human-readable description of the checkpoint

    priority?: string

    Priority level (high, medium, low)

    category?: string

    Category of checkpoint (testing, development, deployment, etc.)