mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
5365f971ef
Signed-off-by: phernandez <paul@basicmachines.co>
15 lines
306 B
Makefile
15 lines
306 B
Makefile
# Basic Memory skills checks
|
|
|
|
repo_root := ".."
|
|
|
|
# Validate every memory-* SKILL.md has required frontmatter.
|
|
validate:
|
|
python3 {{repo_root}}/scripts/validate_skills.py .
|
|
|
|
# Skills are markdown-only, so validation is the build check.
|
|
check: validate
|
|
|
|
# Show available recipes
|
|
default:
|
|
@just --list
|