Files
basicmachines-co-basic-memory/plugins/claude-code/justfile
T
2026-05-30 14:16:04 -05:00

22 lines
526 B
Makefile

# Basic Memory Claude Code plugin checks
repo_root := "../.."
# Portable manifest and bundled agent/skill layout checks
manifest-check:
python3 {{repo_root}}/scripts/validate_claude_plugin.py .
# Strict Claude Code plugin validation. Requires the `claude` CLI.
validate:
claude plugin validate . --strict
# CI-safe check that does not require the host Claude Code CLI.
ci-check: manifest-check
# Full local check for maintainers.
check: manifest-check validate
# Show available recipes
default:
@just --list