ARCH: Rename system manifest and decouple all behavioral skills

This commit is contained in:
2026-04-13 16:38:59 -04:00
parent 19fb888434
commit f26b6ccec7
7 changed files with 44 additions and 64 deletions

View File

@@ -50,8 +50,7 @@ The Engineering Standards skill provides the deterministic enforcement of the wo
* Phase D: Build (Implementation)
** Git Status Enforcement
#+begin_src lisp :tangle ../src/engineering-standards.lisp
(in-package :org-agent)
#+begin_src lisp
(defun verify-git-clean-p (dir)
"Returns T if the git repository at DIR has no uncommitted changes."
@@ -77,15 +76,6 @@ The Engineering Standards skill provides the deterministic enforcement of the wo
action))
#+end_src
** Skill Definition
#+begin_src lisp :tangle ../src/engineering-standards.lisp
(org-agent:defskill :skill-engineering-standards
:priority 900 ; High priority, runs before most skills
:trigger (lambda (ctx) t) ; Always active
:probabilistic nil
:deterministic #'engineering-standards-gate)
#+end_src
* See Also
- [[file:org-skill-system-invariants.org][System Policy]]
- [[file:../README.org][org-agent README]]