Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1.12 KB

File metadata and controls

43 lines (29 loc) · 1.12 KB

Scripts

Helpers for local Tessl review loops in this repo.

Batch review

Run Tessl review across every skill:

./scripts/review-skills.sh

Override the threshold or pass extra review flags:

TESSL_THRESHOLD=92 ./scripts/review-skills.sh
./scripts/review-skills.sh --threshold 95

Batch review does not support --json. For structured output, run Tessl directly on one skill:

./scripts/tessl.sh skill review skills/frontend/docs
./scripts/tessl.sh skill review --json --threshold 90 skills/frontend/repos

Optimize one skill

Apply one Tessl optimization pass to a single skill:

./scripts/optimize-skills.sh frontend/docs
./scripts/optimize-skills.sh frontend/repos --threshold 92

This mutates files. Review the diff before committing.

Notes

  • review-skills.sh is the batch entrypoint for local skill review
  • tessl.sh uses an installed tessl CLI first and falls back to npx tessl only when needed
  • optimize-skills.sh applies mutations, so run it intentionally and inspect the resulting diff
  • CI runs ./scripts/review-skills.sh on pull requests and pushes to main