Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 40s
explain.sx reconstructs a canonical proof tree (first-rule, first-solution)
by goal-directed search over the saturated db, since Datalog keeps no
provenance; depth-capped for cyclic safety. acl-explain returns
{:allowed? :proof :reason} with the blocking eff_deny proof on denial.
audit.sx is an append-only decision log (monotonic seq, disk serializer).
api gains acl/explain, acl/audit, acl/audit-tail.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
30 lines
654 B
Plaintext
30 lines
654 B
Plaintext
# ACL conformance config — sourced by lib/guest/conformance.sh.
|
|
|
|
LANG_NAME=acl
|
|
MODE=dict
|
|
|
|
PRELOADS=(
|
|
lib/datalog/tokenizer.sx
|
|
lib/datalog/parser.sx
|
|
lib/datalog/unify.sx
|
|
lib/datalog/db.sx
|
|
lib/datalog/builtins.sx
|
|
lib/datalog/aggregates.sx
|
|
lib/datalog/strata.sx
|
|
lib/datalog/eval.sx
|
|
lib/datalog/api.sx
|
|
lib/datalog/magic.sx
|
|
lib/acl/schema.sx
|
|
lib/acl/facts.sx
|
|
lib/acl/engine.sx
|
|
lib/acl/explain.sx
|
|
lib/acl/audit.sx
|
|
lib/acl/api.sx
|
|
)
|
|
|
|
SUITES=(
|
|
"direct:lib/acl/tests/direct.sx:(acl-direct-tests-run!)"
|
|
"inherit:lib/acl/tests/inherit.sx:(acl-inherit-tests-run!)"
|
|
"explain:lib/acl/tests/explain.sx:(acl-explain-tests-run!)"
|
|
)
|