feat(arch): implement 'Code as Thought' architecture and formalize PSF Consensus Loop

This commit is contained in:
2026-03-31 13:03:26 -04:00
parent 5a9129132e
commit 1712b1e4a9
114 changed files with 3652 additions and 2581 deletions

View File

@@ -0,0 +1,24 @@
;;; TDD Suite: org-skill-environment-config
;;; Status: RED
;;; Author: Tech-Analyst-Agent
;;; Created: [2026-03-31 Tue 15:10]
(defpackage :org-skill-environment-config-tests
(:use :cl :fiveam :org-skill-environment-config))
(in-package :org-skill-environment-config-tests)
(def-suite config-suite
:description "Tests for homoiconic configuration retrieval.")
(in-suite config-suite)
(test retrieve-attribute
"Ensure a property can be retrieved from a mock object store."
;; Requires mock object store logic
(skip "Mock object store required."))
(test model-tiering-resolution
"Ensure tiers are mapped to the correct properties."
;; We can mock get-config-attribute to test the mapping logic
(skip "Internal mapping test required."))