justfile 776 B

123456789101112131415161718192021222324
  1. # claude-mods root justfile — `just check` is THE gate (rules/agentic-quality.md:
  2. # "every repo has one check entry point; if it isn't one command, agents won't
  3. # run it"). Task recipes beyond the gate live in tests/justfile.
  4. # Default: list available tasks
  5. default:
  6. @just --list
  7. # THE gate: frontmatter/naming + doc-drift + resource contracts + skill suites
  8. check:
  9. @bash tests/validate.sh
  10. @bash tests/doc-drift.sh
  11. @bash tests/check-resources.sh
  12. @bash tests/run-skill-tests.sh
  13. # Fast gate: everything except the per-skill behavioural suites
  14. check-fast:
  15. @bash tests/validate.sh
  16. @bash tests/doc-drift.sh
  17. @bash tests/check-resources.sh
  18. # Everything in tests/justfile is reachable from root too
  19. test:
  20. @just --justfile tests/justfile test