wip: paren balance fixes in policy blocks + engineering standards scaffolding
Some checks failed
Deploy-Agent-V15-Stdin / JOB-V15-STDIN (push) Failing after 16s

- Fix unbalanced parens in org-skill-policy.org (8 blocks)
- Add org-skill-engineering-standards.lisp scaffolding
- Add org-skill-self-fix.lisp helper
- Add test runners and tool-permissions tests

Note: Some fixes may be over-corrections. Full structural audit needed.
This commit is contained in:
2026-04-25 12:05:23 -04:00
parent 249d537ca2
commit d177a12469
10 changed files with 191 additions and 46 deletions

21
run-all-tests.lisp Normal file
View File

@@ -0,0 +1,21 @@
(load "/home/user/quicklisp/setup.lisp")
(push #p"./" asdf:*central-registry*)
(ql:quickload :fiveam :verbose nil)
(asdf:load-system :opencortex/tests :verbose nil)
;; Load tool permissions skill
(load "library/gen/org-skill-tool-permissions.lisp")
(load "tests/tool-permissions-tests.lisp")
(format t "~%=== Running ALL Test Suites ===~%")
(fiveam:run! 'opencortex-tests::communication-protocol-suite)
(fiveam:run! 'opencortex-pipeline-tests::pipeline-suite)
(fiveam:run! 'opencortex-boot-tests::boot-suite)
(fiveam:run! 'opencortex-memory-tests::memory-suite)
(fiveam:run! 'opencortex-immune-system-tests::immune-suite)
(fiveam:run! 'opencortex-emacs-edit-tests::emacs-edit-suite)
(fiveam:run! 'opencortex-lisp-utils-tests::lisp-utils-suite)
(fiveam:run! 'opencortex-tool-permissions-tests::tool-permissions-suite)
(format t "~%=== ALL TESTS COMPLETE ===~%")