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'}; Copy
const metadata: CheckpointMetadata = { description: 'Trigger code review after tests complete', priority: 'high', category: 'testing'};
Optional
Human-readable description of the checkpoint
Priority level (high, medium, low)
Category of checkpoint (testing, development, deployment, etc.)
Checkpoint metadata structure
Optional metadata for checkpoints providing human-readable context, priority level, and categorization.
Example