Compare commits

...

2 commits

Author SHA1 Message Date
dullfig
0b2ff36e75 test dummy file 2025-12-28 18:16:09 -08:00
dullfig
21d6532cce test dummy file 2025-12-28 18:14:01 -08:00
2 changed files with 45 additions and 0 deletions

1
dummy_file.md Normal file
View file

@ -0,0 +1 @@
## dummy file

44
structure.md Normal file
View file

@ -0,0 +1,44 @@
```
xml-pipeline/
├── agentserver/
│ ├── auth/
│ │ ├── __init__.py
│ │ └── totp.py
│ ├── config/
│ │ ├── organism_identity/
│ │ │ └── README.txt
│ │ └── __init__.py
│ ├── listeners/
│ │ ├── examples/
│ │ │ ├── __init__.py
│ │ │ └── echo_chamber.py
│ │ ├── __init__.py
│ │ └── base.py
│ ├── privileged/
│ │ ├── __init__.py
│ │ ├── commands.py
│ │ ├── models.py
│ │ └── msg_listener.py
│ ├── schema/
│ │ └── priviledged-msg.xsd
│ ├── utils/
│ │ ├── __init__.py
│ │ ├── logging_setup.py
│ │ └── xml_tools.py
│ ├── __init__.py
│ ├── agentserver.py
│ ├── llm_connection.py
│ ├── main.py
│ └── message_bus.py
├── scripts/
│ └── generate_organism_key.py
├── tests/
│ └── __init__.py
├── LICENSE
├── README.md
├── __init__.py
├── pyproject.toml
├── roadmap.md
├── setup-project.ps1
└── structure.md
```