klasp 0.4.0

Block AI coding agents on the same quality gates your humans hit. See https://github.com/klasp-dev/klasp
Documentation
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash
# Mock plugin: exits non-zero on both --describe and --gate.
set -euo pipefail

# Drain stdin to avoid broken-pipe noise.
if [[ "${1:-}" == "--gate" ]]; then
    cat > /dev/null
fi

echo "mock-crashing: simulated crash" >&2
exit 42