refactor: Flatten directory structure library->harness, library/gen->skills

This commit is contained in:
2026-04-27 08:41:26 -04:00
parent 43dbe3cf2d
commit 664ba8243d
68 changed files with 637 additions and 666 deletions

View File

@@ -53,7 +53,7 @@ Other sensors (heartbeats, interrupts) are processed synchronously to maintain o
* Package Context
#+begin_src lisp :tangle ../library/perceive.lisp
#+begin_src lisp :tangle ./perceive.lisp
(in-package :opencortex)
#+end_src
@@ -61,7 +61,7 @@ Other sensors (heartbeats, interrupts) are processed synchronously to maintain o
** Async Sensor Registry
#+begin_src lisp :tangle ../library/perceive.lisp
#+begin_src lisp :tangle ./perceive.lisp
(defvar *async-sensors* '(:chat-message :delegation :user-command)
"Sensors that are processed in dedicated threads.
@@ -74,7 +74,7 @@ Other sensors (heartbeats, interrupts) are processed synchronously to maintain o
** Foveal Focus State
#+begin_src lisp :tangle ../library/perceive.lisp
#+begin_src lisp :tangle ./perceive.lisp
(defvar *foveal-focus-id* nil
"The Org ID of the node the user is currently interacting with.
@@ -89,7 +89,7 @@ Other sensors (heartbeats, interrupts) are processed synchronously to maintain o
** inject-stimulus: Entry Point
#+begin_src lisp :tangle ../library/perceive.lisp
#+begin_src lisp :tangle ./perceive.lisp
(defun inject-stimulus (raw-message &key stream (depth 0))
"Inject a raw message into the signal processing pipeline.
@@ -146,7 +146,7 @@ Other sensors (heartbeats, interrupts) are processed synchronously to maintain o
** perceive-gate: Signal Normalization
#+begin_src lisp :tangle ../library/perceive.lisp
#+begin_src lisp :tangle ./perceive.lisp
(defun perceive-gate (signal)
"Stage 1 of the metabolic pipeline: Normalize sensory input.
@@ -226,7 +226,7 @@ Other sensors (heartbeats, interrupts) are processed synchronously to maintain o
These tests verify the Perceive pipeline. Run with:
~(fiveam:run! 'pipeline-perceive-suite)~
#+begin_src lisp :tangle ../tests/pipeline-perceive-tests.lisp
#+begin_src lisp :tangle ./tests/pipeline-perceive-tests.lisp
(defpackage :opencortex-pipeline-perceive-tests
(:use :cl :fiveam :opencortex)
(:export #:pipeline-perceive-suite))