added self-registration and autonomous grammar generation to docs

This commit is contained in:
dullfig 2026-01-02 15:35:00 -08:00
parent 807322be3e
commit 8723a121de
6 changed files with 6 additions and 9 deletions

View file

@ -17,7 +17,7 @@ AgentServer is a production-ready substrate for the `xml-pipeline` nervous syste
- **XSD-to-Lark Generator:** A core utility that transcribes XSD schema definitions into EBNF Lark grammars. This enables the server to search untrusted data streams for specific XML patterns with mathematical precision. - **XSD-to-Lark Generator:** A core utility that transcribes XSD schema definitions into EBNF Lark grammars. This enables the server to search untrusted data streams for specific XML patterns with mathematical precision.
- **Auto-Descriptive Organs:** The base `XMLListener` class inspects its own instantiation parameters to generate a corresponding XSD. The tool itself tells the world how to use it. - **Auto-Descriptive Organs:** The base `XMLListener` class inspects its own instantiation parameters to generate a corresponding XSD. The tool itself tells the world how to use it.
- **Protocol Agnostic:** To add a new field (like `<cc/>`) to the entire swarm, you simply update the central XSD. The entire organism's grammar updates instantly. - **Protocol Agnostic:** To add a new field (like `<cc/>`) to the entire swarm, you simply update the central XSD. The entire organism's grammar updates instantly.
- **[Read Further: Self-Registration & Autonomous Grammars](docs/self_registration.md)** - **[Read Further: Self-Registration & Autonomous Grammars](docs/self-grammar-generation.md)**
### 2. The Stack-Based Lifecycle ### 2. The Stack-Based Lifecycle
- **UUID Custody:** UUID v4 thread identifiers are born via `<spawn-thread/>` and managed on a physical stack. - **UUID Custody:** UUID v4 thread identifiers are born via `<spawn-thread/>` and managed on a physical stack.

View file

@ -1,7 +1,3 @@
This is a great idea. Your `README.md.bak` was a good start, but weve evolved the architecture significantly today. This updated executive summary captures the "Nervous System" philosophy and the rigorous cryptographic controls we've established.
Here is a refined **Executive Summary** you can add to your `docs/` or update your `README.md` with:
# AgentServer — Executive Summary (v1.0) # AgentServer — Executive Summary (v1.0)
**December 30, 2025** **December 30, 2025**
**Architecture: Cryptographically Sovereign Multi-Agent Substrate** **Architecture: Cryptographically Sovereign Multi-Agent Substrate**

View file

@ -40,11 +40,11 @@ xml-pipeline/
│ ├── main.py │ ├── main.py
│ └── xml_listener.py │ └── xml_listener.py
├── docs/ ├── docs/
│ ├── AgentServer.md │ ├── agent-server.md
│ ├── Local Privilege only.md │ ├── local-privilege-only.md
│ ├── logic and iteration.md │ ├── logic-and-iteration.md
│ ├── prompt-no-paperclippers.md │ ├── prompt-no-paperclippers.md
│ └── self_registration.md │ └── self-grammar-generation.md
├── scripts/ ├── scripts/
│ └── generate_organism_key.py │ └── generate_organism_key.py
├── tests/ ├── tests/
@ -57,4 +57,5 @@ xml-pipeline/
├── pyproject.toml ├── pyproject.toml
├── setup-project.ps1 ├── setup-project.ps1
└── structure.md └── structure.md
``` ```