added self-registration and autonomous grammar generation to docs

This commit is contained in:
dullfig 2026-01-02 15:23:02 -08:00
parent 3f4a6990ed
commit 807322be3e

View file

@ -16,6 +16,14 @@ xml-pipeline/
│ │ ├── __init__.py │ │ ├── __init__.py
│ │ ├── llm_connection.py │ │ ├── llm_connection.py
│ │ └── llm_listener.py │ │ └── llm_listener.py
│ ├── message_bus/
│ │ ├── __init__.py
│ │ ├── bus.py
│ │ ├── config.py
│ │ ├── envelope.py
│ │ ├── errors.py
│ │ ├── scheduler.py
│ │ └── thread.py
│ ├── prompts/ │ ├── prompts/
│ │ ├── grok_classic.py │ │ ├── grok_classic.py
│ │ └── no_paperclippers.py │ │ └── no_paperclippers.py
@ -30,23 +38,17 @@ xml-pipeline/
│ ├── __init__.py │ ├── __init__.py
│ ├── agentserver.py │ ├── agentserver.py
│ ├── main.py │ ├── main.py
│ ├── message_bus.py
│ └── xml_listener.py │ └── xml_listener.py
├── docs/ ├── docs/
│ ├── AgentServer.md │ ├── AgentServer.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
├── scripts/ ├── scripts/
│ └── generate_organism_key.py │ └── generate_organism_key.py
├── tests/ ├── tests/
│ └── __init__.py │ └── __init__.py
├── xml_pipeline.egg-info/
│ ├── PKG-INFO
│ ├── SOURCES.txt
│ ├── dependency_links.txt
│ ├── requires.txt
│ └── top_level.txt
├── LICENSE ├── LICENSE
├── README.md ├── README.md
├── README.v0.md ├── README.v0.md
@ -55,5 +57,4 @@ xml-pipeline/
├── pyproject.toml ├── pyproject.toml
├── setup-project.ps1 ├── setup-project.ps1
└── structure.md └── structure.md
```
```