chore: unify bold syntax to single asterisk in .org files and update legacy memex-amero references

This commit is contained in:
2026-04-01 12:37:45 -04:00
parent 78ba3112cb
commit d364f90ff6
102 changed files with 955 additions and 955 deletions

View File

@@ -4,7 +4,7 @@
#+FILETAGS: :concurrency:parallelism:threads:psf:
* Overview
The **Sub-Agent Manager** enables the Neurosymbolic Lisp Machine to handle multiple concurrent thoughts. It allows the primary kernel to "spawn" lightweight, isolated Lisp threads (sub-agents) to perform long-running or background tasks (research, massive refactors, etc.) without blocking the main event bus.
The *Sub-Agent Manager* enables the Neurosymbolic Lisp Machine to handle multiple concurrent thoughts. It allows the primary kernel to "spawn" lightweight, isolated Lisp threads (sub-agents) to perform long-running or background tasks (research, massive refactors, etc.) without blocking the main event bus.
* Phase A: Demand (PRD)
:PROPERTIES:
@@ -15,10 +15,10 @@ The **Sub-Agent Manager** enables the Neurosymbolic Lisp Machine to handle multi
Define the interfaces for parallel cognitive execution and thread lifecycle management.
** 2. User Needs
- **Non-Blocking Execution:** Spawn background threads for long-running tasks.
- **Context Isolation:** Sub-agents must have their own execution context to prevent parent context poisoning.
- **Communication Loop:** Sub-agents must inject a "Return Stimulus" upon completion.
- **Observability:** Ability to list and terminate active sub-agents.
- *Non-Blocking Execution:* Spawn background threads for long-running tasks.
- *Context Isolation:* Sub-agents must have their own execution context to prevent parent context poisoning.
- *Communication Loop:* Sub-agents must inject a "Return Stimulus" upon completion.
- *Observability:* Ability to list and terminate active sub-agents.
** 3. Success Criteria
*** TODO Successful spawning of a non-blocking background thread