perses-lint
Installation
SKILL.md
Perses Lint
Validate Perses resource definitions using percli lint. Supports local structural validation and online server-side validation that checks plugin schemas, datasource existence, and variable resolution.
Instructions
Phase 1: VALIDATE
Goal: Run lint and capture all errors.
# Local validation (structural checks only)
percli lint -f <file>
# Online validation (includes plugin schema checks, datasource existence)
percli lint -f <file> --online
# Batch validation — all JSON files in current directory
for f in *.json; do percli lint -f "$f"; done